├── README.md └── vppbasic.py /README.md: -------------------------------------------------------------------------------- 1 | # Termux Basic Packages 2 | 3 | If you are looking for basic packages of termux then this is right tool for you. Follow the given commands and install basic packages in termux. And This Tool is made for Termux beginner.And it's a very easy to use and install. This tool is coded in python . 4 | 5 | ## Tool Installs This packages 6 | 7 | - python 8 | - python2 9 | - python2-dev 10 | - python3 11 | - git 12 | - php 13 | - perl 14 | - bash 15 | - nano 16 | - curl 17 | - openssl 18 | - openssh 19 | - wget 20 | - clang 21 | - help 22 | - nmap 23 | - w3m 24 | - hydra 25 | - ruby 26 | - macchanger 27 | - dnsutils 28 | - coreutils 29 | - host 30 | 31 | 32 | This command for access the storage in termux 33 | termux-setup-storage. 34 | 35 | 36 | ## Installation 37 | 38 | ## Termux 39 | ``` 40 | $ apt install git 41 | ``` 42 | ``` 43 | $ apt install python 44 | ``` 45 | ``` 46 | $ git clone https://github.com/vpphacker/vppbasic 47 | ``` 48 | ``` 49 | $ cd vppbasic 50 | ``` 51 | ``` 52 | $ ls 53 | ``` 54 | ``` 55 | $ chmod +x * 56 | ``` 57 | ``` 58 | $ ls 59 | ``` 60 | ``` 61 | $ python vppbasic.py 62 | ``` 63 | 64 | This will take too much time it's depends on your data connection. 65 | 66 | ### Visit on YouTube Channel 67 | 68 | https://www.youtube.com/channel/UCIQ5wO7zmPmjnIBm1d_fGKw 69 | 70 | For Hacking Videos Subscribe 71 | 72 | ### My Website 73 | www.vpphacker.com 74 | -------------------------------------------------------------------------------- /vppbasic.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | import os 3 | import time 4 | import sys 5 | 6 | os.system("clear") 7 | 8 | print('''\033[91m 9 | __ ______ ____ ____ _ 10 | \ \ / / _ \| _ \ | __ ) __ _ ___(_) ___ 11 | \ \ / /| |_) | |_) | | _ \ / _` / __| |/ __| 12 | \ V / | __/| __/ | |_) | (_| \__ \ | (__ 13 | \_/ |_| |_| |____/ \__,_|___/_|\___| 14 | ''') 15 | def slowprint(s): 16 | for c in s + '\n' : 17 | sys.stdout.write(c) 18 | sys.stdout.flush() 19 | time.sleep(5. / 100) 20 | 21 | print (''' \033[95m 22 | +--------------------------------------+ 23 | | This Tool Install All Basic Packages | 24 | +--------------------------------------+ 25 | | Coded By VPP Hacker | version : 2.0 | 26 | +--------------------------------------+''') 27 | 28 | slowprint(''' \033[93m 29 | [01] python 30 | [02] python2 31 | [03] python-dev 32 | [04] python3 33 | [05] php 34 | [06] java 35 | [07] git 36 | [08] perl 37 | [09] bash 38 | [10] nano 39 | [11] curl 40 | [12] openssl 41 | [13] openssh 42 | [14] wget 43 | [15] clang 44 | [16] nmap 45 | [17] w3m 46 | [18] hydra 47 | [19] ruby 48 | [20] macchanger 49 | [21] host 50 | [22] dnsutils 51 | [23] coreutils ''') 52 | slowprint('''\033[96m 53 | This Command for access Storage in Termux 54 | [00] termux-setup-storage''') 55 | print (" ") 56 | choice = input("\033[93mDo You Want to Install All Packages [y/n] : ") 57 | if choice == 'n' : sys.exit() 58 | if choice == 'y' : os.system ("apt update") 59 | os.system ("atp upgrade -y") 60 | os.system ("apt install python -y") 61 | os.system ("apt install python2 -y") 62 | os.system ("apt install php -y") 63 | os.system ("apt install python-dev -y") 64 | os.system ("apt install python3 -y") 65 | os.system ("apt install java -y") 66 | os.system ("apt install git -y") 67 | os.system ("apt install perl -y") 68 | os.system ("apt install bash") 69 | 70 | print ("wait for second and start hacking") 71 | 72 | os.system ("apt install nano -y") 73 | os.system ("apt install curl -y") 74 | os.system ("apt install openssl -y") 75 | os.system ("apt install openssh -y") 76 | os.system ("apt install wget -y") 77 | os.system ("apt install clang -y") 78 | os.system ("apt install nmap -y") 79 | os.system ("apt install w3m -y") 80 | os.system ("apt install hydra -y") 81 | 82 | 83 | print (""" 84 | subscribe VPP Hacker """) 85 | 86 | os.system ("apt install ruby -y") 87 | os.system ("apt install macchanger -y") 88 | os.system ("apt install host -y") 89 | os.system ("apt install dnsutils -y") 90 | os.system ("apt install coreutils -y") 91 | 92 | print ("Allow the Button For Access the Storage in Termux") 93 | 94 | 95 | os.system ("termux-setup-storage") 96 | 97 | def slowprint(s): 98 | for c in s + '\n' : 99 | sys.stdout.write(c) 100 | sys.stdout.flush() 101 | time.sleep(8. / 100) 102 | print("\033[95m+-------------------------------------------------+") 103 | slowprint('''\033[95m| Welcome To Hackers World | 104 | | Subscribe Our YouTube Channel | 105 | | Watch Ours Tutorials For Learn Ethical Hacking |''') 106 | print("+-------------------------------------------------+") 107 | 108 | input("\n\nPress the enter key to exit : ") 109 | --------------------------------------------------------------------------------