You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: applications/external/evil_portal/README.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,10 +8,19 @@ An evil captive portal Wi-Fi access point using the Flipper Zero and Wi-Fi dev b
8
8
9
9
This project will turn your Wi-Fi dev board into an open access point. When users try to connect to this access point they will be served a fake login screen. User credentials are sent to the Flipper and logged on the SD card.
10
10
11
+
## Portals
12
+
13
+
The portal I initially provided is just an (ugly) example, please check out the [community portals folder](https://github.com/bigbrodude6119/flipper-zero-evil-portal/tree/main/portals) for more portals.
14
+
Contributors are welcome and very much needed!
15
+
16
+
Users, remember to rename the new portal as `index.html` when you drag it on the flipper SD card.
17
+
11
18
## Disclaimer
12
19
13
20
I am not a C developer and I am using this project as a way to learn more about esp32, flipper zero and, C programming.
14
21
22
+
**Contributors are welcome!** Please feel free to open a PR at any time.
Do you have a great portal that you would like to share? Please submit a pull request placing your portal in this folder. It'd be great to see what the community can come up with! Please also add yourself to this readme so your contribution is recognized.
4
+
5
+
## Limitations
6
+
7
+
The ESP32 access point will not have internet access while hosting the portal, as a result there cannot be any requests for stylesheets or javascript such as CDNs for bootstrap and JQuery.
8
+
9
+
All HTML/CSS/JS must be in a single HTML file. This is due to the fact that the index.html kept in the memory of the esp32.
10
+
11
+
There is a 20k character limit for each HTML file.
12
+
13
+
The form data must be sent to the `/get` endpoint as a GET request with the params `email` & `password`. You can put any information you want in these two fields. For example the `email` param can contain a username instead, just keep the param name as `email`.
14
+
15
+
Please check the example `index.html` to get an idea of what this has to look like.
16
+
17
+
18
+
## Contributors
19
+
20
+
Thank you so much to the following contributors for providing awesome portals.
21
+
22
+
-`Google_Modern.html` by [roshanravan](https://github.com/roshanravan)
0 commit comments