Skip to content

Instantly share code, notes, and snippets.

@eddydesh
Created March 30, 2020 03:29
Embed
What would you like to do?
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