nerdexam
EC-Council

312-50V13 · Question #107

The following is an entry captured by a network IDS. You are assigned the task of analyzing this entry. You notice the value 0x90, which is the most common NOOP instruction for the Intel processor…

The correct answer is D. The attacker is attempting an exploit that launches a command-line shell. Explanation Option D is correct because the presence of /bin/sh in the payload strongly indicates the attacker's shellcode is designed to spawn a Unix command-line shell - this is a classic buffer overflow exploitation technique where the attacker injects shellcode containing…

Submitted by obi.ng· Mar 6, 2026System Hacking

Question

The following is an entry captured by a network IDS. You are assigned the task of analyzing this entry. You notice the value 0x90, which is the most common NOOP instruction for the Intel processor. You figure that the attacker is attempting a buffer overflow attack. You also notice "/bin/sh" in the ASCII part of the output. As an analyst what would you conclude about the attack?

Exhibit

312-50V13 question #107 exhibit

Options

  • AThe buffer overflow attack has been neutralized by the IDS
  • BThe attacker is creating a directory on the compromised machine
  • CThe attacker is attempting a buffer overflow attack and has succeeded
  • DThe attacker is attempting an exploit that launches a command-line shell

How the community answered

(44 responses)
  • A
    7% (3)
  • B
    2% (1)
  • C
    11% (5)
  • D
    80% (35)

Explanation

Explanation

Option D is correct because the presence of /bin/sh in the payload strongly indicates the attacker's shellcode is designed to spawn a Unix command-line shell - this is a classic buffer overflow exploitation technique where the attacker injects shellcode containing NOP sleds (0x90) followed by code that executes /bin/sh, granting them a shell on the target system.

Why the distractors are wrong:

  • A is incorrect because an IDS (Intrusion Detection System) only monitors and alerts - it does not actively block or neutralize attacks; that is the role of an IPS (Intrusion Prevention System).
  • B is incorrect because creating a directory would involve commands like mkdir, not /bin/sh, and NOP sleds have no association with directory creation.
  • C is incorrect because capturing the traffic in an IDS log only confirms an attempt is being made - you cannot conclude success purely from the captured packet.

Memory Tip

Remember the two key indicators: NOP sled (0x90) = buffer overflow attempt, and /bin/sh = shell spawn payload. Together they spell "shellcode attack" - the attacker wants a shell, not just a crash. Think: "NOP + /bin/sh = shell me in!"

Topics

#Buffer Overflow#Shellcode#NOP Sled#IDS Analysis

Community Discussion

No community discussion yet for this question.

Full 312-50V13 Practice