-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
194 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
![Header](Images/esppt.png) | ||
<br> | ||
|
||
## 🌟 Flash Tool Fully working as of 04/05/24 🌟 | ||
|
||
<b>Thought I'd make it easy for those wanting to try out "ESP32 Wi-Fi Penetration Tool" by <a href="https://github.com/risinek/esp32-wifi-penetration-tool">"risinek"</a>. This is a universal tool for ESP32 boards and it allows implementing various Wi-Fi attacks. | ||
### More info about "ESP32 Wi-Fi Penetration Tool" can be located <a href="https://github.com/risinek/esp32-wifi-penetration-tool">HERE</a>. | ||
<br> | ||
<br> | ||
I have also designed a case and lid that can be 3d printed and it houses a small lipo battery, a usb/micro usb charger module salvaged from a portable powerpack, a esp32 wroom 32U with external antenna. <br> | ||
It's a simple parts list to put together and the parts do not take to long to print. I will be adding the files for printing soon.</b> | ||
|
||
## Pics of build | ||
![Outside](Images/Outside-1.jpg)![Inside](Images/Inside-1.jpg) | ||
<br> | ||
<hr> | ||
<br> | ||
|
||
## Simple Flash Method & Usage: | ||
1. Use the <a href=https://atomnft.github.io/ESP32-Wi-Fi-Penetration-Tool/flash0.html>ESP32 Wi-Fi Penetration Flasher Tool</a> in google chrome to flash the project onto ESP32 (DevKit or module) | ||
2. Once the flash is complete, unplug the ESP32 for 30 seconds. Plug the usb back in to power up ESP32. | ||
3. Management AP will display in your cell phone or pc/mac list of available wifi networks within 30 seconds of powering on the ESP32. | ||
4. Connect to this AP\ | ||
By default: | ||
*SSID:* `ManagementAP` and *password:* `mgmtadmin` | ||
5. In a browser like brave or chrome on cell phone open `192.168.4.1` and you should see a web client to configure and control tool like this: | ||
|
||
![Web client UI](Images/ui-img.png) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
|
||
<meta charset="utf-8" /> | ||
<title>ESP32 D1 Mini Marauder flash Tool</title> | ||
<img src="Images/flash-header.png" alt="Logo" class="logo"> | ||
<meta | ||
name="description" | ||
content="Easily allows users to install wifi marauder onto a (Purple) ESP32 D1 Mini." | ||
/> | ||
<meta name="viewport" content="width=device-width" /> | ||
<meta name="color-scheme" content="dark light" /> | ||
|
||
|
||
|
||
<style> | ||
body { | ||
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", | ||
Roboto, Ubuntu, sans-serif; | ||
padding: 0; | ||
margin: 0; | ||
line-height: 1.4; | ||
} | ||
.content { | ||
max-width: 600px; | ||
margin: 0 auto; | ||
padding: 12px; | ||
} | ||
h2 { | ||
margin-top: 2em; | ||
} | ||
h3 { | ||
margin-top: 1.5em; | ||
} | ||
a { | ||
color: #03a9f4; | ||
} | ||
.invisible { | ||
visibility: hidden; | ||
} | ||
.hidden { | ||
display: none; | ||
} | ||
esp-web-install-button[install-unsupported] { | ||
visibility: inherit; | ||
} | ||
.content pre { | ||
max-width: 100%; | ||
overflow-y: scroll; | ||
} | ||
.footer { | ||
margin-top: 24px; | ||
border-top: 1px solid #ccc; | ||
padding-top: 24px; | ||
text-align: center; | ||
} | ||
.footer .initiative { | ||
font-style: italic; | ||
margin-top: 16px; | ||
} | ||
table { | ||
border-spacing: 0; | ||
} | ||
td { | ||
padding: 8px; | ||
border-bottom: 1px solid #ccc; | ||
} | ||
.radios li { | ||
list-style: none; | ||
line-height: 2em; | ||
} | ||
.logo { | ||
max-width: 400px; | ||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
.wrapper { | ||
display: flex; | ||
justify-content: center; | ||
} | ||
.back1usb | ||
height: 18%; | ||
width: 20%; | ||
padding: 10px; | ||
text-align: center; | ||
} | ||
.back2usb | ||
height: 18%; | ||
width: 20%; | ||
padding: 10px; | ||
text-align: center; | ||
} | ||
@media (prefers-color-scheme: dark) { | ||
body { | ||
background-color: #333; | ||
color: #fff; | ||
} | ||
a { | ||
color: #58a6ff; | ||
} | ||
} | ||
</style> | ||
<script type="module" src="https://unpkg.com/[email protected]/dist/web/install-button.js?module"></script> | ||
</head> | ||
<body> | ||
|
||
|
||
<center> | ||
<div class="content"> | ||
<p>Select the "Flash" option and push connect.</p> | ||
<ul class="radios"> | ||
<li> | ||
<label><input type="radio" name="type" value="D1Mini" /> FLASH</label> | ||
</li> | ||
</ul> | ||
<p class="button-row" align="center"> | ||
<esp-web-install-button class="invisible"></esp-web-install-button> | ||
</p> | ||
</center> | ||
<div class="footer"> | ||
✨Flasher by <a href="https://github.com/ATOMNFT" | ||
>atomnft.eth</a | ||
> — | ||
Installer powered by <a href="https://esphome.github.io/esp-web-tools/">ESP Web Tools</a> 🛠️ | ||
|
||
<br> | ||
|
||
<script type="text/javascript" src="https://www.counters-free.net/count/fb2b"></script><br> | ||
<a href='http://www.freevisitorcounters.com'>more information</a> <script type='text/javascript' src='https://www.whomania.com/ctr?id=da87ad10ea80d4b00e56b1cc5a08f22f9f748ad1'></script> | ||
|
||
|
||
</div> | ||
<script> | ||
document.querySelectorAll('input[name="type"]').forEach(radio => | ||
radio.addEventListener("change", () => { | ||
const button = document.querySelector('esp-web-install-button'); | ||
button.manifest = `web/manifest_${radio.value}.json`; | ||
button.classList.remove('invisible'); | ||
} | ||
)); | ||
</script> | ||
</body> | ||
</html> |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "ESP32 D1 Mini Marauder", | ||
"builds": [ | ||
{ | ||
"chipFamily": "ESP32", | ||
"improv": false, | ||
"parts": [ | ||
{ "path": "bootloader.bin", "offset": 4096 }, | ||
{ "path": "partitions.bin", "offset": 32768 }, | ||
{ "path": "esp32_marauder_v0_13_8_20240219_flipper.bin", "offset": 65536 } | ||
] | ||
}, | ||
{ | ||
"chipFamily": "ESP8266", | ||
"parts": [ | ||
{ "path": "esp8266.bin", "offset": 0 } | ||
] | ||
} | ||
] | ||
} |
Binary file not shown.