Send an ARP request manually from Windows
Asked Answered
S

3

5

I'm training myself on network scanning and i'm focusing on how to identify a sniffer on my net. Searching on the web, i find that a possible way is the ARP method: i must send an ARP request to a suspect no broadcast IP to check if it's in promiscuous mode.

My doubt is: if my pc is a Windows 7 machine, is there a way to send manually an ARP resuest? Possibly from command line?

Spatter answered 20/6, 2017 at 9:16 Comment(0)
S
5

You can use tools like nmap.

nmap -sP -PR <IP address/subnet>

For windows you can use the GUI version of nmap - zenmap.

Satyriasis answered 20/6, 2017 at 9:38 Comment(0)
C
2

You can use this version of arping for Windows. If you want an already compiled executable you can find it Here (under the "examples" folder).

Usage:

Arping.exe -i <IP_ADDRESS_OF_YOUR_INTERFACE> -T <TARGET_IP_ADDRESS>

Cattalo answered 30/7, 2017 at 19:44 Comment(0)
T
2

another simple way:

  • ping TARGET_IP_ADDRESS

then

  • arp -a

the TARGET_IP_ADDRESS shall be shown as type dynamic.

Tetra answered 24/12, 2019 at 6:3 Comment(1)
This doesn't work on Windows 10. Another thread mentioned it works on Windows 7.Dekker

© 2022 - 2024 — McMap. All rights reserved.