mac-randomizer.sh 540 B

12345678910111213141516171819202122
  1. #!/bin/bash
  2. # menu_plugin
  3. PLUGIN_NAME="MAC Address Randomizer"
  4. PLUGIN_FUNCTION="Randomize MAC Address"
  5. PLUGIN_DESCRIPTION="Randomize your device's MAC address"
  6. PLUGIN_AUTHOR="BinBashBanana, rainestorme"
  7. PLUGIN_VERSION=1
  8. doas() {
  9. ssh -t -p 1337 -i /rootkey -oStrictHostKeyChecking=no root@127.0.0.1 "$@"
  10. }
  11. pushd /tmp
  12. curl -LOk https://raw.githubusercontent.com/MercuryWorkshop/mac-address-randomizer/main/mac-address-randomizer.sh
  13. doas "pushd /tmp
  14. clear
  15. bash mac-address-randomizer.sh
  16. clear
  17. popd
  18. exit"
  19. popd