|
|
10-31-2009
, 11:11 AM
|
|
Posts: 11 |
Thanked: 0 times |
Joined on Oct 2009
|
#1
|
|
|
10-31-2009
, 11:26 AM
|
|
|
Posts: 3,397 |
Thanked: 1,197 times |
Joined on Jul 2008
@ Netherlands
|
#2
|
|
|
10-31-2009
, 02:43 PM
|
|
Posts: 11 |
Thanked: 0 times |
Joined on Oct 2009
|
#3
|
|
|
01-11-2010
, 07:19 PM
|
|
Posts: 135 |
Thanked: 151 times |
Joined on Dec 2009
@ Slovakia/Bratislava
|
#5
|
|
|
10-18-2010
, 06:45 AM
|
|
Posts: 2 |
Thanked: 0 times |
Joined on Aug 2010
|
#6
|
|
|
10-18-2010
, 08:32 AM
|
|
|
Posts: 1,014 |
Thanked: 760 times |
Joined on Jun 2009
@ Toronto
|
#7
|
|
|
04-11-2011
, 07:49 AM
|
|
Posts: 3 |
Thanked: 1 time |
Joined on Apr 2011
|
#8
|
F:`echo $one`:`echo $two`:`echo $thr`| The Following User Says Thank You to h4xx0r For This Useful Post: | ||
|
|
04-11-2011
, 10:33 AM
|
|
|
Posts: 1,014 |
Thanked: 760 times |
Joined on Jun 2009
@ Toronto
|
#9
|
| The Following User Says Thank You to hawaii For This Useful Post: | ||
|
|
01-04-2012
, 05:09 AM
|
|
Posts: 9 |
Thanked: 1 time |
Joined on Nov 2010
|
#10
|
I wrote a little handy script that help me a lot when needing a new mac fast on my n900 (its just bash so it works on every linux dist that names their vlan interface wlan0):
Create a file in /usr/bin/ called macchanger, make it executable:
chmod +x /usr/bin/macchanger
edit /usr/bin/macchanger and insert this text:
#!/bin/bash
echo "they block my mac"
ifconfig wlan0 down
ole=`ifconfig wlan0|grep HWaddr|awk '{print $5}'`
one=`df |md5sum |awk '{print }'|grep -o ..`
two=`free |md5sum |grep -o ..`
thr=`ps auxww |md5sum |grep -o ..`
ifconfig wlan0 hw ether 00:1FF:`echo $one`:`echo $two`:`echo $thr`
new=`ifconfig wlan0|grep HWaddr|awk '{print $5}'`
ifconfig wlan0 up
echo $ole "->" $new
echo "i fist their fish"
Reason i am using 3 strings md5sumed is to get decent randomization as this is hard to accomplish in bash
one=`df |md5sum |awk '{print }'|grep -o ..`
two=`free |md5sum |grep -o ..`
thr=`ps auxww |md5sum |grep -o ..`
F:xx). Tried changing to:one=`df |md5sum |awk '{print }'|head -c 2`
two=`free |md5sum |head -c 2`
thr=`ps auxww |md5sum |head -c 2`
![]() |
| Tags |
| address, mac, n900, xterminal |
| Thread Tools | Search this Thread |
|