Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /********* Pleasedontcode.com **********
- Pleasedontcode thanks you for automatic code generation! Enjoy your code!
- - Terms and Conditions:
- You have a non-exclusive, revocable, worldwide, royalty-free license
- for personal and commercial use. Attribution is optional; modifications
- are allowed, but you're responsible for code maintenance. We're not
- liable for any loss or damage. For full terms,
- please visit pleasedontcode.com/termsandconditions.
- - Project: "Channel Disruption"
- - Source Code NOT compiled for: ESP32 DevKit V1
- - Source Code created on: 2024-11-12 10:43:42
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* The project aims to develop an Arduino-based */
- /* system that utilizes connected components for */
- /* automated tasks, ensuring efficient resource */
- /* management and user-friendly interaction. */
- /****** END SYSTEM REQUIREMENTS *****/
- /* START CODE */
- /****** DEFINITION OF LIBRARIES *****/
- #include <WiFi.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- // Wi-Fi configuration parameters
- const char* ssid = "your_SSID"; // Replace with your network SSID
- const char* password = "your_PASSWORD"; // Replace with your network password
- void setup(void)
- {
- // Initialize serial communication
- Serial.begin(115200);
- WiFi.mode(WIFI_STA);
- delay(100);
- Serial.println("Starting Wi-Fi jammer...");
- // Connect to Wi-Fi
- WiFi.begin(ssid, password);
- while (WiFi.status() != WL_CONNECTED) {
- delay(1000);
- Serial.println("Connecting to WiFi...");
- }
- Serial.println("Connected to WiFi");
- // The channel you want to disrupt
- int channel = 6; // Change to any channel from 1-13 as needed
- WiFi.disconnect();
- wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
- esp_wifi_init(&cfg);
- esp_wifi_set_country(&wifi_country_t{"US", 1, 13, WIFI_COUNTRY_POLICY_MANUAL});
- esp_wifi_set_channel(channel, WIFI_SECOND_CHAN_NONE);
- Serial.println("Jamming started on channel " + String(channel));
- }
- void loop(void)
- {
- // This loop sends de-authentication packets in the background
- // Note: The actual implementation for sending de-authentication packets is missing.
- // You would need to implement that functionality here.
- }
- /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement