THIS PROJECT IS MADE FOR DEMO AND EDUCATION PURPOSE ONLY AND HENCE, THE USE OF THIS REPOSITORY IS AT YOUR OWN RISK.
WE, SHALL NOT BE LIABLE FOR ANY DAMAGED OR LEGAL CONSENTS BY YOUR USAGE OF THIS PROJECT.
The following demonstration illustrates how an attacker is able to create a public wireless network, and spoof your data. At the same time, the demonstration also showcase how the attacker processes your information and impersonate themselves as someone of authority and obtain more of your sensitive data such as credit card information.
In this section, we will be explaining what are the required packages before we start the installation.
- Ubuntu 18.04 and above
- nginx web server package
apt install nginx
- git package
apt install git
- Clone the git repository into the webserver.
- Move the CDT_phishing_m3 folder into the Nginx web server's root directory and rename it into m3.
mv CDT_phishing_m3 /var/www/html/m3
- Associate the domain name hotspot.wireless with localhost IP address.
nano /etc/hosts
3.1 Amend the following line from
127.0.0.1 localhost
TO
127.0.0.1 hotspot.wireless
- Start nginx web server
service nginx start
In this section, we will be explaining how will the frontend (victim's browser) sends the data to the backend (attacker's server) seamlessly.
- Load the website on your browser.
- Start capturing the user inputs by opening 2 different terminals.
tail -f /var/log/nginx/access.log | awk '/NRIC/ {print "\n" "Entry " NR " | " $1 $2 $4 $5 " - WIFI HOTSPOT""\n" "\n" $7}'
tail -f /var/log/nginx/access.log | awk '/REF/ {print "\n" "Entry " NR " | " $1 $2 $4 $5 " - MOF""\n" "\n" $7}'
- Go through all the steps in entering the details (VERY SIMPLE!!!)
In the last section, we will be analysing the sample data output from Terminal 1 and Terminal 2 ( REFER TO EXECUTION(2) )
The data presented in this output is the input from the rogue Wireless@SG website.
Entry 4 | 172.32.0.100-[25/Jul/2020:15:14:57+0800] - WIFI HOTSPOT
/detected.html?title=Title&input=Mr&name=Full+Name&input=John&NRIC=Last+4+digits+of+NRIC&input=345D&postal+code=Postal+Code&input=123456&address=Address&input=123+Tamp+f
From the above data, we can safely deduce the following information:
Title: Mr
Full Name: John
Last 4 digits of NRIC: 345D
Poster Code: 123456
Address: 123 Tamp f
The data presented in this output is the input from the rogue Ministry of Finance website.
Entry 3 | 172.32.0.100-[25/Jul/2020:15:13:21+0800] - WIFI HOTSPOT
/MOF%20|%20Seek%20Permission%20Form_files/FormFEDYA.html?REF=2020_SPF_MOF&CARD=99999999999999999&CVV=999&EXP=99%2F99
From the above data, we can safely deduce the following information:
Card Number: 99999999999999999
CVV: 999
Exp Date: 99/99
NOTE: TO ENSURE THE CORROSPONDING VICTIM FROM TERMINAL 1 AND TERMINAL 2 DATA MATCHES, ALWAYS CHECK THE TIME AND DATE OF INPUT.
====================================================================================================================
TELEGRAM: https://t.me/conan97zhang
INSTAGRAM: https://instagram.com/conan97zhang
@ Curriculum Development Team, Cyber Youth SIngapore (CYS)