Created
April 17, 2017 06:48
-
-
Save atpons/133cead9104d22e752d5af5151ffbdc8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from scapy.all import * | |
| target = "192.168.0" | |
| for i in range(2,254): | |
| dst = target + "." + str(i) | |
| print "FROM %s" % (dst) | |
| print getmacbyip(dst) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment