Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //======================================================
- help = function()
- print("#######################################")
- print("# update | updates system #")
- print("# add_rpod | adds a repo address #")
- print("# install_all | installs all stuff #")
- print("#######################################")
- end function
- //======================================================
- updat = function()
- get_shell.launch("/bin/apt-get","update")
- get_shell.launch("/bin/apt-get","upgrade")
- end function
- //======================================================
- add_rpod = function()
- get_shell.launch("/bin/apt-get","addrepo 88.120.76.40")
- end function
- //======================================================
- install_all = function()
- get_shell.launch("/bin/apt-get","install metaxploit.so")
- get_shell.launch("/bin/apt-get","install crypto.so")
- end function
- //======================================================
- while true
- i = user_input("[" + active_user + "]" + "[@]" + "[coresys]:> ")
- if i == "help" then help()
- if i == "update" then updat()
- if i == "add_rpod" then add_rpod()
- if i == "install_all" then install_all()
- end while
Advertisement
Add Comment
Please, Sign In to add comment