312-50V11 · Question #1032
You are using a public Wi-Fi network inside a coffee shop. Before surfing the web, you use your VPN to prevent intruders from sniffing your traffic. If you did not have a VPN, how would you identify…
The correct answer is A. You should check your ARP table and see if there is one IP address with two different MAC. ARP spoofing is detectable by inspecting the local ARP cache for duplicate IP-to-MAC mappings, which indicate a poisoning attempt.
Question
You are using a public Wi-Fi network inside a coffee shop. Before surfing the web, you use your VPN to prevent intruders from sniffing your traffic. If you did not have a VPN, how would you identify whether someone is performing an ARP spoofing attack on your laptop?
Options
- AYou should check your ARP table and see if there is one IP address with two different MAC
- BYou should scan the network using Nmap to check the MAC addresses of all the hosts and look
- CYou should use netstat to check for any suspicious connections with another IP address within
- DYou cannot identify such an attack and must use a VPN to protect your traffic, r
How the community answered
(52 responses)- A73% (38)
- B6% (3)
- C4% (2)
- D17% (9)
Why each option
ARP spoofing is detectable by inspecting the local ARP cache for duplicate IP-to-MAC mappings, which indicate a poisoning attempt.
In an ARP spoofing attack, the attacker sends gratuitous ARP replies that map their own MAC address to a legitimate IP (such as the default gateway). This causes the victim's ARP table to show a single IP address associated with two different MAC addresses - one legitimate and one belonging to the attacker. Checking the ARP table with 'arp -a' on Windows or 'arp -n' on Linux reveals this anomaly directly.
Nmap scans the network for external hosts but does not directly reveal ARP table poisoning on the local machine, and an attacker can spoof MAC addresses in scan responses.
Netstat shows active TCP/UDP connections and listening ports, but ARP spoofing operates at Layer 2 and does not create a new connection entry visible in netstat.
ARP spoofing is detectable without a VPN by inspecting the local ARP cache, so this choice is factually incorrect.
Concept tested: ARP spoofing detection via ARP table inspection
Source: https://www.arp-scan.org/
Topics
Community Discussion
No community discussion yet for this question.