Guest User

Untitled

a guest
Mar 17th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. #!/bin/ash
  2. #writing for Xperia X10 MiUi 1.9.9
  3. #X10 Android 2.2/2.3 set /data/misc/wifi/mac_address to
  4. #/data/misc/wi-fi/MAC*address
  5. #a pinginn was here
  6. #save as mac-spoof.sh [chmod 777 mac-spoof.sh su > sh mac-spoof.sh ](From term)
  7. echo "Backing Up Mac Address To SDcard!"
  8. ifconfig wlan0| grep HWaddr >> /mnt/sdcard/mac.log
  9. echo "Org Mac Address" >> /mnt/sdcard/mac.log
  10. echo "Seting Random Address"
  11. rm /data/misc/wifi/mac_address
  12. echo "00:12:f0:dd:cc:dc" >> /data/misc/wifi/mac_address
  13. echo "Your Mac Address Is Spoffed To 00:12:f0:dd:cc:dc"
  14. #END
Add Comment
Please, Sign In to add comment