This is for easily flashing Marauder on an ESP32 or WiFi Devboard for a Flipper Zero!
You have two prerequisites.
You must install Git for Windows from here.
If you are flashing an ESP32 board, you need to install the driver from here in order for your device to be recognized
- Step 0 only has to be ran once. (That doesn't mean it's okay to skip it unless you're running it again after having just used it)
- run
pip3 install -r requirements.txt
. - Press and hold the
BOOT
button on the module - While still holding
BOOT
, connect the devboard or ESP32 board via USB. - Press and release the
RESET
button. - Release the
BOOT
button. - run
python3 EasyInstall.py
. - Select the option of what you want to do
- Important note: You may need to run this script with
sudo
or as Administrator in Windows
You can find it here in UberGuidoZ's repo
This script pulls all of its resources from the proper Github repositories in order to make sure you are up-to-date.
The only dependencies it does not get by itself are the required Python modules and Windows tools.
This script should work on most devices that can run Python 3 and can access serial ports via USB.
Thanks to Marauder update v0.10.2 and Marauder Companion Flipper Zero app fork/update from tcpassos PCAPs can now be directly saved to your Flipper Zero's SD Card directly!
- Flipper Zero WiFi Devboard
- ESP32-S2 (The ESP32 chip that is on the WiFi Devboard)
- ESP32-S2-WROVER
- ESP32-WROOM
- ESP32-WROOM D1 Mini
- ESP32-S3
ESP32 -> Flipper Zero
TX0 -> RX
RX0 -> TX
GND -> GND
3v3 -> 3v3
There are now optional parameters
-h
or--help
- Show help-s
or--serialport
For example, if you have a device you know is on/dev/ttyUSB0
, you could specify it withpython3 EasyInstall.py -s /dev/ttyUSB0
- Using this option will skip automatic detection of the serial port and will not try to identify the device
- By using this option, you accept full responsibility in the event that you brick your device and understand that I can't help you fix it
Here are some steps to try:
- Ensure you have followed the steps above and installed any necessary prerequisites
- Check that your computer can see the device. In Linux, run
lsusb
, on Mac runsystem_profiler SPUSBDataType
, on Windows, open your Device Manager and look for it - Try a different cable
- Try a different USB port
- Check your permissions. On Linux, you may have to change ownership of the serial port, for example, /dev/ttyUSB0 is typically owned by root, so you may need to run something like
chown user:group /dev/ttyUSB0
- If you're using Windows, don't use Git Bash, it doesn't work well with this script. Instead, use Powershell, Windows Terminal, or even CMD
- Code cleanup.
- Add more chip compatibility.
- Attempt to accommodate more boards that can be used with Marauder
Disclaimer: Includes Acknowledgements from the above linked repo from UberGuidoz as this wouldn't exist without the original project
- justcallmekoko for the AWESOME work in developing Marauder and porting it to the Flipper.
- 0xchocolate for the Marauder companion plugin (now in Unleashed and RogueMaster.)
- Frog For initial scripting under the Wifi Pentest Tool and inspiring the idea.
- ImprovingRigmarole Initial (and continued) scripting of the batch Windows Marauder flasher and lots of testing.
- UberGuidoZ Tweaking/Automating Frog's original, continued scripting, development, and testing.
- L0rd_K0nda from the Unleashed Flipper Zero Discord for testing this script for me
- SkeletonMan Creating this Python flasher in order to try to make a multi-os flasher since the Batch script obviously could not run on Linux or Mac OS X
- CorbanR Forking and fixing instructions and adding a requirement needed for Mac OS X
- dchalm Forking and fixing mistakes I should have noticed. Thank you!
- Scorp Compiling needed bins to be able to flash to ESP32-WROOM
- jacklythgoee For getting a knockoff ESP32-WROOM and giving me info to be able to try to detect it so it could be flashed.
- Der Skythe For fixing extra quotes I added without noticing and his awesome work on Flipper Zero Firmware
- seeker7r4c3r For adding the VID of the DrB0rk S3 Multiboard
- aafksab For fixing the Windows bug with the update option that was confusing me