This file contains 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
import subprocess | |
import time | |
import sys | |
iface = input("Enter the name of interface to play with:- ")print("Now lets give you some new identity so you can hide who you are")nmac = input("Enter the new MAC address to be used Or Press 0 to auto generate random MAC:- ") | |
def macchange(): | |
if nmac == 0: | |
subprocess.call("macchanger -A " + iface) | |
else: | |
subprocess.call("ifconfig", iface, "hw", "ether", nmac) | |
def monmode(): | |
subprocess.call("iwcofig", iface, "mode monitor") | |
subprocess.call("iwconfig", iface) | |
print("Monitor mode Enabled successfully with new MAC address as below", iface) | |
time.sleep(5) | |
sys.exit("Thank you for using this tool") | |
macchange()monmode() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment