SlideShare ist ein Scribd-Unternehmen logo
1 von 23
Downloaden Sie, um offline zu lesen
Security Issues in VOIP
       Practical VOIP (IK2554)




        Waqas Daar (daar@kth.se)
     KTH, Royal Institute of Technology
           Stockholm, Sweden
Presentation Outline
 Introduction
 VOIP Architecture
  • H.323
  • SIP
 VOIP Threats
 VOIP Attacks
 Security Solutions
 Conclusion




  23/05/2008           2
Introduction
 Voice over IP is a technology that is used to transmitt voice
 from Packet switched network to Circuit swtiched network and
 vice versa.
 VOIP popularity is growing day by day.
   • Cost Reduction
   • Mobility
   • Offering services like audio video conferencing, Instant
     messaging etc.




  23/05/2008                                             3
VOIP Architecture
 VOIP technology is used to establish and managing
 communication sessions for transmission of audio or video over
 IP network.
 VOIP signaling protocols are used to setup, tear down calls,
 carry information required to locate users, and negotiate
 capabilities.
 •   H.323
 •   Session Initiation Protocol (SIP)




  23/05/2008                                            4
H.323
 H.323 is the ITU-T standard for audio and video transmission
 over packet base network. H.323 was initially targeted
 multimedia conferencing over LAN.
 H.323 is an umbrella protocol, which contains several other
 protocols.
  •   H.225
  •   H.245
 H.323 uses Real Time Protocol (RTP) for media transmission.




  23/05/2008                                             5
H.323 (cont.)
 H.323 network elemets
  •   H.323 terminal end points (TE)
  •   H.323 Gatekeeper (GK)
  •   H.323 Gateway (GW)
  •   H.323 Multi Control Unit (MCU)
 H.323 network consist of a number of zones and each zone
 must contain a H.323 Gatekeeper(GK).




  23/05/2008                                          6
H.323 Network




 23/05/2008     7
H.323 Call Model




               Figure 2 H.323 Call Model [1]

  23/05/2008                                   8
Session Initiation Protocol (SIP)
 SIP is an application layer protocol, which is used to establish,
 maintain and terminate multimedia session.
 SIP is a text base protocol.
 SIP uses Session Description Protocol (SDP) for setting up
 parameters for actual media transmission.
 RTP is used for actual media transmission.




  23/05/2008                                                9
SIP Components
 Two general categories of SIP are
  • User Agent (UA)
      •   SIP User Agent Client
      •   SIP User Agent Server
 •   SIP Servers
      •   Proxy Server
      •   Redirect Server
      •   Registrar Server




  23/05/2008                         10
SIP Basic Call Setup




  23/05/2008           11
VOIP Threats
 Denial of Service
 Evasdropping
 Call Fraud
 Call Redirection
 SPAM




  23/05/2008         12
VOIP Threats (cont,)
 Denial of Service
  • Suffers availability of VOIP system.
 Eavesdropping
  •   In VOIP eavesdropping is a type of an attack, if an attacker able to
      eavesdropp a communication. Then he can launch different type of
      an attack like Man in the Middle attack etc.
 Call Fraud
 Call Redirection
 SPAM




  23/05/2008                                                     13
VOIP Attacks
 Signaling Layer Attacks
 •   SIP Registration Hijacking
 •   Impersonating a Server
 •   SIP Message Modification
 •   SIP Cancel / SIP BYE attack
 •   SIP DOS attack


 Media Layer Attacks
 •   Eavesdropping
 •   RTP insertion attack
 •   SSRC collision attacks




  23/05/2008                       14
Signaling Layer Attacks
 SIP Registration attack
  •   Attacker impersonates a valid UA to a registrar himself as a valid user
      agent. so attacker can recieve calls for a legitmate user.
 Impersonating a Server
  •   When an attacker impersonates a remote server and user agent request
      are served by the attacker machine.
 SIP Message Modification
  •   If an attacker launches a man in the middle attack and modify a message.
      Then attacker could lead the caller to connect to malicious system.
 SIP CANCEL / SIP BYE
 SIP Denial of Service
  •   In SIP attacker creates a bogus request that contained a fake IP address
      and Via field in the SIP header contains the identity of the target host.



  23/05/2008                                                             15
