Advertisement
zakirmaker

Xc0r3 Instaler

Oct 6th, 2017
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.64 KB | None | 0 0
  1. #!/bin/bash
  2. RED='\033[0;31m'
  3. clear
  4. figlet Xc0r3 V.1.1
  5. echo ""
  6. echo "Tools Installer By Xc0r3"
  7. echo "0) Sqlmap"
  8. echo "1) Wpscan"
  9. echo "2) Wpxf"
  10. echo "3) Simple Tools For Info website"
  11. echo "4) Bing Dorker"
  12. echo "5) Metazploit"
  13. echo "6) wifite2"
  14. echo "7) clusterd"
  15. echo "8) Fluxion"
  16. echo "9) V3n0m-Scanner"
  17. echo "10) Cms-scanner"
  18. echo "99) Report Bug"
  19. echo "Dont Forget Run : bash install.sh"
  20. echo "Pilih :"
  21. read pilih
  22. case $pilih in
  23. 0)
  24. clear
  25. figlet Xc0r3
  26. echo "Prepare Install SqlMap ~"
  27. git clone https://github.com/sqlmapproject/sqlmap.git
  28. cd sqlmap
  29. chmod 777 sqlmap.py
  30. clear
  31. echo "Use python2 sqlmap.py --help"
  32. ;;
  33. 1)
  34. clear
  35. echo "Prepare Install Wpscan"
  36. git clone https://github.com/wpscanteam/wpscan
  37. cd wpscan
  38. chmod 777 wpscan.rb
  39. gem install bundle
  40. bundle install -j5
  41. clear
  42. echo "Use ruby wpscan.rb -help"
  43. ;;
  44. 2)
  45. clear
  46. echo "Prepare Install Wpxf"
  47. git clone https://github.com/rastating/wordpress-exploit-framework.git
  48. cd wordpress-exploit-framework
  49. chmod 777 wpxf.rb
  50. clear
  51. echo " Use : ruby wpxf.rb -help "
  52. ;;
  53. 3)
  54. clear
  55. echo "Install Files Waiting"
  56. wget https://pastebin.com/raw/5njuKAZ1 -O web.sh
  57. chmod 777 web.sh
  58. clear
  59. echo "Use : bash web.sh"
  60. ;;
  61. 4)
  62. clear
  63. echo "Prepare Install Bing Dorker"
  64. wget https://pastebin.com/raw/4QWCnbsB -O bing.php
  65. chmod 777 bing.php
  66. clear
  67. echo "Use : php bing.php /admin/ , and etc"
  68. ;;
  69. 5)
  70. clear
  71. echo "Prepare Install Metazploit"
  72. curl -LO https://raw.githubusercontent.com/Techzindia/Metasploit_For_Termux/master/metasploitTechzindia.sh
  73. cd metasploit-framework-4.14.28
  74. clear
  75. echo "Use : ./msfconsole"
  76. ;;
  77. 6)
  78. clear
  79. echo "Prepare Install Wifite2"
  80. git clone https://github.com/derv82/wifite2.git
  81. cd wifite2
  82. chmod 777 Wifite.py
  83. clear
  84. echo "Use : python2 Wifite.py"
  85. ;;
  86. 7)
  87. clear
  88. echo "Prepare Install clusterd"
  89. git clone https://github.com/hatRiot/clusterd.git
  90. cd clusterd
  91. chmod 777 clusterd.py
  92. clear
  93. echo "Use : python clusterd.py"
  94. ;;
  95. 8)
  96. clear
  97. echo "Prepare Install Fluxion"
  98. git clone --recursive https://github.com/FluxionNetwork/fluxion.git
  99. cd fluxion
  100. chmod 777 fluxion.sh
  101. clear
  102. echo "use : bash fluxion.sh"
  103. ;;
  104. 9)
  105. clear
  106. echo "Prepare Install V3n0m"
  107. git clone https://github.com/v3n0m-Scanner/V3n0M-Scanner.git
  108. cd V3n0M-Scanner
  109. python3 setup.py install --user
  110. clear
  111. echo "use : ./v3n0m"
  112. ;;
  113. 10)
  114. clear
  115. echo "Prepare Install Cms-Scanner"
  116. git clone https://github.com/googleinurl/SCANNER-INURLBR.git inurlbr
  117. cd inurlbr
  118. chmod +x inurlbr.php
  119. clear
  120. echo "Use : php inurlbr.php -h"
  121. ;;
  122. 99)
  123. clear
  124. figlet Xc0r3 V.1.1
  125. echo ""
  126. echo "Author : Muhammad Zakir Ramadhan"
  127. echo "Report Bug : fb.me/syaasa.co.id"
  128. echo "Thanks To All My Friends"
  129. ;;
  130. esac
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement