Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adamff-dev/esp8266_wifi_captive_portal_2.0
:key: WiFi captive portal for ESP8266 (Fake sign in)
https://github.com/adamff-dev/esp8266_wifi_captive_portal_2.0
esp8266 fake node-mcu sign-in wifi-captive-portal
Last synced: about 15 hours ago
JSON representation
:key: WiFi captive portal for ESP8266 (Fake sign in)
- Host: GitHub
- URL: https://github.com/adamff-dev/esp8266_wifi_captive_portal_2.0
- Owner: adamff-dev
- Created: 2019-08-25T13:25:14.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-23T17:18:07.000Z (7 months ago)
- Last Synced: 2024-05-21T01:42:28.963Z (6 months ago)
- Topics: esp8266, fake, node-mcu, sign-in, wifi-captive-portal
- Language: C++
- Homepage:
- Size: 669 KB
- Stars: 261
- Watchers: 11
- Forks: 64
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ESP8266 WiFi Captive Portal 2.0
## Disclaimer
This project is for testing and educational purposes. Use it only against your own networks and devices. I don't take any responsibility for what you do with this program.## About this project
WiFi captive portal for the NodeMCU (ESP8266 Module) with DNS spoofing. It asks the user for an email and a password for a fake sign in, in order to "get connected to the internet".The built-in LED will blink 5 times when some credentials are posted.
Warning! Your saved credentials will disappear when you restart/power off the ESP8266.
Note: If you want to see the stored credetials go to "**http**://yourcurrentwebsite.com/creds" or "**172.0.0.1**/creds"
# Screenshots
172.0.0.1/index
172.0.0.1/post
172.0.0.1/creds
# Installation (ESP8266 Flasher - Easy way)
1. Download ESP8266 Flasher.
2. Download the release.bin file.
3. Open the ESP8266 Flasher and select the Node MCU port
4. Then, go to the config tab and select the .bin file you've just downloaded.
5. Finally, go back to the first tab and press "Flash"
6. Your Node MCU is ready!
# Installation (Arduino IDE)
1. Open your Arduino IDE and go to "File -> Preferences -> Boards Manager URLs" and paste the following link:
``http://arduino.esp8266.com/stable/package_esp8266com_index.json``
2. Go to "Tools -> Board -> Boards Manager", search "esp8266" and install esp8266
3. Go to "Tools -> Board" and select you board"
4. Download and open the sketch "ESP8266_WiFi_Captive_Portal_2.0.ino"
5. You can optionally change some parameters like the SSID name and texts of the page like title, subtitle, text body...
6. Upload the code into your board.
7. You are done!