Media Layer Attaks
 Eavesdropping
 SSRC collision
 •   If an attacker eavesdropp the conversation and uses one’s peer SSRC to
     send RTP packet to other peer, it causes to terminate a session.




  23/05/2008                                                        16
Security Solutions
 Two types of security solutions
  •   End-toEnd security
       •   In SIP end points can ensure end-to-end security to those messages
           which proxy does not read, like SDP messages could be protected
           using S/MIME.
       •   Media is transferred directly, so end-to-end security is achieved by
           SRTP.


  •   Hop-by-hop security
       •   TLS, IPSec.




  23/05/2008                                                            17
Authentication
 Authentication means to identify a person.
 If we take SIP as signaling protocol in VOIP, it defines two
 mechanisim for authentication
  •   HTTP digest authentication
  •   S/MIME
 HTTP Digest Authentication
  •   HTTP digest mechanisim used between users to proxies, users to
      users but not between proxies to proxies.
 S/MIME
  •   S/MIME uses X.509 certificates to authenitcate end users in the
      same way that web browsers uses them.



  23/05/2008                                                    18
HTTP Digest Authentication




 23/05/2008                  19
Confidentiality
 Confidentiality is a term defined to make communication
 session private. Confidentiality is achieved by encryption.
 Two ways of achieving
  •   Tranport Layer Security (TLS)
  •   IPSec
 IPSec uses to protect SIP messages at network layer. IPSec
 Encapsulation Protocol (ESP) or Authentication Header (AH)
 must provide confidentiality on hop-by-hop basis.
 TLS provide transport layer security over TCP. Normally SIP
 URI is in the form of sip:abc@example.com, but if we are using
 TLS then SIP URI will be sips:abc@example.com and signaling
 must be send encrypted.


  23/05/2008                                               20
Media Encryption
 In VOIP media is send directly between users using RTP.
 Encryption of media is achieved by
   • IPSec
   • Secure RTP (SRTP)
       • It provides a framework for encryption and message authentication of RTP
          and RTCP.
       • Cipher Algorithum: AES
       • Authenitcation is an optional feature.
       • SRTP uses Security Description for Media Streams (SDES) algorithum to
          negotiate session keys in SDP.
       • MIKKEY
             • Mikkey provides its own authentication and integrity mechanisim.
             • Mikkey messages carried in a SDP with a=key-mgmt attritbute.
       • ZRTP
             • ZRTP also describes an extension header for RTP to establish a
                session key for SRTP.




  23/05/2008                                                            21
Conclusion……..




23/05/2008       22
Thanks.




23/05/2008             23

Weitere ähnliche Inhalte

Was ist angesagt?

Vo Ip Trunk Products Short V1
Vo Ip Trunk Products Short V1Vo Ip Trunk Products Short V1
Vo Ip Trunk Products Short V1
BobPetersen6467
 
Lec40 45 video conferencing
Lec40 45 video conferencingLec40 45 video conferencing
Lec40 45 video conferencing
Dom Mike
 
Lec40 41 42_43_44_45 video conferencing
Lec40 41 42_43_44_45 video conferencingLec40 41 42_43_44_45 video conferencing
Lec40 41 42_43_44_45 video conferencing
Shona Hira
 
Video Conferencing Standards
Video Conferencing StandardsVideo Conferencing Standards
Video Conferencing Standards
Videoguy
 
H.323 Network Components include H.323 Terminals, Gatekeepers ...
H.323 Network Components include H.323 Terminals, Gatekeepers ...H.323 Network Components include H.323 Terminals, Gatekeepers ...
H.323 Network Components include H.323 Terminals, Gatekeepers ...
Videoguy
 
6293213 sip-presentation
6293213 sip-presentation6293213 sip-presentation
6293213 sip-presentation
Joe Trial
 
