-
-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from bmorcelli/main
Many improvements
- Loading branch information
Showing
27 changed files
with
1,631 additions
and
269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"idf.portWin": "COM4" | ||
"idf.portWin": "COM3" | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#include <WiFi.h> | ||
#include <DNSServer.h> | ||
#include "AsyncTCP.h" | ||
#include "ESPAsyncWebServer.h" | ||
#include <SD.h> | ||
#include <SPI.h> | ||
|
||
// function defaults | ||
|
||
void startEvilPortal(String tssid = "", uint8_t channel = 6, bool deauth = false); | ||
|
||
void chooseHtml(bool def = true); | ||
|
||
String getHtmlContents(String body); | ||
|
||
String creds_GET(); | ||
|
||
String index_GET(); | ||
|
||
String clear_GET(); | ||
|
||
String ssid_GET(); | ||
|
||
String ssid_POST(); | ||
|
||
void saveToCSV(const String &filename, const String &csvLine); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.