CND (312-38) Network Defense Simulation

Welcome to the Network Defense Simulation. In this module, you will analyze network traffic associated with modern communication infrastructure. Learn to identify key protocols, recognize their typical behavior, and apply the appropriate defensive mindset.

Network Scenario

You are a Network Security Analyst monitoring the perimeter firewall of a mid-sized enterprise. The company recently transitioned from traditional PBX telephony to a unified communications platform. You notice a significant increase in sustained UDP connections traversing the firewall from internal endpoints to an external provider.

Simultaneously, the IDS has generated low-level alerts regarding anomalous traffic bursts on specific ports. Before determining if this is a covert exfiltration channel or legitimate traffic, you must identify the underlying technology powering the organization's new communication infrastructure.

Traffic & Logs

[FIREWALL] ALLOW UDP src 10.0.5.22:5060 dst 198.51.100.44:5060 [FIREWALL] ALLOW UDP src 10.0.5.22:16384 dst 198.51.100.44:18202 (Session Duration: 4m 12s) [FIREWALL] ALLOW UDP src 10.0.5.25:5060 dst 198.51.100.44:5060 [IDS] ALERT [1:2011716:4] ET VOIP Multiple Unauthorized SIP Responses (401/407) [IDS] ALERT [1:2003194:5] ET VOIP SIP INVITE Message Flooding Possible Toll Fraud

Question

Fill in the blank with the appropriate term. The ____________ is used for routing voice conversations over the Internet. It is also known by other names such as IP Telephony, Broadband Telephony, etc.

Expert Analysis

1. What is happening in the network

The firewall is passing UDP port 5060 traffic (Session Initiation Protocol - SIP) to establish call signaling, followed by UDP traffic in the ephemeral port range (10000-20000), which is Real-time Transport Protocol (RTP) carrying the actual voice payload. Concurrently, the IDS is flagging potential SIP INVITE flooding and unauthorized responses, indicating a possible brute-force or toll fraud attack against the communication infrastructure.

2. Identify attack or behavior

The legitimate baseline behavior is IP Telephony. The anomalous behavior represents SIP enumeration/toll fraud—attackers scanning the internet for exposed PBX systems to route free calls or harvest credentials.

3. Why correct answer is correct

VoIP (Voice over IP) is the correct term. It defines the methodology and group of technologies for the delivery of voice communications and multimedia sessions over Internet Protocol (IP) networks, bypassing traditional PSTN (Public Switched Telephone Network) lines.

4. Why others are wrong

5. Defensive action

To secure this environment, the network defender should implement a Session Border Controller (SBC) at the network edge to inspect and filter SIP traffic. Additionally, the infrastructure should transition from unencrypted SIP/RTP to SIPS (SIP over TLS) for signaling and SRTP (Secure RTP) for the media payload to prevent eavesdropping (packet sniffing) and tampering.

MINI LESSON: Defending VoIP Infrastructure

  • Traffic Pattern Recognition: VoIP traffic is distinctly split. Signaling (SIP/H.323) handles call setup/teardown (usually UDP/TCP 5060), while media delivery (RTP) requires contiguous UDP streams to minimize latency.
  • Protocol Behavior: UDP is preferred over TCP for RTP because dropped packets (slight audio clipping) are preferable to delayed packets (TCP retransmissions causing unacceptable latency and jitter).
  • Detection vs Prevention: Identifying "SIP INVITE" floods is detection. Rate-limiting SIP traffic at the firewall or restricting SIP signaling strictly to known provider IP addresses (198.51.100.44 in the logs) is prevention.
  • Common Attack Signatures: Watch for SIP Registration hijacking, toll fraud (call pumping), Vishing, and VoIP DoS which aims to degrade the quality of service (QoS) below acceptable levels.

Ready for the Real Exam?

Explore more CND simulations and master network defense.

Explore more CND simulations