What's new

Tutorial Magic IP hunt [GTM] using Termux

No need root.

Dependencies po iyon, if naka auto install na yung curl sa termux no need na iinstall.

Screenshot_20230614-083839.jpg
Tapos yung code na ilalagay paps?
 

Attachments

Code:
cat <<'EOF' >> ~/.bashrc
# Define color codes
RED="\033[1;31m"
GREEN="\033[1;32m"
YELLOW="\033[1;33m"
BLUE="\033[1;34m"
MAGENTA="\033[1;35m"
CYAN="\033[1;36m"
NC="\033[0m"

iphuntw() {
    echo -e "${CYAN}"
    echo "██╗██████╗░██╗░░██╗██╗░░░██╗███╗░░██╗████████╗"
    echo "██║██╔══██╗██║░░██║██║░░░██║████╗░██║╚══██╔══╝"
    echo "██║██████╔╝███████║██║░░░██║██╔██╗██║░░░██║░░░"
    echo "██║██╔═══╝░██╔══██║██║░░░██║██║╚████║░░░██║░░░"
    echo "██║██║░░░░░██║░░██║╚██████╔╝██║░╚███║░░░██║░░░"
    echo "╚═╝╚═╝░░░░░╚═╝░░╚═╝░╚═════╝░╚═╝░░╚══╝░░░╚═╝░░░"
    echo -e "${RESET}"

    while true; do
        if curl -s -D- http://google.com -x "google.com:80" | grep -q "msisdn"; then
            echo -e "\\r\033[1;32mYou have found MAGIC IP\033[0m\\n"
            break
        else
            sleep 0.000001
            echo -ne "\\r\033[1;33mSearching for magic IP \033[1;34m${NC}[ ${RED}| ${NC}]"
            sleep 0.000001
            echo -ne "\\r\033[1;33mSearching for magic IP \033[1;34m${NC}[ ${RED}/ ${NC}]"
            sleep 0.000001
            echo -ne "\\r\033[1;33mSearching for magic IP \033[1;34m${NC}[ ${RED}- ${NC}]"
            sleep 0.000001
            echo -ne "\\r\033[1;33mSearching for magic IP \033[1;34m${NC}[ ${RED}\ ${NC}]"
            
        fi
    done
}

iphuntw
EOF

Ito may animation 😆
 
Code:
cat <<'EOF' >> ~/.bashrc
# Define color codes
RED="\033[1;31m"
GREEN="\033[1;32m"
YELLOW="\033[1;33m"
BLUE="\033[1;34m"
MAGENTA="\033[1;35m"
CYAN="\033[1;36m"
NC="\033[0m"

iphuntw() {
    echo -e "${CYAN}"
    echo "██╗██████╗░██╗░░██╗██╗░░░██╗███╗░░██╗████████╗"
    echo "██║██╔══██╗██║░░██║██║░░░██║████╗░██║╚══██╔══╝"
    echo "██║██████╔╝███████║██║░░░██║██╔██╗██║░░░██║░░░"
    echo "██║██╔═══╝░██╔══██║██║░░░██║██║╚████║░░░██║░░░"
    echo "██║██║░░░░░██║░░██║╚██████╔╝██║░╚███║░░░██║░░░"
    echo "╚═╝╚═╝░░░░░╚═╝░░╚═╝░╚═════╝░╚═╝░░╚══╝░░░╚═╝░░░"
    echo -e "${RESET}"

    while true; do
        if curl -s -D- http://google.com -x "google.com:80" | grep -q "msisdn"; then
            echo -e "\\r\033[1;32mYou have found MAGIC IP\033[0m\\n"
            break
        else
            sleep 0.000001
            echo -ne "\\r\033[1;33mSearching for magic IP \033[1;34m${NC}[ ${RED}| ${NC}]"
            sleep 0.000001
            echo -ne "\\r\033[1;33mSearching for magic IP \033[1;34m${NC}[ ${RED}/ ${NC}]"
            sleep 0.000001
            echo -ne "\\r\033[1;33mSearching for magic IP \033[1;34m${NC}[ ${RED}- ${NC}]"
            sleep 0.000001
            echo -ne "\\r\033[1;33mSearching for magic IP \033[1;34m${NC}[ ${RED}\ ${NC}]"
           
        fi
    done
}

iphuntw
EOF

Ito may animation 😆
Nays!! Mas better ata if gawa ng separate script para di ma ooverwrite yung mga Environment Variables.

Pinahirapan nyu lang sarili nyu,
I said "Termux Users". And optional lang naman ang paggamit, Di ka naman pinipilit. :v
 

Similar threads

Back
Top