| 741 | |
| 742 | |
| 743 | def shellnoob(): |
| 744 | print """Writing shellcodes has always been super fun, but some parts are extremely boring and error prone. Focus only on the fun part, and use ShellNoob!""" |
| 745 | cshell = raw_input("Y / N : ") |
| 746 | if cshell in yes: |
| 747 | os.system("git clone https://github.com/reyammer/shellnoob.git") |
| 748 | os.system("mv shellnoob/shellnoob.py shellnoob.py") |
| 749 | os.system("sudo python shellnoob.py --install") |
| 750 | if cshell in no: |
| 751 | exp() |
| 752 | elif cshell == "": |
| 753 | menu() |
| 754 | else: |
| 755 | menu() |
| 756 | |
| 757 | |
| 758 | def info(): |