A Simple Facebook Phishing Page • For educational use only • The author is not responsible for illegal misuse.
1#!/bin/bash
2
3# Load colors
4source utils/colors.sh
5
6clear
7
8function facephish_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}${BLUE} __ _ _ _ \n"
14 printf " / _| __ _ ___ ___ _ __ | |__ (_)___| |__ \n"
15 printf "| |_ / _\` |/ __/ _ \\ '_ \\| '_ \\| / __| '_ \\ \n"
16 printf "| _| (_| | (_| __/ |_) | | | | \\__ \\ | | |\n"
17 printf "|_| \\__,_|\\___\\___| .__/|_| |_|_|___/_| |_|\n"
18 printf "${RESET}${BOLD}${BLUE} |_| ${link_start}@hatixntsoa${link_end}${RESET}\n\n"
19
20 printf "${BOLD}${WHITE}[${BLUE}?${WHITE}]${RESET} Press ${WHITE}Ctrl+C${RESET} to stop\n\n"
21}