HakByte: Create a $15 WarDriving Rig to Log WiFi Data w/ the ESP8266

Поделиться
HTML-код
  • Опубликовано: 27 авг 2024

Комментарии • 74

  • @nalsai
    @nalsai 2 года назад +16

    Amazing, I've been planning to do this for a month and already bought the parts but was too lazy to set it up. Now I'm going to finally give it a go

    • @rootshell101
      @rootshell101 2 года назад

      same

    • @nalsai
      @nalsai 2 года назад

      @Faizan Online Yes, that works too. You just need to connect the modules a bit differently and maybe change the pins in the code

  • @venus334
    @venus334 2 года назад +7

    Been loving the videos, Keep it up Guys!!

  • @MegaMrUnbelievable
    @MegaMrUnbelievable Год назад +1

    Yo, that idea with drone + capturing hanshakes and pmkids by dropping clients of networks.
    I can't say no to subscribing this channel B)

  • @TheRealZamFit
    @TheRealZamFit 2 года назад +3

    A new thumbnail…. A new fancy prestidigitation.

  • @adamc8857
    @adamc8857 2 года назад +3

    Love the videos you make, well done!

  • @-_IT_-
    @-_IT_- 2 года назад +6

    I was doing this years ago with my laptop, backtrack, and alfa!

  • @pythoneatssquirrel
    @pythoneatssquirrel 2 года назад +1

    I have managed to make it work with D1 mini without a display or GPS. It seems that it doesn't work if your GPS is faulty(obviously) so check if your GPS module blinks when wired to 3V or 5V. Apologies for all the chum. Also, Alex is a great guy, very kind and quick responsive.

    • @johnnybio1
      @johnnybio1 2 года назад

      My GPS blinks but never logs any thing besides the header what did you do to have it just log AP?

  • @voxtelnismo
    @voxtelnismo Месяц назад

    "Update some shit" - solid push message.

  • @101rocketguy
    @101rocketguy 2 года назад +3

    does anyone have a working code the one Alex gave doesn't work

  • @surya.k9885
    @surya.k9885 2 года назад +5

    loving the videos,

  • @jmr
    @jmr 2 года назад +3

    You finally forcing me to buy an SD shield.

  • @RAZREXE
    @RAZREXE 2 года назад

    great project idea, I'd try it this winter

  • @c0ri
    @c0ri 2 года назад +1

    cool setup thanks for sharing alex

  • @BlackFalconElectronics
    @BlackFalconElectronics 2 года назад +2

    Idk if you included it without mention, but have an alarm that sounds if GPS signal is lost. Include a filter that only saves data if the GPS values are correct and not saving whatever data the GPS sensor detects. This avoids saving the default GPS values, which are incredibly incorrect. Or incomplete data which tends to occur upon startup.

  • @AlanCoote
    @AlanCoote 2 года назад +6

    Don't expect the code to work without a lot of editing - missing Libs, Refs, etc. And if you don't need / have the display, the code needs a lot of hacking - Seriously you'd be better off using the code as a rough example and rolling your own from scratch.

    • @FuzzThePiGuy
      @FuzzThePiGuy 2 года назад +4

      The code is a issue for sure. Glad that I’m not the only one that noticed it.
      The TinyGPS “Which wasn’t to bad to fix”
      The Date and Time is a issue
      The screen is a issue “but I fixed that problem by changing the screen size”

    • @pythoneatssquirrel
      @pythoneatssquirrel 2 года назад

      @@FuzzThePiGuy do you have an example which works without a display?

    • @FuzzThePiGuy
      @FuzzThePiGuy 2 года назад +1

      @@pythoneatssquirrel Not at the moment. I worked on it for a while and still had issues.

    • @pythoneatssquirrel
      @pythoneatssquirrel 2 года назад +2

      @@FuzzThePiGuy managed to make it write on sd, but only the header row...Damn this code

    • @chazstone6744
      @chazstone6744 2 года назад

      Does anyone have a good working version? I'm in the same boat where it only writes the header row.

  • @devendrakanade218
    @devendrakanade218 2 года назад +1

    What are alternative components to esp8266 D1 mini and D1 mini sd logger

  • @RobertLeeMonterroso
    @RobertLeeMonterroso 2 года назад +1

    Excellent

  • @TheRealZamFit
    @TheRealZamFit 2 года назад +4

    Would be fun to do this with an ESP32 D1 mini and use an external GPS source (like an Android phone) in dense areas where GPS lock is impractical.

    • @AlexLynd
      @AlexLynd 2 года назад +1

      Hell yea! I was hoping to do a proof of concept bluetooth wardrive for an episode with the ESP32, stay posted :)

    • @TheRealZamFit
      @TheRealZamFit 2 года назад +1

      @@AlexLynd I’ve got the hardware and the perfect testing venue

  • @jaytboricua12
    @jaytboricua12 2 года назад +1

    Does it log probes and beacons, or just beacons? Love the videos. What's next, ESP32 Bluetooth and Wi-Fi logging?

  • @kermitinmountain6371
    @kermitinmountain6371 11 месяцев назад

    Alex, I had some thoughts, instead of using the mini sd card, is there a way to upload wifi wireless from 8266 to my tablets? I was doing the projects like yours from time to time. Taking sd out and upload to my computer seems to be a little hassle, but upload from 8266 wireless to tablet can be a less hassle without sd card. Do you think it is a good idea?

  • @brandnewman4943
    @brandnewman4943 Год назад +1

    Great work, but the arduino file on your github doesnt work unless you have a display which you did not mention how to add that... It would be awesome if you could add the arduino file that is for the displayless model! also hope i dont sound like im complaining im just having troubles and im very excited to try this!

  • @user-le9zv9ow2c
    @user-le9zv9ow2c 2 года назад +1

    Hello! It is possible to implement a similar project, but regarding the MAC addresses of user devices? And maybe a separate project for bluetooth devices. it would be very interesting to see the result. thank you.

  • @playgroundphotos
    @playgroundphotos 2 года назад

    The code does not properly find previously entered mac addresses and writes endless lines of repetitious csv entries of the same AP over and over.
    in here somewhere...
    int isOnFile(String mac) {
    File netFile = SD.open(logFileName);
    String currentNetwork;
    if (netFile) {
    while (netFile.available()) {
    currentNetwork = netFile.readStringUntil('
    ');
    if (currentNetwork.indexOf(mac) < 0) {
    netFile.close();
    return currentNetwork.indexOf(mac);

  • @BillinSD
    @BillinSD 2 года назад

    Successfully built one with a WeMos D1 Mini Pro V3.0 and s few library tweaks. Works great!

    • @pythoneatssquirrel
      @pythoneatssquirrel 2 года назад

      Can you share the modified code? Mine don't write on the sd

  • @johnnybio1
    @johnnybio1 2 года назад

    im having an isusse with the adafruit_ssd1306.h error for wrong screen height did you ever encounter this issue

    • @johnnybio1
      @johnnybio1 2 года назад

      Hahah just figured it out in the libery AdaFruit_SSD1306.h you have to remove the // for the 128 64 line and comment out the 128 32 line

  • @1998Tread
    @1998Tread 2 года назад

    Anyone have issues with it not showing up in the port option under tools. About 6:14 of the video.

  • @paulmorrey733
    @paulmorrey733 2 года назад

    Thanks

  • @bluegizmo1983
    @bluegizmo1983 2 года назад

    Hmm, interesting. I might modify this code to work with an ESP32. I have one that already has an ePaper display and sdcard reader built into it (the LILYGO TTGO T5), just have to add that gps module you used.

  • @honorvirtue2904
    @honorvirtue2904 2 года назад

    Excellent 💥🔥🔥🔥

  • @bahaiwebsites
    @bahaiwebsites 2 года назад

    Love it

  • @shepkohler6399
    @shepkohler6399 2 года назад

    A Treo JB quick weld an a Pringles can. It pays to have been born before AOL. 😂

  • @idkidk1774
    @idkidk1774 2 года назад +2

    how can a 16 year old channel have less than a million subscribers😕😕!you are literally as old as me!

    • @tjwoosta
      @tjwoosta 2 года назад +1

      Sooner or later you will see that the masses of humanity are not very smart and having their attention is no indication of greatness.

    • @_BangDroid_
      @_BangDroid_ 2 года назад

      @@tjwoosta Not only that but sub counts and views are complete BS

  • @ficeto
    @ficeto 2 года назад

    [OT] you should update your ESP32 json link. it's a bit outdated and you will not get the new releases ;)

  • @0x0xDEADBEEF
    @0x0xDEADBEEF 2 года назад +7

    great video but uh, this is _not_ $15 :D

    • @fakename7423
      @fakename7423 2 года назад +2

      Yeah all the links are more expensive than $15

    • @darkmtb84
      @darkmtb84 2 года назад +1

      For esp8266? Your Google fu is not strong then

    • @james6794
      @james6794 2 года назад

      @@darkmtb84 no the esp8266 + gps + sd card logger

    • @AlexLynd
      @AlexLynd 2 года назад +1

      Hey! I updated the links in the description, sourcing components from aliexpress comes out under $10 :)

    • @AlexLynd
      @AlexLynd 2 года назад

      @@fakename7423 I updated the product links to include aliexpress as well as Amazon, but the cost comes out around $10

  • @MexieMex
    @MexieMex 2 года назад +1

    I'm lazy, I just use my phone for this LOL

  • @adistef
    @adistef 2 года назад

    why would you assume that every person keeps his Wifi, NFC, Bluetooth, Location, Cellular on at all times? What if the stocker turns his Wifi off? (dramatic)Dam dam dam......

  • @albertpratt4999
    @albertpratt4999 2 года назад

    But What if a live in a Faraday cage?

  • @alphadexxa
    @alphadexxa 2 года назад +2

    Or you could use your phone with Wigle WiFi

    • @VinceOConnor
      @VinceOConnor 2 года назад

      With an Android phone, yes, but not with an iPhone.

  • @zoenagy9458
    @zoenagy9458 Год назад

    or just use your android

  • @AK47z
    @AK47z 2 года назад

    Whats your email I want to show you something.

  • @nickgood3998
    @nickgood3998 2 года назад

    Is this linux?

    • @-_IT_-
      @-_IT_- 2 года назад +1

      His computer is, but you can run Arduino on windows

  • @flavienruffel9534
    @flavienruffel9534 2 года назад +1

    or use your phone for free ;)

  • @funnymeme7034
    @funnymeme7034 2 года назад +1

    First comment 😅

  • @user-qg8cs1yh4c
    @user-qg8cs1yh4c 2 года назад

    I'm 1-st!!!)))

  • @devildevil3328
    @devildevil3328 2 года назад

    1st comment dome

  • @nimr0d85
    @nimr0d85 2 года назад

    War driving is so 2005...

  • @Biped
    @Biped 2 года назад +1

    his face in the thumbnails always creeps me out.

  • @gyarugo86
    @gyarugo86 2 года назад +1

    Hi All. Does anyone from the Hak5 community know if the code will work with the NODE MCU ESP8266? It looks like the GPS module can run on 3.3V and the pinout seems to be identical. Any surprises in the code?