Sip call flows all cases ccmigration
Sip call flows all cases ccmigrationSip call flows all cases ccmigration
Sip call flows all cases ccmigration
coolrahul28
 
Jain Sip Tutorial
Jain Sip TutorialJain Sip Tutorial
Jain Sip Tutorial
rajibdk
 
محمد مشاري
محمد مشاريمحمد مشاري
محمد مشاري
maherrrrz
 

Was ist angesagt? (19)

Worldwide attacks on SS7/SIGTRAN network
Worldwide attacks on SS7/SIGTRAN networkWorldwide attacks on SS7/SIGTRAN network
Worldwide attacks on SS7/SIGTRAN network
 
Philippe Langlois - Hacking HLR HSS and MME core network elements
Philippe Langlois - Hacking HLR HSS and MME core network elementsPhilippe Langlois - Hacking HLR HSS and MME core network elements
Philippe Langlois - Hacking HLR HSS and MME core network elements
 
#MoreCrypto : Introduction to TLS
#MoreCrypto : Introduction to TLS#MoreCrypto : Introduction to TLS
#MoreCrypto : Introduction to TLS
 
Voice Over IP Overview w/Secuirty
Voice Over IP Overview w/SecuirtyVoice Over IP Overview w/Secuirty
Voice Over IP Overview w/Secuirty
 
Vo Ip Trunk Products Short V1
Vo Ip Trunk Products Short V1Vo Ip Trunk Products Short V1
Vo Ip Trunk Products Short V1
 
Lec40 45 video conferencing
Lec40 45 video conferencingLec40 45 video conferencing
Lec40 45 video conferencing
 
Lec40 41 42_43_44_45 video conferencing
Lec40 41 42_43_44_45 video conferencingLec40 41 42_43_44_45 video conferencing
Lec40 41 42_43_44_45 video conferencing
 
Squire Technologies: Media Gateway
Squire Technologies: Media GatewaySquire Technologies: Media Gateway
Squire Technologies: Media Gateway
 
Voip
VoipVoip
Voip
 
IMS Naming Identity
IMS Naming IdentityIMS Naming Identity
IMS Naming Identity
 
Video Conferencing Standards
Video Conferencing StandardsVideo Conferencing Standards
Video Conferencing Standards
 
H.323 Network Components include H.323 Terminals, Gatekeepers ...
H.323 Network Components include H.323 Terminals, Gatekeepers ...H.323 Network Components include H.323 Terminals, Gatekeepers ...
H.323 Network Components include H.323 Terminals, Gatekeepers ...
 
DEF CON 27 - CAMPBELL / MURRAY - gsm we can hear everyone now
DEF CON 27 - CAMPBELL / MURRAY - gsm we can hear everyone nowDEF CON 27 - CAMPBELL / MURRAY - gsm we can hear everyone now
DEF CON 27 - CAMPBELL / MURRAY - gsm we can hear everyone now
 
Vo Ip Rajibdeka
Vo Ip RajibdekaVo Ip Rajibdeka
Vo Ip Rajibdeka
 
6293213 sip-presentation
6293213 sip-presentation6293213 sip-presentation
6293213 sip-presentation
 
Sip call flows all cases ccmigration
Sip call flows all cases ccmigrationSip call flows all cases ccmigration
Sip call flows all cases ccmigration
 
Silc
SilcSilc
Silc
 
Jain Sip Tutorial
Jain Sip TutorialJain Sip Tutorial
Jain Sip Tutorial
 
محمد مشاري
محمد مشاريمحمد مشاري
محمد مشاري
 

Andere mochten auch (8)

Voz ip qos
Voz ip qosVoz ip qos
Voz ip qos
 
Rumana Akther Id#072842056
Rumana Akther Id#072842056Rumana Akther Id#072842056
Rumana Akther Id#072842056
 
Kamailio - Secure Communication
Kamailio - Secure CommunicationKamailio - Secure Communication
Kamailio - Secure Communication
 
