first commit

This commit is contained in:
TemanSv1n
2025-12-02 18:52:45 +03:00
commit bdda481bff
202 changed files with 73723 additions and 0 deletions

25
DeautherX/EvilTwin.h Normal file
View File

@@ -0,0 +1,25 @@
#ifndef EVIL_TWIN_H
#define EVIL_TWIN_H
#include <Arduino.h> // Add this line to include the necessary header for String
#include "ESP8266WiFi.h"
#include "DNSServer.h"
#include "ESP8266WebServer.h"
class EvilTwin {
public:
static String ssidT;
static String pass;
static String passTesting;
static void start(const char* ap);
static void stop();
static String getpass();
static String getpassTesting();
static bool isRunning();
static void update();
};
#endif