CRYPT70

AdvAPT

Feb 6th, 2022
1,336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.14 KB | None | 0 0
  1. //======================================================
  2. help = function()
  3. print("#######################################")
  4. print("# update      | updates system        #")
  5. print("# add_rpod    | adds a repo address   #")
  6. print("# install_all | installs all stuff    #")
  7. print("#######################################")
  8. end function
  9. //======================================================
  10. updat = function()
  11. get_shell.launch("/bin/apt-get","update")
  12. get_shell.launch("/bin/apt-get","upgrade")
  13. end function
  14. //======================================================
  15. add_rpod = function()
  16. get_shell.launch("/bin/apt-get","addrepo 88.120.76.40")
  17. end function
  18. //======================================================
  19. install_all = function()
  20. get_shell.launch("/bin/apt-get","install metaxploit.so")
  21. get_shell.launch("/bin/apt-get","install crypto.so")
  22. end function
  23. //======================================================
  24. while true
  25. i = user_input("[" + active_user + "]" + "[@]" + "[coresys]:> ")
  26. if i == "help" then help()
  27. if i == "update" then updat()
  28. if i == "add_rpod" then add_rpod()
  29. if i == "install_all" then install_all()
  30. end while
Advertisement
Add Comment
Please, Sign In to add comment