logo
logo
  • Home
  • Whoami
  • Services
    • Web Application Penetration Testing
    • Social Engineering Penetration Testing
    • Network Penetration Testing
  • Scripts
  • Blog
  • Shop
    • Clothing
    • Tech
    • Gifts
  • Contact
logo

MacMon Changer

Run this Python script on your terminal to change the mac address and enable monitor mode.

 

				
					#!/usr/bin/env python

import subprocess

iface = input("Enter interface: ")
new_mac = input("Enter new MAC: ")

def mac_changer():
    subprocess.call(["ifconfig", iface, "down",])
    subprocess.call(["ifconfig", iface, "hw", "ether", new_mac])
    subprocess.call(["ifconfig", iface, "up",])
    print("Mac address changed to ", new_mac, "on interface", iface, " successfully")
mac_changer()

def mon_mode():
    subprocess.call(["ifconfig", iface, "down",])
    subprocess.call(["airmon-ng", "check", "kill",])
    subprocess.call(["ifconfig", iface, "up",])
    subprocess.call(["ifconfig", iface, "down",])
    subprocess.call(["iwconfig", iface, "mode", "monitor"])
    subprocess.call(["ifconfig", iface, "up",])
    print("Monitor mode enabled for", iface, "successfully")
mon_mode()

				
			
setting up a virtual lab
All Blogs, Beginners, Network
Sceptre
On March 11, 2022
Setting Up A Virtual Lab
Read more
0
how and when to use monitor mode
All Blogs, Beginners, Hacking, Network, Python
Sceptre
On March 18, 2022
How And When To Use Monitor Mode
Read more
0
3-ways-to-change-your-mac-address
All Blogs, Beginners, Network, Python
Sceptre
On March 25, 2022
3 Ways To Change Your Mac Address
Read more
0
  • 1
  • 2
  • 3
  • …
  • 5

© 2022 Sceptre Security, All Rights Reserved.