ignore security and it'll go away

HideMAC 1.2

HideMAC 1.2
Posted Dec 3, 2011
Authored by infodox | Site compsoc.nuigalway.ie

A MAC changing utility that uses both ifconfig and GNU-Macchanger (checks if mac changer exists, if not, uses ifconfig) to spoof ones MAC with a totally random value. Written in Python.

tags | tool, spoof, python
systems | unix
MD5 | cb4a03a3851cd847f91c37c693e96a72

HideMAC 1.2

Change Mirror Download
#!/usr/bin/env python
# HideMAC - 0x4641494c - v1.2
# By infodox - credit to Trip from Hak5 for the getmac function, as mine did not work!
# Credits to Mario Scondo for randomMAC function!
import os
import commands
import sys
import random
# Function: amiroot()
def amiroot():
if os.geteuid() != 0:
print "[-] sorry, you need to run this as root"
sys.exit(1)
else:
pass

# Function: randommac()
def randomMAC():
mac = [ 0x00,
random.randint(0x00, 0xff),
random.randint(0x00, 0xff),
random.randint(0x00, 0xff),
random.randint(0x00, 0xff),
random.randint(0x00, 0xff) ]
return ':'.join(map(lambda x: "%02x" % x, mac))
return newmac

# Function: getmac(iface)
def getmac(iface):
data = commands.getoutput("ifconfig " + iface)
words = data.split()
found = 0
for x in words:
#print x
if found != 0:
mac = x
break
if x == "HWaddr":
found = 1
if len(mac) == 0:
mac = 'Mac not found'
mac = mac[:17]
print mac

# Function: check()
def check():
if os.path.isfile("/usr/local/bin/macchanger") == True:
print("MAC Changer is installed, using it...")
macchanger_changemac(iface)
else:
print("MAC Changer is not installed, using ifconfig method!")
ifconfig_changemac(iface)

# Function: macchanger_changemac(iface)
def macchanger_changemac(iface):
print("[+] Changing your MAC address to something totally random...") # More statuses
os.popen("macchanger --random " + iface) # CHANGES MAC ADDRESS!!!!!!!

# Function: ifconfig_changemac(iface)
def ifconfig_changemac(iface):
print("[+] Changing your MAC address to something totally random...") # More statuses
os.popen("ifconfig " + iface + " hw ether " + randomMAC())

# Main part!!!
print("Welcome to HideMAC - 0x4641494c - v1.2 by infodox")
print("This code is still under development - I have a lot of work to do!")
print("Have fun...")
amiroot()
iface = raw_input("what interface are you changing: ") # Sets the interface to fuck with...
print("[*] Your Current MAC address is: ")
getmac(iface)
os.popen("ifconfig " + iface + " down") # Puts interface down :(
check()
os.popen("ifconfig " + iface + " up") # Puts interface back up :)
print("[*] Your New MAC address is: ")
getmac(iface)

Comments

RSS Feed Subscribe to this comment feed

No comments yet, be the first!

Login or Register to post a comment

File Archive:

May 2012

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    May 1st
    37 Files
  • 2
    May 2nd
    53 Files
  • 3
    May 3rd
    33 Files
  • 4
    May 4th
    4 Files
  • 5
    May 5th
    10 Files
  • 6
    May 6th
    17 Files
  • 7
    May 7th
    19 Files
  • 8
    May 8th
    36 Files
  • 9
    May 9th
    34 Files
  • 10
    May 10th
    35 Files
  • 11
    May 11th
    20 Files
  • 12
    May 12th
    18 Files
  • 13
    May 13th
    11 Files
  • 14
    May 14th
    27 Files
  • 15
    May 15th
    58 Files
  • 16
    May 16th
    54 Files
  • 17
    May 17th
    25 Files
  • 18
    May 18th
    53 Files
  • 19
    May 19th
    9 Files
  • 20
    May 20th
    15 Files
  • 21
    May 21st
    25 Files
  • 22
    May 22nd
    32 Files
  • 23
    May 23rd
    35 Files
  • 24
    May 24th
    26 Files
  • 25
    May 25th
    25 Files
  • 26
    May 26th
    0 Files
  • 27
    May 27th
    0 Files
  • 28
    May 28th
    0 Files
  • 29
    May 29th
    0 Files
  • 30
    May 30th
    0 Files
  • 31
    May 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2012 Packet Storm. All rights reserved.

close