├── Images
├── favicon.ico
├── flashlogo.png
├── flashbutton.png
├── mainheader.png
├── T-display-SD-Pin.png
└── Repolike.svg
├── portals
└── portals.7z
├── web
├── T-Display_Marauder_1.7.0.ino.bin
├── T-Display_Marauder_1.7.0.ino.bootloader.bin
├── T-Display_Marauder_1.7.0.ino.partitions.bin
└── manifest_T-Display_Marauder_1.7.0.json
├── manifest.json
├── .github
├── ISSUE_TEMPLATE
│ ├── config.yml
│ ├── feature_request.md
│ └── bug_report.md
├── FUNDING.yml
└── workflows
│ └── build_push.yml
├── README.md
└── flash0.html
/Images/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATOMNFT/Marauder-T-display-TTGO/HEAD/Images/favicon.ico
--------------------------------------------------------------------------------
/portals/portals.7z:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATOMNFT/Marauder-T-display-TTGO/HEAD/portals/portals.7z
--------------------------------------------------------------------------------
/Images/flashlogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATOMNFT/Marauder-T-display-TTGO/HEAD/Images/flashlogo.png
--------------------------------------------------------------------------------
/Images/flashbutton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATOMNFT/Marauder-T-display-TTGO/HEAD/Images/flashbutton.png
--------------------------------------------------------------------------------
/Images/mainheader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATOMNFT/Marauder-T-display-TTGO/HEAD/Images/mainheader.png
--------------------------------------------------------------------------------
/Images/T-display-SD-Pin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATOMNFT/Marauder-T-display-TTGO/HEAD/Images/T-display-SD-Pin.png
--------------------------------------------------------------------------------
/web/T-Display_Marauder_1.7.0.ino.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATOMNFT/Marauder-T-display-TTGO/HEAD/web/T-Display_Marauder_1.7.0.ino.bin
--------------------------------------------------------------------------------
/web/T-Display_Marauder_1.7.0.ino.bootloader.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATOMNFT/Marauder-T-display-TTGO/HEAD/web/T-Display_Marauder_1.7.0.ino.bootloader.bin
--------------------------------------------------------------------------------
/web/T-Display_Marauder_1.7.0.ino.partitions.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATOMNFT/Marauder-T-display-TTGO/HEAD/web/T-Display_Marauder_1.7.0.ino.partitions.bin
--------------------------------------------------------------------------------
/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "TTGO T-Display Marauder",
3 | "version": "1.7.2",
4 | "description": "ESP32 Marauder for TTGO T-Display.",
5 | "icon": "Images/tdisplay-icon.png"
6 | }
7 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/config.yml:
--------------------------------------------------------------------------------
1 | blank_issues_enabled: true
2 | contact_links:
3 | - name: Need help?
4 | url: https://discord.gg/w5JmasxvKA
5 | about: For any questions regarding troubleshooting or use of the Marauder firmware
--------------------------------------------------------------------------------
/web/manifest_T-Display_Marauder_1.7.0.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "T-Display Marauder v1.7.0",
3 | "builds": [
4 | {
5 | "chipFamily": "ESP32",
6 | "improv": false,
7 | "parts": [
8 | { "path": "T-Display_Marauder_1.7.0.ino.bootloader.bin", "offset": 4096 },
9 | { "path": "T-Display_Marauder_1.7.0.ino.partitions.bin", "offset": 32768 },
10 | { "path": "T-Display_Marauder_1.7.0.ino.bin", "offset": 65536 }
11 | ]
12 | },
13 | {
14 | "chipFamily": "ESP8266",
15 | "parts": [
16 | { "path": "esp8266.bin", "offset": 0 }
17 | ]
18 | }
19 | ]
20 | }
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_request.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Feature request
3 | about: Suggest an idea for this project
4 | title: ''
5 | labels: ''
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Is your feature request related to a problem? Please describe.**
11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12 |
13 | **Describe the solution you'd like**
14 | A clear and concise description of what you want to happen.
15 |
16 | **Describe alternatives you've considered**
17 | A clear and concise description of any alternative solutions or features you've considered.
18 |
19 | **Additional context**
20 | Add any other context or screenshots about the feature request here.
21 |
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: [justcallmekoko]# Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4 | patreon: # Replace with a single Patreon username
5 | open_collective: # Replace with a single Open Collective username
6 | ko_fi: # Replace with a single Ko-fi username
7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9 | liberapay: # Replace with a single Liberapay username
10 | issuehunt: # Replace with a single IssueHunt username
11 | otechie: # Replace with a single Otechie username
12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
13 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug_report.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Bug report
3 | about: Create a report to help us improve
4 | title: ''
5 | labels: ''
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Describe the bug**
11 | A clear and concise description of what the bug is.
12 |
13 | **To Reproduce**
14 | Steps to reproduce the behavior:
15 | 1. Go to '...'
16 | 2. Click on '....'
17 | 3. Scroll down to '....'
18 | 4. See error
19 |
20 | **Expected behavior**
21 | A clear and concise description of what you expected to happen.
22 |
23 | **Screenshots**
24 | If applicable, add screenshots to help explain your problem.
25 |
26 | **Marauder (please complete the following information if applicable):**
27 | - Firmware version: [e.g. v0.9.17]
28 | - Hardware version: [e.g. OG]
29 |
30 | **Desktop (please complete the following information if applicable):**
31 | - OS: [e.g. iOS]
32 | - Browser [e.g. chrome, safari]
33 | - Version [e.g. 22]
34 |
35 | **Smartphone (please complete the following information if applicable):**
36 | - Device: [e.g. iPhone6]
37 | - OS: [e.g. iOS8.1]
38 | - Browser [e.g. stock browser, safari]
39 | - Version [e.g. 22]
40 |
41 | **Additional context**
42 | Add any other context about the problem here.
43 |
--------------------------------------------------------------------------------
/Images/Repolike.svg:
--------------------------------------------------------------------------------
1 |
41 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | 
2 |
3 |
4 |
5 |
9 |
10 |
11 |
12 |
13 |
14 | ## ⬆ TTGO T-Display 1.14in Update Highlights 6/10/25 ⬆ Added New v1.7.0!
15 | * Added battery meter (Displayed in volts)
16 | * Added deep sleep function (Hold down scroll button 6 seconds)
17 | * Adjusted font size on statusbar
18 |
19 | ## 🐛 Bugs 🐛
20 | * Let me know if you find any
21 | *
22 |
23 | ---
24 |
25 | 📡 TTGO T-Display WiFi Marauder Fork 🚀
26 | A stunning fork of the WiFi Marauder suite, optimized for the TTGO T-Display!
27 | This version introduces exciting new features, bug fixes, and customizations for WiFi/Bluetooth offensive and defensive tasks. Perfect for hobbyists and security enthusiasts!
28 |
29 | Take your TTGO T-Display to the next level with these powerful updates! Contributions and feedback are welcome. 🎉
30 |
31 | ---
32 |
33 | # SD Wiring Diagram
34 | Here is a simple pic to explain wiring up a micro SD module.
35 | 
36 |
37 |
38 |
39 | > # 🛠️ **Device Compatibility**
40 | >
41 | > Successfully tested on:
42 | > - [T-display variant 1](https://a.co/d/aH2SvRw)
43 | > - [T-display variant 2](https://a.co/d/eFvFgLy)
44 |
45 |
46 |
47 | ## ⚡ Simple Flash Method ⚡
48 | * If you're not viewing this page in google chrome you should do so now by right clicking the button and copying the address and opening it with google chrome.
49 | * If you're already in chrome click the button to flash the project onto TTGO T-Display
50 |
51 | [](https://atomnft.github.io/Marauder-T-display-TTGO/flash0.html)
52 |
53 |
54 |
55 | ---
56 |
57 |
ESP32 Marauder Info
58 |
59 | # ESP32 Marauder
60 |
61 |
62 | A suite of WiFi/Bluetooth offensive and defensive tools for the ESP32
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 | # Getting Started
77 | Download the [latest release](https://github.com/justcallmekoko/ESP32Marauder/releases/latest) of the firmware.
78 |
79 | Check out the project [wiki](https://github.com/justcallmekoko/ESP32Marauder/wiki) for a full overview of the ESP32 Marauder
80 |
81 | # For Sale Now
82 | You can buy the ESP32 Marauder using [this link](https://www.tindie.com/products/justcallmekoko/esp32-marauder/)
83 |
84 |
85 |
--------------------------------------------------------------------------------
/flash0.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | T-Display Marauder Installer
6 |
7 |
8 |
9 |
10 |
11 |
90 |
91 |
92 |
93 |
94 |
95 | This utility is designed to flash the ESP32-Marauder onto a TTGO T-Display.
96 |
97 |
98 |
The T-Display Web Flasher
99 |
100 | Your gateway to effortlessly installing ESP32-Marauder firmware. Designed with a sleek web interface, it transforms
101 | firmware flashing into a fast, hassle-free experience, empowering your devices for cutting-edge network security
102 | and testing adventures.
103 |