├── README.md ├── setup.sh └── venom.sh /README.md: -------------------------------------------------------------------------------- 1 | # Venom-Tools-Installer 2 | Introduction
3 | Venom-Tool-Installer is a Kali Linux hacking tools installer for Termux and linux system. Venom-Tool-Installer was developed for Termux and linux based systems. Using Venom-Tool-Installer, you can install almost 370+ hacking tools in Termux (android) and other Linux based distributions. Now Venom-Tool-Installer is available for Ubuntu, Debian etc. 4 | 5 | Operating System Requirements
6 | Tool-X works on any of the following operating systems:
7 | • Android (Using the Termux App)
8 | • Linux (Debian Based Systems)
9 | • Unix
10 | -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | clear 3 | figlet -c "Team Venom" 4 | echo " " 5 | read -p "Do you want to continue installing setup? [y/n] : " answer 6 | case $answer in 7 | y) 8 | clear 9 | figlet -c "Team Venom" 10 | apt-get update 11 | apt-get upgrade 12 | apt-get install figlet 13 | apt-get install git 14 | bash venom.sh 15 | ;; 16 | n) 17 | echo " " 18 | echo -e "\e[1;31m Aborting the installation.... \e[0m" 19 | exit 20 | ;; 21 | *) 22 | echo " " 23 | echo "I don't understand you" 24 | exit 25 | ;; 26 | esac 27 | -------------------------------------------------------------------------------- /venom.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | clear 3 | figlet -c "Team Venom" 4 | echo "Loading.." 5 | echo "████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20% " 6 | sleep 1 7 | clear 8 | figlet -c "Team Venom" 9 | echo "Loading..." 10 | echo "████████████████████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 40% " 11 | sleep 1 12 | clear 13 | figlet -c "Team Venom" 14 | echo "Loading..." 15 | echo "████████████████████████████████████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 60% " 16 | sleep 1 17 | clear 18 | figlet -c "Team Venom" 19 | echo "Loading...." 20 | echo "████████████████████████████████████████████████████████████████░░░░░░░░░░░░░░░░ 80% " 21 | sleep 1 22 | clear 23 | figlet -c "Team Venom" 24 | echo "Loading....." 25 | echo "████████████████████████████████████████████████████████████████████████████████ 100% " 26 | sleep 1 27 | clear 28 | figlet -c "Team Venom" 29 | echo -e "\e[1;31m <--------------------------Tool Categories---------------------------------> \e[0m" 30 | echo -e "\e[1;33m 1) Information Gathering \e[0m" 31 | echo -e "\e[1;33m 2) Vulnerabilty Analysis \e[0m" 32 | echo -e "\e[1;33m 3) Exploitation Tools \e[0m" 33 | echo -e "\e[1;33m 4) Sniffing & Spoofing \e[0m" 34 | echo -e "\e[1;33m 5) Android Hacking \e[0m" 35 | echo -e "\e[1;33m 6) Brute Force Tools \e[0m" 36 | echo -e "\e[1;33m 7) Phishing Tools \e[0m" 37 | echo -e "\e[1;33m 8) OS installer \e[0m" 38 | echo -e "\e[1;33m 9) Credits \e[0m" 39 | echo -e "\e[1;33m A) Press A for installing All \e[0m" 40 | echo -e "\e[1;33m X) For Exit \e[0m" 41 | echo -e "\e[1;31m <~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~> \e[0m" 42 | read -p "Enter an option to continue: " option 43 | case $option in 44 | 1) 45 | clear 46 | figlet -c "Team Venom" 47 | echo "<~~~~~~~~~~~~~~~~~~~~~Menu~~~~~~~~~~~~~~~~~~~~~~~~~~>" 48 | echo "1) Lazy Recon" 49 | echo "2) Red Hawk" 50 | echo "3) Th3inspector" 51 | echo "4) WPGrabInfo" 52 | echo "5) BillCipher" 53 | echo "6) Gasmask" 54 | echo "7) Webkiller" 55 | echo "8) FBI" 56 | echo "9) D-Tect" 57 | echo "10) UserRecon" 58 | echo "A) Press A for All" 59 | echo "B) Press B for Back" 60 | echo "X) For exit" 61 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 62 | read -p "Enter an option to continue: " ichoice 63 | case $ichoice in 64 | 1) 65 | clear 66 | figlet -c "Team Venom" 67 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 68 | echo "<~~~~~~~~~~~Installing LazyRecon~~~~~~~~~~~>" 69 | 70 | git clone https://github.com/nahamsec/lazyrecon 71 | ;; 72 | 2) 73 | clear 74 | figlet -c "Team Venom" 75 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 76 | echo "<~~~~~~~~~~~Installing Red Hawk~~~~~~~~~~~>" 77 | 78 | git clone https://github.com/Tuhinshubhra/RED_HAWK 79 | ;; 80 | 3) 81 | clear 82 | figlet -c "Team Venom" 83 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 84 | echo "<~~~~~~~~Installing Th3inspector~~~~~~~~~~>" 85 | 86 | git clone https://github.com/Moham3dRiahi/Th3inspector 87 | ;; 88 | 4) 89 | clear 90 | figlet -c "Team Venom" 91 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 92 | echo "<~~~~~~~~Installing WPGrabINfo~~~~~~~~~~~>" 93 | git clone https://github.com/Moham3dRiahi/WPGrabInfo 94 | ;; 95 | 5) 96 | clear 97 | figlet -c "Team Venom" 98 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 99 | echo "<~~~~~~~Installing BillCipher~~~~~~~~~~~>" 100 | git clone https://github.com/GitHackTools/BillCipher 101 | ;; 102 | 6) 103 | clear 104 | figlet -c "Team Venom" 105 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 106 | echo "<~~~~~~~~~~~Installing Gasmask~~~~~~~~~~~~~>" 107 | git clone https://github.com/twelvesec/gasmask 108 | ;; 109 | 7) 110 | clear 111 | figlet -c "Team Venom" 112 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 113 | echo "<~~~~~~~~~~~Installing WebKiller~~~~~~~~~~~>" 114 | git clone https://github.com/ultrasecurity/webkiller 115 | ;; 116 | 8) 117 | clear 118 | figlet -c "Team Venom" 119 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 120 | echo "<~~~~~~~~~~~Installing FBI~~~~~~~~~~~>" 121 | 122 | git clone https://github.com/KnightSec-Official/FBI 123 | ;; 124 | 125 | 9) 126 | clear 127 | figlet -c "Team Venom" 128 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 129 | echo "<~~~~~~~~~~~Installing D-Tect~~~~~~~~~~~~~~>" 130 | git clone https://github.com/hudacbr/D-TECT 131 | ;; 132 | 10) 133 | clear 134 | figlet -c "Team Venom" 135 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 136 | echo "<~~~~~~~~~~~Installing UserRecon~~~~~~~~~~~>" 137 | git clone https://github.com/issamelferkh/userrecon 138 | ;; 139 | A) 140 | clear 141 | figlet -c "Team Venom" 142 | echo "<~~~~~~~~~~Installing All at once~~~~~~~~~~>" 143 | 144 | git clone https://github.com/nahamsec/lazyrecon 145 | git clone https://github.com/Tuhinshubhra/RED_HAWK 146 | git clone https://github.com/Moham3dRiahi/Th3inspector 147 | git clone https://github.com/Moham3dRiahi/WPGrabInfo 148 | git clone https://github.com/GitHackTools/BillCipher 149 | git clone https://github.com/twelvesec/gasmask 150 | git clone https://github.com/ultrasecurity/webkiller 151 | git clone https://github.com/KnightSec-Official/FBI 152 | git clone https://github.com/hudacbr/D-TECT 153 | git clone https://github.com/issamelferkh/userrecon 154 | ;; 155 | B) 156 | bash venom.sh 157 | ;; 158 | X) 159 | exit 160 | ;; 161 | *) 162 | exit 163 | ;; 164 | esac 165 | ;; 166 | 2) 167 | clear 168 | figlet -c "Team Venom" 169 | echo "<~~~~~~~~~~~~~~~~~~~~Menu~~~~~~~~~~~~~~~~~~~~>" 170 | echo "1) OwScan" 171 | echo "2) CMS Map" 172 | echo "3) Click Jacking Scanner" 173 | echo "4) TM-Scanner" 174 | echo "5) AndroBug Framework" 175 | echo "6) SQLI Scan" 176 | echo "7) Commix" 177 | echo "8) WpSeku" 178 | echo "9) RouterSploit Framework" 179 | echo "10) Nikto Web Server Scanner" 180 | echo "A) Press A for installing All" 181 | echo "B) Press B for Main Menu" 182 | echo "X) Press X for exit" 183 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 184 | read -p "Enter the Choice: " vchoice 185 | case $vchoice in 186 | 1) 187 | clear 188 | figlet -c "Team Venom" 189 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 190 | echo "<~~~~~~~~~~~Installing OwScan~~~~~~~~~~~>" 191 | git clone https://github.com/Gameye98/OWScan 192 | ;; 193 | 2) 194 | clear 195 | figlet -c "Team Venom" 196 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 197 | echo "<~~~~~~~~~~~Installing CMS Map~~~~~~~~~~~~~>" 198 | git clone https://github.com/Dionach/CMSmap 199 | ;; 200 | 3) 201 | clear 202 | figlet -c "Team Venom" 203 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 204 | echo "<~~~~~~~~~~~Installing ClickJacking~~~~~~~~>" 205 | git clone https://github.com/D4Vinci/Clickjacking-Tester 206 | ;; 207 | 4) 208 | clear 209 | figlet -c "Team Venom" 210 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 211 | echo "<~~~~~~~~~~~Installing TM-Scanner~~~~~~~~~~>" 212 | git clone https://github.com/TechnicalMujeeb/TM-scanner 213 | ;; 214 | 5) 215 | clear 216 | figlet -c "Team Venom" 217 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 218 | echo "<~~~~~~~~~~~Installing AndroBug~~~~~~~~~~~>" 219 | git clone https://github.com/AndroBugs/AndroBugs_Framework 220 | ;; 221 | 6) 222 | clear 223 | figlet -c "Team Venom" 224 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 225 | echo "<~~~~~~~~~~~Installing SQLI Scan~~~~~~~~~~~>" 226 | git clone https://github.com/bambish/ScanQLi 227 | ;; 228 | 7) 229 | clear 230 | figlet -c "Team Venom" 231 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 232 | echo "<~~~~~~~~~~~Installing Commix~~~~~~~~~~~>" 233 | git clone https://github.com/commixproject/commix 234 | ;; 235 | 8) 236 | clear 237 | figlet -c "Team Venom" 238 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 239 | echo "<~~~~~~~~~~~Installing WpSEku~~~~~~~~~~~>" 240 | git clone https://github.com/m4ll0k/WPSeku 241 | ;; 242 | 9) 243 | clear 244 | figlet -c "Team Venom" 245 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 246 | echo "<~~~~~~~~~~~Installing RouterSploit~~~~~~~~>" 247 | git clone https://github.com/threat9/routersploit 248 | ;; 249 | 10) 250 | clear 251 | figlet -c "Team Venom" 252 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 253 | echo "<~~~~~~~~~~~Installing Nikto Web~~~~~~~~~~~>" 254 | git clone https://github.com/sullo/nikto 255 | ;; 256 | A) 257 | clear 258 | figlet -c "Team Venom" 259 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 260 | echo "<~~~~~~~~~~~Installing All Tools~~~~~~~~~~~>" 261 | git clone https://github.com/Gameye98/OWScan 262 | git clone https://github.com/AndroBugs/AndroBugs_Framework 263 | git clone https://github.com/TechnicalMujeeb/TM-scanner 264 | git clone https://github.com/D4Vinci/Clickjacking-Tester 265 | git clone https://github.com/Dionach/CMSmap 266 | git clone https://github.com/bambish/ScanQLi 267 | git clone https://github.com/commixproject/commix 268 | git clone https://github.com/m4ll0k/WPSeku 269 | git clone https://github.com/threat9/routersploit 270 | git clone https://github.com/sullo/nikto 271 | ;; 272 | B) 273 | bash venom.sh 274 | ;; 275 | X) 276 | exit 277 | ;; 278 | *) 279 | echo "I don't understand you" 280 | exit 281 | ;; 282 | esac 283 | ;; 284 | 3) 285 | clear 286 | figlet -c "Team Venom" 287 | echo "<----------------------------menu-------------------------->" 288 | echo "1) A-RAT Exploit" 289 | echo "2) Golden-Eye" 290 | echo "3) Hulk[Dos Tool]" 291 | echo "4) CMSeek" 292 | echo "5) MetaSploit Framework" 293 | echo "6) TM-Venom" 294 | echo "7) Zarp-Local Network Tool" 295 | echo "8) AutoSploit" 296 | echo "9) EggShell" 297 | echo "10) Brutal" 298 | echo "A) Press A for All" 299 | echo "B) Press B for Back" 300 | echo "X) For Exit" 301 | echo "<-------------------------------------------------------------->" 302 | read -p "Enter an option to continue: " echoice 303 | case $echoice in 304 | 1) 305 | clear 306 | figlet -c "Team Venom" 307 | echo "<-------------------------------------------------------------------->" 308 | echo "<------------------Installing A-RAT Exploit------------------------->" 309 | git clone https://github.com/AhMyth/AhMyth-Android-RAT 310 | ;; 311 | 2) 312 | clear 313 | figlet -c "Team Venom" 314 | echo "<-------------------------------------------------------------------->" 315 | echo "<---------------------Installing Golden-Eye------------------------->" 316 | git clone https://github.com/jseidl/GoldenEye 317 | ;; 318 | 3) 319 | clear 320 | figlet -c "Team Venom" 321 | echo "<-------------------------------------------------------------------->" 322 | echo "<-------------------Installing Hulk[Dos Tool------------------------->" 323 | git clone https://github.com/grafov/hulk 324 | ;; 325 | 326 | 4) 327 | clear 328 | figlet -c "Team Venom" 329 | echo "<-------------------------------------------------------------------->" 330 | echo "<---------------------Installing CMSeek------------------------------>" 331 | git clone https://github.com/Tuhinshubhra/CMSeeK 332 | ;; 333 | 5) 334 | clear 335 | figlet -c "Team Venom" 336 | echo "<-------------------------------------------------------------------->" 337 | echo "<-----------------Installing MetaSploit Framework-------------------->" 338 | git clone https://github.com/rapid7/metasploit-framework 339 | ;; 340 | 6) 341 | clear 342 | figlet -c "Team Venom" 343 | echo "<-------------------------------------------------------------------->" 344 | echo "<---------------------Installing TM-Venom---------------------------->" 345 | git clone https://github.com/TechnicalMujeeb/tmvenom 346 | ;; 347 | 7) 348 | echo "<-------------------------------------------------------------------->" 349 | echo "<-----------------Installing Zarp-Local Network Tool----------------->" 350 | git clone https://github.com/hatRiot/zarp 351 | ;; 352 | 8) 353 | clear 354 | figlet -c "Team Venom" 355 | echo "<-------------------------------------------------------------------->" 356 | echo "<---------------------Installing AutoSploit-------------------------->" 357 | git clone https://github.com/NullArray/AutoSploit 358 | ;; 359 | 9) 360 | clear 361 | figlet -c "Team Venom" 362 | echo "<-------------------------------------------------------------------->" 363 | echo "<---------------------Installing EggShell---------------------------->" 364 | git clone https://github.com/neoneggplant/EggShell 365 | ;; 366 | 10) 367 | clear 368 | figlet -c "Team Venom" 369 | echo "<-------------------------------------------------------------------->" 370 | echo "<---------------------Installing Brutal----------------------------->" 371 | git clone https://github.com/Screetsec/Brutal 372 | ;; 373 | A) 374 | clear 375 | figlet -c "Team Venom" 376 | echo "<-------------------------------------------------------------------->" 377 | echo "<---------------------Installing All Tools--------------------------->" 378 | git clone https://github.com/AhMyth/AhMyth-Android-RAT 379 | git clone https://github.com/jseidl/GoldenEye 380 | git clone https://github.com/grafov/hulk 381 | git clone https://github.com/Tuhinshubhra/CMSeeK 382 | git clone https://github.com/rapid7/metasploit-framework 383 | git clone https://github.com/TechnicalMujeeb/tmvenom 384 | git clone https://github.com/hatRiot/zarp 385 | git clone https://github.com/NullArray/AutoSploit 386 | git clone https://github.com/neoneggplant/EggShell 387 | git clone https://github.com/Screetsec/Brutal 388 | 389 | 390 | ;; 391 | B) 392 | bash venom.sh 393 | ;; 394 | X) 395 | exit 396 | ;; 397 | *) 398 | echo "i don't understand you" 399 | exit 400 | ;; 401 | esac 402 | ;; 403 | 4) 404 | clear 405 | figlet -c "Team Venom" 406 | echo "<----------------------------menu-------------------------->" 407 | echo "1) Setoolkit " 408 | echo "2) SSLtrip" 409 | echo "3) pyPISHER" 410 | echo "4) SMTP Mailer" 411 | echo "5) Python Packet Sniffer" 412 | echo "A) Press A for All" 413 | echo "B) Press B for Back" 414 | echo "X) For Exit" 415 | echo "<-------------------------------------------------------------->" 416 | read -p "Enter an option to continue: " schoice 417 | case $schoice in 418 | 1) 419 | clear 420 | figlet -c "Team Venom" 421 | echo "<-------------------------------------------------------------------->" 422 | echo "<------------------Installing Setoolkit------------------------->" 423 | git clone https://github.com/trustedsec/social-engineer-toolkit 424 | ;; 425 | 2) 426 | clear 427 | figlet -c "Team Venom" 428 | echo "<-------------------------------------------------------------------->" 429 | echo "<---------------------Installing SSLtrip------------------------->" 430 | git clone https://github.com/moxie0/sslstrip 431 | ;; 432 | 3) 433 | clear 434 | figlet -c "Team Venom" 435 | echo "<-------------------------------------------------------------------->" 436 | echo "<-------------------Installing pyPISHER------------------------->" 437 | git clone https://github.com/sneakerhax/PyPhisher 438 | ;; 439 | 440 | 4) 441 | clear 442 | figlet -c "Team Venom" 443 | echo "<-------------------------------------------------------------------->" 444 | echo "<---------------------Installing SMTP Mailer----------------------------->" 445 | git clone https://github.com/halojoy/PHP-SMTP-Mailer 446 | ;; 447 | 5) 448 | 449 | clear 450 | figlet -c "Team Venom" 451 | echo "<-------------------------------------------------------------------->" 452 | echo "<---------------------Installing Python Packet Sniffer------_----------->" 453 | git clone https://github.com/buckyroberts/Python-Packet-Sniffer 454 | ;; 455 | 456 | A) 457 | clear 458 | figlet -c "Team Venom" 459 | echo "<-------------------------------------------------------------------->" 460 | echo "<---------------------Installing All Tools--------------------------->" 461 | git clone https://github.com/trustedsec/social-engineer-toolkit 462 | git clone https://github.com/moxie0/sslstrip 463 | git clone https://github.com/sneakerhax/PyPhisher 464 | git clone https://github.com/halojoy/PHP-SMTP-Mailer 465 | git clone https://github.com/buckyroberts/Python-Packet-Sniffer 466 | 467 | ;; 468 | B) 469 | bash venom.sh 470 | ;; 471 | X) 472 | exit 473 | ;; 474 | *) 475 | echo "i don't understand you" 476 | exit 477 | ;; 478 | 479 | esac 480 | ;; 481 | 5) 482 | clear 483 | figlet -c "Team Venom" 484 | echo "<----------------------------menu-------------------------->" 485 | echo "1) AndroRat" 486 | echo "2) Csploit" 487 | echo "3) Hackode" 488 | echo "A) Press A for All" 489 | echo "B) Press B for Back" 490 | echo "X) For Exit" 491 | echo "<-------------------------------------------------------------->" 492 | read -p "Enter an option to continue: " achoice 493 | case $achoice in 494 | 1) 495 | clear 496 | figlet -c "Team Venom" 497 | echo "<-------------------------------------------------------------------->" 498 | echo "<---------------------Installing AndroRat--------------------------->" 499 | git clone https://github.com/warecrer/AndroRAT 500 | ;; 501 | 2) 502 | clear 503 | figlet -c "Team Venom" 504 | echo "<-------------------------------------------------------------------->" 505 | echo "<---------------------Installing Csploit----------------------------->" 506 | git clone https://github.com/cSploit/android 507 | ;; 508 | 3) 509 | clear 510 | figlet -c "Team Venom" 511 | echo "<-------------------------------------------------------------------->" 512 | echo "<-----------------------Installing TheFatRat------------------------->" 513 | git clone https://github.com/Exploit-install/TheFatRat 514 | ;; 515 | A) 516 | clear 517 | figlet -c "Team Venom" 518 | echo "<-------------------------------------------------------------------->" 519 | echo "<---------------------Installing All Tools----------------------->" 520 | git clone https://github.com/warecrer/AndroRAT 521 | git clone https://github.com/cSploit/android 522 | git clone https://github.com/Exploit-install/TheFatRat 523 | ;; 524 | B) 525 | bash venom.sh 526 | ;; 527 | X) 528 | exit 529 | ;; 530 | *) 531 | echo "i don't understand you" 532 | exit 533 | ;; 534 | esac 535 | ;; 536 | 6) 537 | clear 538 | figlet -c "Team Venom" 539 | echo "<----------------------------menu-------------------------->" 540 | echo "1) SocialBox" 541 | echo "2) BluForce-FB" 542 | echo "3) FaceBoom" 543 | echo "4) Instagram" 544 | echo "5) Instabrute" 545 | echo "6) Brute-force-gmail" 546 | echo "7) GmailBruterV2" 547 | echo "8) WPBrute" 548 | echo "9) Cpanel-Bruter" 549 | echo "10) RDP-Brute" 550 | echo "A) Press A for All" 551 | echo "B) Press B for Back" 552 | echo "X) For Exit" 553 | echo "<-------------------------------------------------------------->" 554 | read -p "Enter an option to continue: " bchoice 555 | case $bchoice in 556 | 1) 557 | clear 558 | figlet -c "Team Venom" 559 | echo "<-------------------------------------------------------------------->" 560 | echo "<-----------------Installing SocialBox------------------------------>" 561 | git clone https://github.com/Cyb0r9/SocialBox 562 | ;; 563 | 2) 564 | clear 565 | figlet -c "Team Venom" 566 | echo "<-------------------------------------------------------------------->" 567 | echo "<---------------------Installing BluForce-FB------------------------->" 568 | git clone https://github.com/AngelSecurityTeam/BluForce-FB 569 | ;; 570 | 3) 571 | clear 572 | figlet -c "Team Venom" 573 | echo "<-------------------------------------------------------------------->" 574 | echo "<-----------------------Installing FaceBoom-------------------------->" 575 | git clone https://github.com/Oseid/FaceBoom 576 | ;; 577 | 4) 578 | clear 579 | figlet -c "Team Venom" 580 | echo "<-------------------------------------------------------------------->" 581 | echo "<-----------------------Installing Instagram------------------------->" 582 | git clone https://github.com/Pure-L0G1C/Instagram 583 | ;; 584 | 5) 585 | clear 586 | figlet -c "Team Venom" 587 | echo "<-------------------------------------------------------------------->" 588 | echo "<-----------------------Installing Instabrute------------------------>" 589 | git clone https://github.com/xHak9x/instabrute 590 | ;; 591 | 6) 592 | clear 593 | figlet -c "Team Venom" 594 | echo "<-------------------------------------------------------------------->" 595 | echo "<------------------Installing Brute-force-gmail---------------------->" 596 | git clone https://github.com/0xfff0800/Brute-force-gmail 597 | ;; 598 | 7) 599 | clear 600 | figlet -c "Team Venom" 601 | echo "<-------------------------------------------------------------------->" 602 | echo "<-----------------------Installing GmailBruterV2--------------------->" 603 | git clone https://github.com/DEMON1A/GmailBruterV2 604 | ;; 605 | 8) 606 | clear 607 | figlet -c "Team Venom" 608 | echo "<-------------------------------------------------------------------->" 609 | echo "<-----------------------Installing WPBrute--------------------------->" 610 | git clone https://github.com/BlackXploits/WPBrute 611 | ;; 612 | 9) 613 | clear 614 | figlet -c "Team Venom" 615 | echo "<-------------------------------------------------------------------->" 616 | echo "<-----------------------Installing Cpanel-Bruter--------------------->" 617 | git clone https://github.com/imadoxhunter/Cpanel-Bruter 618 | ;; 619 | 10) 620 | clear 621 | figlet -c "Team Venom" 622 | echo "<-------------------------------------------------------------------->" 623 | echo "<-----------------------Installing RDP-Brute------------------------->" 624 | git clone https://github.com/TheDevFromKer/RDP-Brute 625 | ;; 626 | 627 | A) 628 | clear 629 | figlet -c "Team Venom" 630 | echo "<-------------------------------------------------------------------->" 631 | echo "<---------------------Installing All Tools--------------------------->" 632 | git clone https://github.com/Cyb0r9/SocialBox 633 | git clone https://github.com/AngelSecurityTeam/BluForce-FB 634 | git clone https://github.com/Oseid/FaceBoom 635 | git clone https://github.com/Pure-L0G1C/Instagram 636 | git clone https://github.com/xHak9x/instabrute 637 | git clone https://github.com/0xfff0800/Brute-force-gmail 638 | git clone https://github.com/DEMON1A/GmailBruterV2 639 | git clone https://github.com/BlackXploits/WPBrute 640 | git clone https://github.com/TheDevFromKer/RDP-Brute 641 | ;; 642 | B) 643 | bash venom.sh 644 | ;; 645 | X) 646 | exit 647 | ;; 648 | *) 649 | echo "i don't understand you" 650 | exit 651 | ;; 652 | esac 653 | ;; 654 | 7) 655 | clear 656 | figlet -c "Team Venom" 657 | echo "<----------------------------menu-------------------------->" 658 | echo "1) Shellphish" 659 | echo "2) HiddenEye" 660 | echo "3) SocialFish" 661 | echo "4) Zphisher" 662 | echo "5) Blackeye" 663 | echo "A) Press A for All" 664 | echo "B) Press B for Back" 665 | echo "X) For Exit" 666 | echo "<-------------------------------------------------------------->" 667 | read -p "Enter an option to continue: " pchoice 668 | case $pchoice in 669 | 1) 670 | clear 671 | figlet -c "Team Venom" 672 | echo "<-------------------------------------------------------------------->" 673 | echo "<-----------------Installing Shellphish----------------------------->" 674 | git clone https://github.com/rorizam323/shellphish 675 | ;; 676 | 2) 677 | clear 678 | figlet -c "Team Venom" 679 | echo "<-------------------------------------------------------------------->" 680 | echo "<---------------------Installing HiddenEye--------------------------->" 681 | git clone https://github.com/DarkSecDevelopers/HiddenEye 682 | ;; 683 | 3) 684 | clear 685 | figlet -c "Team Venom" 686 | echo "<-------------------------------------------------------------------->" 687 | echo "<-----------------------Installing SocialFish------------------------>" 688 | git clone https://github.com/An0nUD4Y/SocialFish 689 | ;; 690 | 4) 691 | clear 692 | figlet -c "Team Venom" 693 | echo "<-------------------------------------------------------------------->" 694 | echo "<-----------------------Installing Zphisher-------------------------->" 695 | git clone https://github.com/htr-tech/zphisher 696 | ;; 697 | 5) 698 | clear 699 | figlet -c "Team Venom" 700 | echo "<-------------------------------------------------------------------->" 701 | echo "<-----------------------Installing Blackeye-------------------------->" 702 | git clone https://github.com/An0nUD4Y/blackeye 703 | ;; 704 | 705 | A) 706 | clear 707 | figlet -c "Team Venom" 708 | echo "<-------------------------------------------------------------------->" 709 | echo "<---------------------Installing All Tools--------------------------->" 710 | git clone https://github.com/rorizam323/shellphish 711 | git clone https://github.com/DarkSecDevelopers/HiddenEye 712 | git clone https://github.com/An0nUD4Y/SocialFish 713 | git clone https://github.com/htr-tech/zphisher 714 | git clone https://github.com/An0nUD4Y/blackeye 715 | ;; 716 | B) 717 | bash venom.sh 718 | ;; 719 | X) 720 | exit 721 | ;; 722 | *) 723 | echo "i don't understand you" 724 | exit 725 | ;; 726 | esac 727 | ;; 728 | 8) 729 | clear 730 | figlet -c "Team Venom" 731 | echo "<----------------------------menu-------------------------->" 732 | echo "1) Ubuntu" 733 | echo "2) Debian" 734 | echo "3) Kali Linux" 735 | echo "4) Kali Nethunter" 736 | echo "5) Backbox" 737 | echo "6) Fedora" 738 | echo "7) Cent Os" 739 | echo "8) Opensuse Leap" 740 | echo "9) OpenSUSE tumbleweed" 741 | echo "10) Arch linux" 742 | echo "11) Black Arch" 743 | echo "12) Alpine" 744 | echo "B) Press B for Back" 745 | echo "X) For Exit" 746 | echo "<-------------------------------------------------------------->" 747 | read -p "Enter an option to continue: " ochoice 748 | case $ochoice in 749 | 1) 750 | clear 751 | figlet -c "Team Venom" 752 | echo "<-------------------------------------------------------------------->" 753 | echo "<-----------------Installing Ubuntu----------------------------->" 754 | pkg install wget openssl-tool proot -y && hash -r && wget https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/Installer/Ubuntu/ubuntu.sh && bash ubuntu.sh 755 | ;; 756 | 2) 757 | clear 758 | figlet -c "Team Venom" 759 | echo "<-------------------------------------------------------------------->" 760 | echo "<---------------------Installing Debian--------------------------->" 761 | pkg install wget openssl-tool proot -y && hash -r && wget https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/Installer/Debian/debian.sh && bash debian.sh 762 | ;; 763 | 3) 764 | clear 765 | figlet -c "Team Venom" 766 | echo "<-------------------------------------------------------------------->" 767 | echo "<-----------------------Installing Kali Linux------------------------>" 768 | pkg install wget openssl-tool proot -y && hash -r && wget https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/Installer/Kali/kali.sh && bash kali.sh 769 | ;; 770 | 4) 771 | clear 772 | figlet -c "Team Venom" 773 | echo "<-------------------------------------------------------------------->" 774 | echo "<-------------------Installing Kali NetHunter------------------------>" 775 | pkg install wget openssl-tool proot -y && hash -r && wget https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/Installer/Nethunter/nethunter.sh && bash nethunter.sh 776 | ;; 777 | 5) 778 | clear 779 | figlet -c "Team Venom" 780 | echo "<-------------------------------------------------------------------->" 781 | echo "<-----------------------Installing Backbox-------------------------->" 782 | pkg install wget openssl-tool proot -y && hash -r && wget https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/Installer/BackBox/backbox.sh && bash backbox.sh 783 | ;; 784 | 785 | 6) 786 | clear 787 | figlet -c "Team Venom" 788 | echo "<-------------------------------------------------------------------->" 789 | echo "<---------------------Installing Fedora------------------------------>" 790 | pkg install wget openssl-tool proot tar -y && hash -r && wget https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/Installer/Fedora/fedora.sh && bash fedora.sh 791 | ;; 792 | 793 | 7) 794 | clear 795 | figlet -c "Team Venom" 796 | echo "<-------------------------------------------------------------------->" 797 | echo "<-----------------------Installing Cent Os--------------------------->" 798 | pkg install wget openssl-tool proot tar -y && hash -r && wget https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/Installer/CentOS/centos.sh && bash centos.sh 799 | ;; 800 | 801 | 8) 802 | clear 803 | figlet -c "Team Venom" 804 | echo "<-------------------------------------------------------------------->" 805 | echo "<-----------------Installing Opensuse Leap--------------------------->" 806 | pkg install wget openssl-tool proot tar -y && hash -r && wget https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/Installer/openSUSE/Leap/opensuse-leap.sh && bash opensuse-leap.sh 807 | ;; 808 | 9) 809 | clear 810 | figlet -c "Team Venom" 811 | echo "<-------------------------------------------------------------------->" 812 | echo "<----------------Installing OpenSUSE tumbleweed---------------------->" 813 | pkg install wget openssl-tool proot tar -y && hash -r && wget https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/Installer/openSUSE/Tumbleweed/opensuse-tumbleweed.sh && bash opensuse-tumbleweed.sh 814 | ;; 815 | 816 | 10) 817 | clear 818 | figlet -c "Team Venom" 819 | echo "<-------------------------------------------------------------------->" 820 | echo "<---------------------Installing Arch linux-------------------------->" 821 | pkg install wget openssl-tool proot tar -y && hash -r && wget https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/Installer/Arch/armhf/arch.sh && bash arch.sh 822 | ;; 823 | 11) 824 | clear 825 | figlet -c "Team Venom" 826 | echo "<-------------------------------------------------------------------->" 827 | echo "<---------------------Installing Black Arch-------------------------->" 828 | pacman-key --init && pacman-key --populate archlinuxarm && pacman -Sy --noconfirm curl && curl -O https://blackarch.org/strap.sh && chmod +x strap.sh && ./strap.sh 829 | ;; 830 | 12) 831 | clear 832 | figlet -c "Team Venom" 833 | echo "<-------------------------------------------------------------------->" 834 | echo "<---------------------Installing Alpine------------------------------>" 835 | pkg install wget openssl-tool proot tar -y && hash -r && wget https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/Installer/Alpine/alpine.sh && bash alpine.sh 836 | ;; 837 | B) 838 | bash venom.sh 839 | ;; 840 | X) 841 | exit 842 | ;; 843 | *) 844 | echo "i don't understand you" 845 | exit 846 | ;; 847 | esac 848 | ;; 849 | 9) 850 | clear 851 | figlet -c "Team Venom" 852 | echo "Loading.." 853 | echo "████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20% " 854 | sleep 1 855 | clear 856 | figlet -c "Team Venom" 857 | echo "Loading..." 858 | echo "████████████████████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 40% " 859 | sleep 1 860 | clear 861 | figlet -c "Team Venom" 862 | echo "Loading..." 863 | echo "████████████████████████████████████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 60% " 864 | sleep 1 865 | clear 866 | figlet -c "Team Venom" 867 | echo "Loading...." 868 | echo "████████████████████████████████████████████████████████████████░░░░░░░░░░░░░░░░ 80% " 869 | sleep 1 870 | clear 871 | figlet -c "Team Venom" 872 | echo "Loading....." 873 | echo "████████████████████████████████████████████████████████████████████████████████ 100% " 874 | sleep 1 875 | clear 876 | figlet -c "Team Venom" 877 | echo -e "\e[1;35m <--------------------CREDITS-------------------------------> \e[0m" 878 | echo " " 879 | echo -e "\e[1;35m <--------------Follow us on Insta--------------------------> \e[0m" 880 | echo " " 881 | echo -e "\e[1;35m <----------------------------------------------------------> \e[0m" 882 | echo " " 883 | echo -e "\e[1;35m https://instagram.com/i.m.gauravchaudhary \e[0m" 884 | echo " " 885 | echo -e "\e[1;35m <----------------------------------------------------------> \e[0m" 886 | echo " " 887 | echo -e "\e[1;35m https://instagram.com/we_are_teamvenom \e[0m" 888 | echo " " 889 | echo -e "\e[1;35m <----------------------------------------------------------> \e[0m" 890 | echo " " 891 | echo -e "\e[1;35m https://www.instagram.com/hackingmaster_t56 \e[0m" 892 | echo " " 893 | echo -e "\e[1;35m <----------------------------------------------------------> \e[0m" 894 | echo " " 895 | echo -e "\e[1;35m https://www.instagram.com/i.m.sahilkhan_ \e[0m" 896 | echo " " 897 | echo -e "\e[1;35m <----------------------------------------------------------> \e[0m " 898 | ;; 899 | A) 900 | clear 901 | figlet -c "Team Venom" 902 | echo "<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>" 903 | echo "<~~~~~~~~~~~~~~Installing All tools~~~~~~~~~~~~~~>" 904 | git clone https://github.com/rorizam323/shellphish 905 | git clone https://github.com/DarkSecDevelopers/HiddenEye 906 | git clone https://github.com/An0nUD4Y/SocialFish 907 | git clone https://github.com/htr-tech/zphisher 908 | git clone https://github.com/An0nUD4Y/blackeye 909 | git clone https://github.com/Cyb0r9/SocialBox 910 | git clone https://github.com/AngelSecurityTeam/BluForce-FB 911 | git clone https://github.com/Oseid/FaceBoom 912 | git clone https://github.com/Pure-L0G1C/Instagram 913 | git clone https://github.com/xHak9x/instabrute 914 | git clone https://github.com/0xfff0800/Brute-force-gmail 915 | git clone https://github.com/DEMON1A/GmailBruterV2 916 | git clone https://github.com/BlackXploits/WPBrute 917 | git clone https://github.com/TheDevFromKer/RDP-Brute 918 | git clone https://github.com/warecrer/AndroRAT 919 | git clone https://github.com/cSploit/android 920 | git clone https://github.com/Exploit-install/TheFatRat 921 | git clone https://github.com/trustedsec/social-engineer-toolkit 922 | git clone https://github.com/moxie0/sslstrip 923 | git clone https://github.com/sneakerhax/PyPhisher 924 | git clone https://github.com/halojoy/PHP-SMTP-Mailer 925 | git clone https://github.com/buckyroberts/Python-Packet-Sniffer 926 | git clone https://github.com/AhMyth/AhMyth-Android-RAT 927 | git clone https://github.com/jseidl/GoldenEye 928 | git clone https://github.com/grafov/hulk 929 | git clone https://github.com/Tuhinshubhra/CMSeeK 930 | git clone https://github.com/rapid7/metasploit-framework 931 | git clone https://github.com/TechnicalMujeeb/tmvenom 932 | git clone https://github.com/hatRiot/zarp 933 | git clone https://github.com/NullArray/AutoSploit 934 | git clone https://github.com/neoneggplant/EggShell 935 | git clone https://github.com/Screetsec/Brutal 936 | git clone https://github.com/Gameye98/OWScan 937 | git clone https://github.com/AndroBugs/AndroBugs_Framework 938 | git clone https://github.com/TechnicalMujeeb/TM-scanner 939 | git clone https://github.com/D4Vinci/Clickjacking-Tester 940 | git clone https://github.com/Dionach/CMSmap 941 | git clone https://github.com/bambish/ScanQLi 942 | git clone https://github.com/commixproject/commix 943 | git clone https://github.com/m4ll0k/WPSeku 944 | git clone https://github.com/threat9/routersploit 945 | git clone https://github.com/sullo/nikto 946 | git clone https://github.com/nahamsec/lazyrecon 947 | git clone https://github.com/Tuhinshubhra/RED_HAWK 948 | git clone https://github.com/Moham3dRiahi/Th3inspector 949 | git clone https://github.com/Moham3dRiahi/WPGrabInfo 950 | git clone https://github.com/GitHackTools/BillCipher 951 | git clone https://github.com/twelvesec/gasmask 952 | git clone https://github.com/ultrasecurity/webkiller 953 | git clone https://github.com/KnightSec-Official/FBI 954 | git clone https://github.com/hudacbr/D-TECT 955 | git clone https://github.com/issamelferkh/userrecon 956 | ;; 957 | 958 | X) 959 | exit 960 | ;; 961 | 962 | *) 963 | echo "I don't understand you" 964 | exit 965 | ;; 966 | 967 | esac 968 | 969 | 970 | --------------------------------------------------------------------------------