gbb-tools.sh 513 B

123456789101112131415161718192021
  1. #!/bin/bash
  2. # menu_plugin
  3. PLUGIN_NAME="GBB Tools"
  4. PLUGIN_FUNCTION="Open GBB tools"
  5. PLUGIN_DESCRIPTION="Allows you to view, edit, and remove GBB (Google Binary Block) flags on the system easily"
  6. PLUGIN_AUTHOR="kubisnax, rainestorme"
  7. PLUGIN_VERSION=2
  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/kubisnax/gbb_tools/master/gbbtools.sh
  13. doas "pushd /tmp
  14. clear
  15. bash gbbtools.sh
  16. popd
  17. exit"
  18. popd