/pwnagotchi-rover

Transform your pwnagotchi sidekick into a cyber deck rover!

Primary LanguagePython

Pwnagotchi Rover

tinySetup1

Transform your pwnagotchi sidekick into a cyber deck rover! This project is all about DIY fun, where we're shaking up the Pwnagotchi game by throwing it together with a cyber deck on wheels. Let's even incorporate ChatGPT into the mix, turning your rover into an intelligent conversational companion.

Remember to use your Pwnagotchi responsibly and in compliance with ethical standards and legal regulations. Happy hacking!

Bill of Materials

Amazon links:

Installations

  1. OS install:

    • Raspberry Pi Zero WH - Pwnagotchi
    • Raspberry Pi 3 - Pwnagotchi
    • Raspberry Pi 4 / 5 - Your preferred OS.
      (We went with Pi OS Lite 64-bit)
  2. Install hashcat on Raspberry Pi 4:

    sudo apt update && sudo apt upgrade -y
    sudo apt install hashcat -y
    sudo apt install hcxtools -y
    

    Benchmark:

    hashcat -m 22000 --benchmark
    

    Hashcat Cracking:
    More info

  3. Install 3.5-inch display Driver (on Raspberry Pi 4)

    sudo rm -rf LCD-show
    git clone https://github.com/goodtft/LCD-show.git
    chmod -R 755 LCD-show
    cd LCD-show/
    sudo ./LCD35-show
    

    (if you want to revert back to HDMI)

    cd LCD-show/
    sudo ./LCD-hdmi
    

    More info

  4. Install USB Wi-Fi adapter1 Driver (any or both Raspberry Pis)

    sudo apt update
    sudo apt install raspberrypi-kernel-headers
    git clone https://github.com/aircrack-ng/rtl8812au.git
    cd rtl8812au
    sudo make
    sudo make install
    

    More info

  5. Install Camera Driver (if not using Raspberry Pi Camera):
    Camera Drivers

    • Use these commands to use camera:
    libcamera-still -o picture.jpg          # Take a picture
    libcamera-vid -t 10000 -o video.H264    # Take 10 sec video
    libcamera-vid -t 0 --inline --listen -o tcp://0.0.0.0:8080    # Stream
    


Note: The provided links are amazon affiliate links, and if you make a purchase through them, I may earn a small commission at no additional cost to you.