Quality of service in wireless communication
Quality of service in wireless communicationQuality of service in wireless communication
Quality of service in wireless communication
 
VOIP QOS
VOIP QOSVOIP QOS
VOIP QOS
 
VoIP Techniques and Challenges PRESENTATION
VoIP Techniques and Challenges PRESENTATIONVoIP Techniques and Challenges PRESENTATION
VoIP Techniques and Challenges PRESENTATION
 
QoS (quality of service)
QoS (quality of service)QoS (quality of service)
QoS (quality of service)
 
Quality of Service
Quality of ServiceQuality of Service
Quality of Service
 

Ähnlich wie Security Issues In Voip

gkk_2021123rg5hSecurity essentials domain 2
gkk_2021123rg5hSecurity essentials   domain 2gkk_2021123rg5hSecurity essentials   domain 2
gkk_2021123rg5hSecurity essentials domain 2
Anne Starr
 
gkkSecurity essentials domain 2
gkkSecurity essentials   domain 2gkkSecurity essentials   domain 2
gkkSecurity essentials domain 2
Anne Starr
 
gkk20211e4djwew4dSecurity essentials domain 2
gkk20211e4djwew4dSecurity essentials   domain 2gkk20211e4djwew4dSecurity essentials   domain 2
gkk20211e4djwew4dSecurity essentials domain 2
Anne Starr
 
1 Vo Ip Overview
1 Vo Ip Overview1 Vo Ip Overview
1 Vo Ip Overview
Mayank Vora
 
1 Vo I P Overview
1  Vo I P  Overview1  Vo I P  Overview
1 Vo I P Overview
Mayank Vora
 
1 VoIP Overview[1]
1 VoIP Overview[1]1 VoIP Overview[1]
1 VoIP Overview[1]
William Giba
 
VoIP and multimedia networking
VoIP and multimedia networkingVoIP and multimedia networking
VoIP and multimedia networking
sangusajjan
 
I N T E R O P09 Suhas Desai Secure Your Vo I P Network With Open Source
I N T E R O P09  Suhas  Desai  Secure  Your  Vo I P  Network With  Open  SourceI N T E R O P09  Suhas  Desai  Secure  Your  Vo I P  Network With  Open  Source
I N T E R O P09 Suhas Desai Secure Your Vo I P Network With Open Source
Suhas Desai
 
Raisul Haq Rajib (063435056)
Raisul Haq Rajib  (063435056)Raisul Haq Rajib  (063435056)
Raisul Haq Rajib (063435056)
mashiur
 
Review of SIP based DoS attacks
Review of SIP based DoS attacksReview of SIP based DoS attacks
Review of SIP based DoS attacks
Editor IJCATR
 

Ähnlich wie Security Issues In Voip (20)

Meletis Belsis - IMS Security
Meletis Belsis - IMS SecurityMeletis Belsis - IMS Security
Meletis Belsis - IMS Security
 
Voip security
Voip securityVoip security
Voip security
 
MULTIMEDIA SERVICES OVER IP NETWORKS
MULTIMEDIA SERVICES OVER IP NETWORKSMULTIMEDIA SERVICES OVER IP NETWORKS
MULTIMEDIA SERVICES OVER IP NETWORKS
 
gkk_2021123rg5hSecurity essentials domain 2
gkk_2021123rg5hSecurity essentials   domain 2gkk_2021123rg5hSecurity essentials   domain 2
gkk_2021123rg5hSecurity essentials domain 2
 
gkkSecurity essentials domain 2
gkkSecurity essentials   domain 2gkkSecurity essentials   domain 2
gkkSecurity essentials domain 2
 
gkk20211e4djwew4dSecurity essentials domain 2
gkk20211e4djwew4dSecurity essentials   domain 2gkk20211e4djwew4dSecurity essentials   domain 2
gkk20211e4djwew4dSecurity essentials domain 2
 
