├── .gitattributes ├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── install.sh └── m-pkg /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Bhaviktutorials 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
Termux-Megapackage 5 |  6 |
7 | All In One Package For Termux 8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
*This is official repository maintained by us* 18 | ######
*[**@Bhavik_Tutorials**](https://www.instagram.com/bhavik_tutorials/) ❤️* 19 | ######
*You can check [youtube](https://youtube.com/bhaviktutorials)✌* 20 | --- 21 | ### What is Megapackage?? 22 | Its Hard to Install Every Huge Tool like Metasploit, Kali Nethunter Rootless and Other Neccesarry Tools Together in Click. So We Thought to Build a Package where you Guys Can Install all this Just in Click But thats not only Feature of this Megapackage. We guys also have include a GodeMode(Termux-Black) Which Slightly reduce the error of unlocated package because of little change in sources.list Which make this Termux-Megapackage as Good as Heaven for Termux User. 23 | 24 | ### Installation Termux-Megapackage 25 | * `Commands` for termux 26 | ``` 27 | $ termux-setup-storage 28 | 29 | $ pkg update && pkg upgrade && pkg install git -y 30 | 31 | $ git clone https://github.com/Bhaviktutorials/Termux-Megapackage 32 | 33 | $ ls 34 | 35 | $ cd Termux-Megapackage 36 | 37 | $ ls 38 | 39 | $ chmod +x * 40 | 41 | $ ./install.sh 42 | 43 | $ m-pkg 44 | ``` 45 | #### For Video Tutorial:- 46 | [YouTube](https://youtu.be/7xZFg67y1Ug) 47 | 48 | 49 | #### You can download the required package as per your need :) 50 | (Just Open Issue As A Package Request) 51 | ### List Of Available Packages 52 | 1. *_zphisher_* 53 | 2. *_HiddenEye_* 54 | 3. *_shark_* 55 | 4. *_T-Remix_* 56 | 5. *_GodMode_* 57 | 6. *_WireShark_* 58 | 7. *_Termux-Keys_* 59 | 8. *_metasploit-framework_* 60 | 9. *_Kali-nethunter-termux_* 61 | 10. *_Optical-Framework_* 62 | 11. *_ubuntu-in-termux_* 63 | 12. *_ghost_* 64 | 13. *_TBomb_* 65 | 14. *_WishFish_* 66 | 15. *_Impulse_* 67 | 16. *_lockphish_* 68 | 17. *_RED_HAWK_* 69 | 18. *_termux-omz_* 70 | 19. *_cupp_* 71 | 20. *_Fakeroot_* 72 | ### Screenshots 73 | After Installing _Termux-Megapackage_:- 74 |  75 | *** 76 | #### Bulid By:- 77 | 78 | Ashish Signh / Bhavik Oza(bhavikoza1@gmail.com) 79 | 80 | #### If Like This Tool Dont Donate Just a Subscribe will be Awseome!!! 81 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #!/data/data/com.termux/files/usr/bin/bash 2 | #Downloading the req dependencies to run a script without error 3 | ################################# 4 | # Project : T-Megapackage # 5 | # author : Ashish # 6 | ################################# 7 | clear 8 | 9 | #updating terminal 10 | echo 11 | echo -e "\e[32m[\e[34m*\e[32m]\e[36m Installing Termux-Megapackage \e[m " 12 | echo 13 | apt-get update -yq --silent 14 | apt-get upgrade -y 15 | apt-get install python -y 16 | apt-get install ruby -y 17 | pip install install lolcat 18 | gem install lolcat 19 | pkg install ncurses-utils -y 20 | 21 | cp -R m-pkg /data/data/com.termux/files/usr/bin 22 | echo 23 | 24 | echo -en "\e[92m Do you wish to see a practical video on it (y/n)? \e[m " 25 | read answer 26 | if [ "$answer" != "${answer#[Yy]}" ] ;then 27 | am start -a android.intent.action.VIEW -d https://youtu.be/7xZFg67y1Ug >> /dev/null 2>&1 28 | else 29 | echo 30 | fi 31 | 32 | echo 33 | echo -e "\e[33m Run \e[32m m-pkg \e[33m From anywhere to install megapackages tools \e[m " 34 | echo 35 | cd $HOME 36 | rm -rf Termux-Megapackage 37 | echo 38 | cd $HOME 39 | exec bash 40 | -------------------------------------------------------------------------------- /m-pkg: -------------------------------------------------------------------------------- 1 | #!/data/data/com.termux/files/usr/bin/bash 2 | 3 | ############################################ 4 | # Project : T-Megapackage # 5 | # author : Ashish # 6 | # EMAIL : ashishsingh103020@gmail.com # 7 | ############################################ 8 | 9 | clear 10 | echo 11 | echo " 12 | █▀▄▀█ █▀▀ █▀▀ ▄▀█ █▀█ ▄▀█ █▀▀ █▄▀ ▄▀█ █▀▀ █▀▀ 13 | █ ▀ █ ██▄ █▄█ █▀█ █▀▀ █▀█ █▄▄ █ █ █▀█ █▄█ ██▄ 14 | V 1.0" | lolcat 15 | echo " >>> created by:-A S H I S H " |lolcat 16 | echo " >>> Keep Supporting:-bhaviktutorials " |lolcat 17 | echo " " 18 | echo -e "\e[92m=======================================================================\e[m " 19 | echo -e "\e[32m[\e[33m01\e[32m]\e[96m zphisher \e[m \e[32m[\e[33m11\e[32m]\e[96m ubuntu-in-termux \e[m " 20 | echo -e "\e[32m[\e[33m02\e[32m]\e[96m HiddenEye \e[m \e[32m[\e[33m12\e[32m]\e[96m ghost \e[m " 21 | echo -e "\e[32m[\e[33m03\e[32m]\e[96m shark \e[m \e[32m[\e[33m13\e[32m]\e[96m TBomb \e[m " 22 | echo -e "\e[32m[\e[33m04\e[32m]\e[96m GodMode \e[m \e[32m[\e[33m14\e[32m]\e[96m grabcam \e[m " 23 | echo -e "\e[32m[\e[33m05\e[32m]\e[96m T-Remix \e[m \e[32m[\e[33m15\e[32m]\e[96m Impulse \e[m " 24 | echo -e "\e[32m[\e[33m06\e[32m]\e[96m Wirehsark \e[m \e[32m[\e[33m16\e[32m]\e[96m lockphish \e[m " 25 | echo -e "\e[32m[\e[33m07\e[32m]\e[96m Termux-Keys \e[m \e[32m[\e[33m17\e[32m]\e[96m RED_HAWK \e[m " 26 | echo -e "\e[32m[\e[33m08\e[32m]\e[96m metasploit-framework \e[m \e[32m[\e[33m18\e[32m]\e[96m termux-omz \e[m " 27 | echo -e "\e[32m[\e[33m09\e[32m]\e[96m kali-nethunter-termux \e[m \e[32m[\e[33m19\e[32m]\e[96m Cupp \e[m " 28 | echo -e "\e[32m[\e[33m10\e[32m]\e[96m Optical-Framework \e[m \e[32m[\e[33m20\e[32m]\e[96m FakeRoot \e[m " 29 | echo -e "\e[92m=======================================================================\e[m " 30 | echo " " 31 | read -p $'\e[34m[*]\e[33m Enter Your Choice : \e[0m' n 32 | echo 33 | if [[ $n == 1 || $n == 01 ]]; then 34 | 35 | DIR="$HOME/zphisher" 36 | if [ -d "$DIR" ]; then 37 | cd $HOME 38 | cd zphisher 39 | bash zphisher.sh 40 | cd $HOME 41 | 42 | else 43 | 44 | echo -e "\e[34m[*] Installing Zphisher \e[m " 45 | sleep 5 46 | clear 47 | cd $HOME 48 | apt-get install curl php openssh -yq --silent 49 | git clone git://github.com/htr-tech/zphisher.git 50 | cd zphisher 51 | bash zphisher.sh 52 | cd $HOME 53 | 54 | fi 55 | 56 | elif [[ $n == 2 || $n == 02 ]]; then 57 | 58 | DIR="$HOME/HiddenEye" 59 | if [ -d "$DIR" ] 60 | then 61 | cd $HOME 62 | cd HiddenEye 63 | python HiddenEye.py 64 | 65 | else 66 | 67 | echo -e "\e[34m[*] Installing HiddenEye \e[m " 68 | sleep 5 69 | clear 70 | cd $HOME 71 | pkg install git python php curl openssh grep 72 | git clone https://github.com/DarkSecDevelopers/HiddenEye.git 73 | chmod 777 HiddenEye 74 | pip install requests 75 | cd HiddenEye 76 | pip install -r requirements.txt && pip install requests 77 | python HiddenEye.py 78 | cd $HOME 79 | 80 | fi 81 | 82 | elif [[ $n == 3 || $n == 03 ]]; then 83 | 84 | DIR="$HOME/shark" 85 | if [ -d "$DIR" ] 86 | then 87 | cd $HOME 88 | shark 89 | 90 | else 91 | 92 | echo -e "\e[34m[*] Installing shark \e[m " 93 | sleep 5 94 | clear 95 | cd $HOME 96 | git clone https://github.com/Bhaviktutorials/shark 97 | cd shark 98 | chmod +x * 99 | ./setup 100 | shark 101 | cd $HOME 102 | 103 | fi 104 | 105 | elif [[ $n == 4 || $n == 04 ]]; then 106 | 107 | echo -e "\e[34m[*] Installing GodMode \e[m " 108 | sleep 5 109 | clear 110 | cd $HOME 111 | apt-get install wget -yq --silent 112 | wget https://github.com/Hax4us/TermuxBlack/raw/master/install.sh 113 | sh install.sh 114 | touch newbash.txt 115 | echo "if [ -x /data/data/com.termux/files/usr/libexec/termux/command-not-found ]; then 116 | command_not_found_handle() { 117 | /data/data/com.termux/files/usr/libexec/termux/command-not-found "$1" 118 | } 119 | fi 120 | 121 | PS1='\$ ' " >> newbash.txt 122 | 123 | cd /data/data/com.termux/files/usr/etc 124 | rm -rf bash.bashrc 125 | touch bash.bashrc 126 | cd $HOME 127 | cat "newbash.txt" >> /data/data/com.termux/files/usr/etc/bash.bashrc 128 | rm newbash.txt 129 | cp $PREFIX/etc/bash.bashrc $PREFIX/etc/bash.bashrc.bk && sed -i s:PS1.*:"PS1=\'\\\\[\\\\e\[1\;92m\\\\]GodMode > \\\[\\\e[0;37m\\\\]\'": $PREFIX/etc/bash.bashrc 130 | rm ~/.termux/colors.properties 131 | 132 | elif [[ $n == 5 || $n == 05 ]]; then 133 | 134 | DIR="$HOME/T-Remix" 135 | if [ -d "$DIR" ] 136 | then 137 | echo -e"\e[32mIts Already Exist \e[m" 138 | exit 139 | else 140 | echo " " 141 | fi 142 | 143 | echo -e "\e[34m[*] Installing T-Remix \e[m " 144 | sleep 5 145 | clear 146 | cd $HOME 147 | git clone https://github.com/Bhaviktutorials/T-Remix 148 | cd T-Remix 149 | chmod +x * 150 | bash t-remix.sh 151 | cd $HOME 152 | 153 | elif [[ $n == 6 || $n == 06 ]]; then 154 | 155 | DIR="$HOME/Wireshark" 156 | if [ -d "$DIR" ] 157 | then 158 | echo -e"\e[32mIts Already Exist \e[m" 159 | exit 160 | else 161 | echo " " 162 | fi 163 | 164 | echo -e "\e[34m[*] Installing Wireshark \e[m " 165 | sleep 5 166 | clear 167 | cd $HOME 168 | apt update && apt upgrade -y 169 | pkg install x11-repo 170 | apt install wireshark-gtk 171 | pkg install xterm 172 | apt install tigervnc 173 | apt install tigervnc-viewer 174 | cd $HOME 175 | 176 | elif [[ $n == 7 || $n == 07 ]]; then 177 | 178 | DIR="$HOME/Termux-Keys" 179 | if [ -d "$DIR" ] 180 | then 181 | cd $HOME 182 | cd Termux-Keys 183 | chmod +x * 184 | bash termux-keys.sh 185 | 186 | else 187 | 188 | echo -e "\e[34m[*] Installing Termux-Keys \e[m " 189 | sleep 5 190 | clear 191 | cd $HOME 192 | git clone https://github.com/Bhaviktutorials/Termux-Keys 193 | cd Termux-Keys 194 | chmod +x * 195 | bash termux-keys.sh 196 | cd $HOME 197 | 198 | fi 199 | 200 | elif [[ $n == 8 || $n == 08 ]]; then 201 | 202 | echo -e "\e[34m[*] Installing metasploit-framework \e[m " 203 | sleep 5 204 | clear 205 | cd $HOME 206 | apt-get install wget -yq --silent 207 | wget https://raw.githubusercontent.com/Hax4us/Metasploit_termux/master/metasploit.sh 208 | chmod +x metasploit.sh 209 | ./metasploit.sh 210 | 211 | elif [[ $n == 9 || $n == 09 ]]; then 212 | 213 | echo -e "\e[34m[*] Installing Kali-nethunter-termux \e[m " 214 | sleep 7 215 | clear 216 | cd $HOME 217 | apt-get install wget -yq --silent 218 | wget -O install-nethunter-termux https://offs.ec/2MceZWr 219 | chmod +x install-nethunter-termux 220 | ./install-nethunter-termux 221 | 222 | elif [[ $n == 10 ]]; then 223 | 224 | DIR="$HOME/Optiva-Framework" 225 | if [ -d "$DIR" ] 226 | then 227 | cd $HOME 228 | cd Optiva-Framework 229 | python2 optiva.py 230 | cd $HOME 231 | else 232 | 233 | echo -e "\e[34m[*] Installing Optiva-Framework \e[m " 234 | sleep 7 235 | clear 236 | cd $HOME 237 | pkg install python python2 -y 238 | git clone https://github.com/joker25000/Optiva-Framework 239 | cd Optiva-Framework 240 | chmod +x installer.sh 241 | bash installer.sh 242 | echo 243 | echo "Successfully installed Optical-Framework" 244 | echo 245 | echo "Choose option 3 for termux" 246 | echo 247 | sleep 5 248 | python2 optiva.py 249 | cd $HOME 250 | 251 | fi 252 | 253 | elif [[ $n == 11 ]]; then 254 | 255 | DIR="$HOME/ubuntu-in-termux" 256 | if [ -d "$DIR" ] 257 | then 258 | echo -e "\e[32mIts Already Exist \e[m" 259 | exit 260 | else 261 | echo " " 262 | fi 263 | 264 | echo -e "\e[34m[*] Installing Ubuntu-in-termux \e[m " 265 | sleep 7 266 | clear 267 | cd $HOME 268 | apt-get update && apt-get upgrade -y 269 | apt-get install wget -y 270 | apt-get install proot -y 271 | apt-get install git -y 272 | git clone https://github.com/MFDGaming/ubuntu-in-termux.git 273 | cd ubuntu-in-termux 274 | chmod +x ubuntu.sh 275 | ./ubuntu.sh -y 276 | echo 277 | echo -e "\e[34m[\e[32m*\e[34m]\e[92m Successfully installed ubuntu in your device \e[m " 278 | echo 279 | echo -e "\e[34m[\e[32m*\e[34m]\e[92 Now run : ./startubuntu.sh \e[m " 280 | cd $HOME 281 | 282 | elif [[ $n == 12 ]]; then 283 | 284 | DIR="$HOME/ghost" 285 | if [ -d "$DIR" ] 286 | then 287 | echo -e "\e[32mIts Already Exist \e[m" 288 | exit 289 | else 290 | echo " " 291 | fi 292 | 293 | echo -e "\e[34m[*] Installing ghost \e[m " 294 | sleep 7 295 | clear 296 | cd $HOME 297 | git clone https://github.com/entynetproject/ghost.git 298 | cd ghost 299 | chmod +x install.sh 300 | cd $HOME 301 | 302 | elif [[ $n == 13 ]]; then 303 | 304 | DIR="$HOME/TBomb" 305 | if [ -d "$DIR" ] 306 | then 307 | cd $HOME 308 | cd TBomb 309 | bash TBomb.sh 310 | 311 | else 312 | 313 | echo -e "\e[34m[*] Installing TBomb \e[m " 314 | sleep 7 315 | clear 316 | cd $HOME 317 | apt-get install python -yq --silent 318 | apt-get install python2 -yq --silent 319 | git clone https://github.com/TheSpeedX/TBomb 320 | clear 321 | cd TBomb 322 | chmod +x TBomb.sh 323 | bash TBomb.sh 324 | cd $HOME 325 | 326 | fi 327 | 328 | elif [[ $n == 14 ]]; then 329 | 330 | DIR="$HOME/grabcam" 331 | if [ -d "$DIR" ] 332 | then 333 | cd $HOME 334 | cd grabcam 335 | bash grabcam.sh 336 | 337 | else 338 | 339 | echo -e "\e[34m[*] Installing grabcam \e[m " 340 | sleep 7 341 | clear 342 | cd $HOME 343 | apt-get install php wget openssh python python2 344 | git clone https://github.com/noob-hackers/grabcam 345 | clear 346 | cd grabcam 347 | chmod +x grabcam.sh 348 | bash grabcam.sh 349 | cd $HOME 350 | 351 | fi 352 | 353 | elif [[ $n == 15 ]]; then 354 | 355 | DIR="$HOME/Impulse" 356 | if [ -d "$DIR" ] 357 | then 358 | echo -e "\e[32mIts Already Exist \e[m" 359 | exit 360 | else 361 | echo " " 362 | fi 363 | 364 | echo -e "\e[34m[*] Installing Impulse \e[m " 365 | sleep 7 366 | clear 367 | cd $HOME 368 | pkg install python3 python3-pip git -y 369 | git clone https://github.com/LimerBoy/Impulse 370 | clear 371 | cd Impulse 372 | pip3 install -r requirements.txt 373 | echo " " 374 | echo " " 375 | echo -e " \e[32mFOR TOOL HELP TYPE : \e[33mpython3 impulse.py --help \e[m " 376 | echo " " 377 | sleep 1 378 | echo -e " \e[31mEx: python3 impulse.py --method SMS --time 20 --threads 15 --target +380123456789 \e[m " 379 | sleep 1 380 | echo 381 | cd $HOME 382 | 383 | elif [[ $n == 16 ]]; then 384 | 385 | DIR="$HOME/lockphish" 386 | if [ -d "$DIR" ] 387 | then 388 | cd $HOME 389 | cd lockphish 390 | bash lockphish.sh 391 | 392 | else 393 | 394 | echo -e "\e[34m[*] Installing lockphish \e[m " 395 | sleep 7 396 | clear 397 | cd $HOME 398 | git clone https://github.com/JasonJerry/lockphish 399 | clear 400 | cd lockphish 401 | bash lockphish.sh 402 | cd $HOME 403 | 404 | fi 405 | 406 | elif [[ $n == 17 ]]; then 407 | 408 | DIR="$HOME/RED_HAWK" 409 | if [ -d "$DIR" ] 410 | then 411 | cd $HOME 412 | cd RED_HAWK 413 | php rhawk.php 414 | 415 | else 416 | 417 | echo -e "\e[34m[*] Installing RED_HAWK \e[m " 418 | sleep 7 419 | clear 420 | cd $HOME 421 | pkg install php git 422 | git clone https://github.com/Tuhinshubhra/RED_HAWK 423 | chmod +x RED_HAWK 424 | cd RED_HAWK 425 | php rhawk.php 426 | cd $HOME 427 | 428 | fi 429 | 430 | elif [[ $n == 18 ]]; then 431 | 432 | DIR="$HOME/termux-omz" 433 | if [ -d "$DIR" ] 434 | then 435 | echo -e "\e[32mIts Already Exist \e[m" 436 | exit 437 | else 438 | echo " " 439 | fi 440 | 441 | echo -e "\e[34m[*] Installing termux-omz \e[m " 442 | sleep 7 443 | clear 444 | cd $HOME 445 | git clone https://github.com/adi1090x/termux-omz.git 446 | clear 447 | cd termux-omz 448 | chmod +x install 449 | ./install 450 | cd $HOME 451 | 452 | elif [[ $n == 19 ]]; then 453 | 454 | DIR="$HOME/cupp" 455 | if [ -d "$DIR" ] 456 | then 457 | cd $HOME 458 | cd cupp 459 | python3 cupp.py 460 | 461 | else 462 | 463 | echo -e "\e[34m[*] Installing cupp \e[m " 464 | sleep 7 465 | clear 466 | cd $HOME 467 | apt-get install python -y 468 | git clone https://github.com/Mebus/cupp.git 469 | cd cupp 470 | echo " " 471 | echo " " 472 | echo -e "\e[32mRUN:\e[33m python3 cupp.py -i (To create a passwd list) \e[m " 473 | echo " " 474 | sleep 3 475 | python3 cupp.py 476 | cd $HOME 477 | 478 | fi 479 | 480 | elif [[ $n == 20 ]]; then 481 | 482 | DIR="$HOME/FakeRoot" 483 | if [ -d "$DIR" ] 484 | then 485 | cd $HOME 486 | cd FakeRoot 487 | python2 root.py 488 | 489 | else 490 | 491 | echo -e "\e[34m[*] Installing FakeRoot \e[m " 492 | sleep 7 493 | clear 494 | cd $HOME 495 | pkg update && pkg upgrade 496 | pkg install proot 497 | pkg install proot-distro 498 | git clone https://github.com/MaulanaRyM/FakeRoot.git 499 | pkg install git python2 -y 500 | cd FakeRoot 501 | python2 root.py 502 | cd $HOME 503 | 504 | fi 505 | 506 | else 507 | echo -e "\e[33m[\e[31m!\e[33m]\e[91mInvalid option \e[m" 508 | fi 509 | echo " " 510 | exit 511 | --------------------------------------------------------------------------------