Jump to content

Quick and easy macchanger script


skysploit

Recommended Posts

Guys,

Here's a quick script for changing your mac address. Simply run the script and enter the network card you would like to change. You will see your new mac address as well as your original mac. Enjoy!

~skysploit

#!/bin/sh

# This script will change your MAC address"
# Usage: ./mac-me.sh
# Script by skysploit
clear
echo "What interface would you like to change. Example; eth0"
echo ""
read ADAPTER;
 clear
echo "Entering stealth mode "
echo ""
ifconfig $ADAPTER down
macchanger -r $ADAPTER
ifconfig $ADAPTER up
echo ""
echo "Your MAC Adrress has been changed, it will reset upon reboot";
echo "If this script failed: <apt-get install macchanger> and run as root"
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...