While performing vulnerability assessments/penetration tests, sometimes you will need to spoof a particular IP address or MAC to get past some ACL (firewall, etc…). While some tools have this ability built in, such as nmap, most other tools do not.
You could simply change your Ethernet card’s mac and IP address, but that can cause other issues, such as DOS-ing the real system due to IP and MAC conflicts on the network.
What I am looking for is a tool, something like proxychains, where I could use it to specify a fake (spoofed) IP address and/or MAC then command to run. Basically a tool that wraps all communication that some other command/tool issues.
SPOOF -ip=<ip> -mac=<mac> <command>
SPOOF -ip=10.1.1.10 -mac=00:11:22:33:44:55 telnet 10.1.1.11
SPOOF -ip=10.1.1.10 -mac=00:11:22:33:44:55 nessus -D
Any thoughts? Is there a tool already like this?
