Politician 1.0.0
WiFi Auditing Library for ESP32
Loading...
Searching...
No Matches
PoliticianProbe.h File Reference

Opt-in SSID wordlist for hidden network discovery via directed probe requests. More...

#include <Arduino.h>
+ Include dependency graph for PoliticianProbe.h:

Go to the source code of this file.

Namespaces

namespace  politician
 
namespace  politician::probe
 

Variables

static const char *const WORDLIST[] politician::probe::PROGMEM
 
static const uint8_t politician::probe::WORDLIST_COUNT = (uint8_t)(sizeof(WORDLIST) / sizeof(WORDLIST[0]))
 

Detailed Description

Opt-in SSID wordlist for hidden network discovery via directed probe requests.

Include this header and pass the wordlist to the engine:

using namespace politician::probe;
// Enable timed probing and load wordlist
cfg.probe_hidden_interval_ms = 5000;
engine.begin(cfg);
engine.setProbeWordlist(WORDLIST, WORDLIST_COUNT);
Opt-in SSID wordlist for hidden network discovery via directed probe requests.
Politician engine
Definition main.cpp:6

When a hidden AP is seen, the engine cycles one SSID from the wordlist per interval (per AP). Each AP keeps its own position, so no word is ever skipped. SSIDs are stored in flash (.rodata) and add ~1–2KB to binary size.

Definition in file PoliticianProbe.h.