A Simple Instagram Phishing Page • For educational use only • The author is not responsible for illegal misuse.
at master 763 B view raw
1#!/bin/bash 2 3# Load colors 4source utils/colors.sh 5 6clear 7 8function instaphish_banner { 9 local github_link='https://github.com/hatixntsoa' 10 local link_start="\033]8;;${github_link}\033\\" 11 local link_end='\033]8;;\033\\' 12 13 printf "${BOLD}${MAGENTA}" 14 printf " _ _ _ _ _\n" 15 printf "(_)_ __ ___| |_ __ _ _ __ | |__ (_)___| |__\n" 16 printf "| | '_ \\/ __| __/ _\` | '_ \\| '_ \\| / __| '_ \\ \n" 17 printf "| | | | \\__ \\ || (_| | |_) | | | | \\__ \\ | | |\n" 18 printf "|_|_| |_|___/\\__\\__,_| .__/|_| |_|_|___/_| |_|\n" 19 printf " |_| ${RESET}${BLUE}${link_start}@hatixntsoa${link_end}${RESET}\n\n" 20 21 printf "${BOLD}${WHITE}[${BLUE}?${WHITE}]${RESET} Press ${WHITE}Ctrl+C${RESET} to stop\n\n" 22}