AN OVERVIEW OF VOICE OVER INTERNET PROTOCOL (VOIP
AN OVERVIEW OF VOICE OVER INTERNET PROTOCOL (VOIPAN OVERVIEW OF VOICE OVER INTERNET PROTOCOL (VOIP
AN OVERVIEW OF VOICE OVER INTERNET PROTOCOL (VOIP
 
1 Vo Ip Overview
1 Vo Ip Overview1 Vo Ip Overview
1 Vo Ip Overview
 
1 Vo I P Overview
1  Vo I P  Overview1  Vo I P  Overview
1 Vo I P Overview
 
Topic22
Topic22Topic22
Topic22
 
1 VoIP Overview[1]
1 VoIP Overview[1]1 VoIP Overview[1]
1 VoIP Overview[1]
 
1 Vo Ip Overview
1 Vo Ip Overview1 Vo Ip Overview
1 Vo Ip Overview
 
Case study about voip
Case study about voipCase study about voip
Case study about voip
 
Securityic2
Securityic2Securityic2
Securityic2
 
VoIP and multimedia networking
VoIP and multimedia networkingVoIP and multimedia networking
VoIP and multimedia networking
 
I N T E R O P09 Suhas Desai Secure Your Vo I P Network With Open Source
I N T E R O P09  Suhas  Desai  Secure  Your  Vo I P  Network With  Open  SourceI N T E R O P09  Suhas  Desai  Secure  Your  Vo I P  Network With  Open  Source
I N T E R O P09 Suhas Desai Secure Your Vo I P Network With Open Source
 
Raisul Haq Rajib (063435056)
Raisul Haq Rajib  (063435056)Raisul Haq Rajib  (063435056)
Raisul Haq Rajib (063435056)
 
Introduction to SIP
Introduction to SIP  Introduction to SIP
Introduction to SIP
 
R43019698
R43019698R43019698
R43019698
 
Review of SIP based DoS attacks
Review of SIP based DoS attacksReview of SIP based DoS attacks
Review of SIP based DoS attacks
 

Kürzlich hochgeladen

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Victor Rentea
 

Kürzlich hochgeladen (20)

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 

Security Issues In Voip

  • 1. Security Issues in VOIP Practical VOIP (IK2554) Waqas Daar (daar@kth.se) KTH, Royal Institute of Technology Stockholm, Sweden
  • 2. Presentation Outline Introduction VOIP Architecture • H.323 • SIP VOIP Threats VOIP Attacks Security Solutions Conclusion 23/05/2008 2
  • 3. Introduction Voice over IP is a technology that is used to transmitt voice from Packet switched network to Circuit swtiched network and vice versa. VOIP popularity is growing day by day. • Cost Reduction • Mobility • Offering services like audio video conferencing, Instant messaging etc. 23/05/2008 3
  • 4. VOIP Architecture VOIP technology is used to establish and managing communication sessions for transmission of audio or video over IP network. VOIP signaling protocols are used to setup, tear down calls, carry information required to locate users, and negotiate capabilities. • H.323 • Session Initiation Protocol (SIP) 23/05/2008 4
  • 5. H.323 H.323 is the ITU-T standard for audio and video transmission over packet base network. H.323 was initially targeted multimedia conferencing over LAN. H.323 is an umbrella protocol, which contains several other protocols. • H.225 • H.245 H.323 uses Real Time Protocol (RTP) for media transmission. 23/05/2008 5
  • 6. H.323 (cont.) H.323 network elemets • H.323 terminal end points (TE) • H.323 Gatekeeper (GK) • H.323 Gateway (GW) • H.323 Multi Control Unit (MCU) H.323 network consist of a number of zones and each zone must contain a H.323 Gatekeeper(GK). 23/05/2008 6
  • 8. H.323 Call Model Figure 2 H.323 Call Model [1] 23/05/2008 8
  • 9. Session Initiation Protocol (SIP) SIP is an application layer protocol, which is used to establish, maintain and terminate multimedia session. SIP is a text base protocol. SIP uses Session Description Protocol (SDP) for setting up parameters for actual media transmission. RTP is used for actual media transmission. 23/05/2008 9
  • 10. SIP Components Two general categories of SIP are • User Agent (UA) • SIP User Agent Client • SIP User Agent Server • SIP Servers • Proxy Server • Redirect Server • Registrar Server 23/05/2008 10
  • 11. SIP Basic Call Setup 23/05/2008 11
  • 12. VOIP Threats Denial of Service Evasdropping Call Fraud Call Redirection SPAM 23/05/2008 12
  • 13. VOIP Threats (cont,) Denial of Service • Suffers availability of VOIP system. Eavesdropping • In VOIP eavesdropping is a type of an attack, if an attacker able to eavesdropp a communication. Then he can launch different type of an attack like Man in the Middle attack etc. Call Fraud Call Redirection SPAM 23/05/2008 13
  • 14. VOIP Attacks Signaling Layer Attacks • SIP Registration Hijacking • Impersonating a Server • SIP Message Modification • SIP Cancel / SIP BYE attack • SIP DOS attack Media Layer Attacks • Eavesdropping • RTP insertion attack • SSRC collision attacks 23/05/2008 14
  • 15. Signaling Layer Attacks SIP Registration attack • Attacker impersonates a valid UA to a registrar himself as a valid user agent. so attacker can recieve calls for a legitmate user. Impersonating a Server • When an attacker impersonates a remote server and user agent request are served by the attacker machine. SIP Message Modification • If an attacker launches a man in the middle attack and modify a message. Then attacker could lead the caller to connect to malicious system. SIP CANCEL / SIP BYE SIP Denial of Service • In SIP attacker creates a bogus request that contained a fake IP address and Via field in the SIP header contains the identity of the target host. 23/05/2008 15
  • 16. Media Layer Attaks Eavesdropping SSRC collision • If an attacker eavesdropp the conversation and uses one’s peer SSRC to send RTP packet to other peer, it causes to terminate a session. 23/05/2008 16
  • 17. Security Solutions Two types of security solutions • End-toEnd security • In SIP end points can ensure end-to-end security to those messages which proxy does not read, like SDP messages could be protected using S/MIME. • Media is transferred directly, so end-to-end security is achieved by SRTP. • Hop-by-hop security • TLS, IPSec. 23/05/2008 17
  • 18. Authentication Authentication means to identify a person. If we take SIP as signaling protocol in VOIP, it defines two mechanisim for authentication • HTTP digest authentication • S/MIME HTTP Digest Authentication • HTTP digest mechanisim used between users to proxies, users to users but not between proxies to proxies. S/MIME • S/MIME uses X.509 certificates to authenitcate end users in the same way that web browsers uses them. 23/05/2008 18
  • 19. HTTP Digest Authentication 23/05/2008 19
  • 20. Confidentiality Confidentiality is a term defined to make communication session private. Confidentiality is achieved by encryption. Two ways of achieving • Tranport Layer Security (TLS) • IPSec IPSec uses to protect SIP messages at network layer. IPSec Encapsulation Protocol (ESP) or Authentication Header (AH) must provide confidentiality on hop-by-hop basis. TLS provide transport layer security over TCP. Normally SIP URI is in the form of sip:abc@example.com, but if we are using TLS then SIP URI will be sips:abc@example.com and signaling must be send encrypted. 23/05/2008 20
  • 21. Media Encryption In VOIP media is send directly between users using RTP. Encryption of media is achieved by • IPSec • Secure RTP (SRTP) • It provides a framework for encryption and message authentication of RTP and RTCP. • Cipher Algorithum: AES • Authenitcation is an optional feature. • SRTP uses Security Description for Media Streams (SDES) algorithum to negotiate session keys in SDP. • MIKKEY • Mikkey provides its own authentication and integrity mechanisim. • Mikkey messages carried in a SDP with a=key-mgmt attritbute. • ZRTP • ZRTP also describes an extension header for RTP to establish a session key for SRTP. 23/05/2008 21