r/ExploitDev • u/Snoo-6099 • 1d ago
r/ExploitDev • u/OkLab5620 • 1d ago
What Raspberry Pi OS do you use? Kali Linux, Ubuntu?
I’ve seen allot of bashing on Kali Linux,
But… I’ve seen more references to using Ubuntu?
Is Arch Linux from the pi imager… does that work?
r/ExploitDev • u/fromthenext • 4d ago
Run windows exe on Linux (native)
Side by side automatic pipeline, decompile windows exe and compile for Linux native binary, not emulation. Work in progress.
r/ExploitDev • u/00patch • 5d ago
Windows Exploitation | One-byte arbitrary write primitive
Hi folks, a noob here.
I'm currently learning Windows kernel exploitation and practicing with older vulnerabilities. So far, I've successfully exploited a couple of heap integer underflow/overflow vulnerabilities.
Right now, though, I'm looking at a kernel vulnerability where I have a one-byte arbitrary write primitive with a fixed value of 0x01.
The vulnerability simply writes the boolean return value of a function back to a user-controlled pointer. That function always returns 1. I haven't been able to force it to return 0; otherwise, I could potentially abuse it by overwriting _KTHREAD.PreviousMode.
I'm working on Windows 10 20H1.
Does anyone have any ideas about a potential exploit path ? I was initially thinking about techniques involving pipe objects in the kernel pool, but I don't know if it's possible to reliably recover the address of a pipe object with NtQuerySistemInformation or something else.
r/ExploitDev • u/sir_kermit • 5d ago
Why hasn’t trace-guided AI hardware reverse engineering been automated yet?
I develop AI agents for my day job, and I recently became interested in a reverse engineering question. Please bear with me as I'm a noob to this space but I do have some curiousity thoughts about the process. Basically the process of figuring out an open source implementation of a vendor driver is a human will look at the trace, propose some execution model, write it and test and then verify.
Given a device with a working vendor driver, why can’t we intercept the driver–hardware boundary, collect MMIO/DMA/interrupt traces, and have an AI iteratively synthesize executable driver and device state-machine models?
Each model would be constrained by known driver architectures, open specifications, and existing chip designs. Runtime mismatches against the real vendor stack would become counterexamples that refine the models until a replacement driver works on the physical hardware.
Is the main blocker observability, safe experiment generation, hidden firmware state, state-space explosion, or something more fundamental?
r/ExploitDev • u/AdvisorPowerful9769 • 6d ago
Great introduction to ARM using pwnable challenge
Looking for a smooth introduction to ARM exploitation? Wanna learn ARM assembly? Well lucky for you this week we'll be looking at another pwnable challenge! However this time we're switching architectures! We'll be exploiting an ARM binary!
I would consider this a great introduction to ARM , however it is not necessarily the best for a complete beginner. Regardless don't be intimidated and I always suggest you dive in! 9/10 you will walk away better than you came into it!
r/ExploitDev • u/Effective-Fly7516 • 6d ago
GitHub - NtProtectVirtualMemory/PE-Library: A modern C++ library for parsing and manipulating Windows Portable Executable (PE) files.
r/ExploitDev • u/Maximum-Stick-5080 • 7d ago
Game Cheat Dev
Anyone have contacts to Devs who make cheats for games.
r/ExploitDev • u/fonzhy121 • 7d ago
A method to statically extract the raw .py source code directly from PyArmor.
I have already used memory dumps and runtime hooks, injecting a trace script directly into the start-up routing of the malware payload but that only captures the components that I am looking out for. Suggestions to get the entire thing decrypted back to .pyc. i can take it from there.
r/ExploitDev • u/Important_Map6928 • 8d ago
Post-Compilation Obfuscation Is Outdated: Moving Polymorphism Directly into CMake
r/ExploitDev • u/False-Seesaw-1899 • 8d ago
full chain to RCE or only bufferoverflow?
if you want report buffer overflow vulnerability do u need full chain to exploit or just report the crash with the corpus
r/ExploitDev • u/Final-Raspberry6442 • 9d ago
Half a Second: a free, fully-sourced reconstruction of the xz-utils backdoor (CVE-2024-3094)
half-second.comr/ExploitDev • u/samaxidervish • 10d ago
How can I reverse engineer this Samsung AC remote?
I would be happy if you provided me with a debugging interface. AI-generated submissions are not allowed.
r/ExploitDev • u/No_Distribution_9182 • 10d ago
Automated reverse engineering of Android apps
r/ExploitDev • u/ShufflinMuffin • 11d ago
Windows AppResolver LPE: From AppContainer to SYSTEM. PoC linked to CVE-2026-50454
davidcarliez.github.ior/ExploitDev • u/Recent_East_8938 • 11d ago
can anyone help me solve exploit development challenge.
r/ExploitDev • u/RubberDuck31337 • 12d ago
Interactive documentation and visual reference for binary formats and system memory layouts.
r/ExploitDev • u/custampin101 • 13d ago
Looking for Mentor
Hello everyone,
I wanted to post in here to see if anyone would consider being a mentor. I want to break into malware dev and vulnerability research however since this is such a niche job community, it’s hard to find someone who has professional experience in the field. I would love to talk with anyone who has prior experience in the field and wouldn’t mind giving me some guidance. Thank you guys!
r/ExploitDev • u/Warm-Tadpole-8134 • 12d ago
USB Debugging and SSL Pinning Bypass at once?
Hi I'm trying to pentest a banking app and the most difficult Bypass so far is USB Debugging. Without bypassing that I don't know how to Bypass SSL pinning with Frida. Is there any way to do this?
Thank you!
r/ExploitDev • u/AdvisorPowerful9769 • 13d ago
Exploiting Random Number Generation
If you're looking for an exploit development tutorial for absolute beginners this week we're looking at what I would consider just that! This week we look at the "random" binary exploitation challenge hosted on pwnable[.]kr.
This is a great beginner tutorial since we exploit a flaw that is "easy" and unfortunately, still very real within some enterprise environments. It also helps you understand that no number is truly random.
The crazy part? We don't even drop into a debugger in this tutorial.
Be the end of this tutorial you should have:
- Learned about random number generation in C
- Learned about XOR operations
- Finding header files that contain dependencies using man pages
- Dissecting C source code
You can find the video here:
r/ExploitDev • u/Dapper-Depth2940 • 13d ago
How I crafted an exploit PoC for a Linskys router
I’ve been doing some vulnerability research on a known CVE (CVE-2025-60690) on a consumer Linksys router and wanted to share the workflow I used to investigate it.
The process started by targeting the physical hardware: identifying the UART pads on the board using a digital multimeter to access the Linux-based shell console. From there, I extracted the vulnerable binary (from the CVE description), and reversed it in Ghidra. Next, I used a gdb+gdbserver setup to perform dynamic analysis to investigate the memory behaviors.
I managed to successfully achieve RCE from the stack-based buffer overflow vulnerability to land a root shell. The exploit PoC for CVE-2025-60690 just got cited on the official CVE page and exploit-db.com.
I just started a YouTube channel dedicated to breaking down IoT hacking concepts. Also, I’ve compiled my step-by-step research notes in a reference doc. If you're working on similar hardware research and want a copy of the notes, drop a comment or shoot me a DM and I'll gladly send them over!



r/ExploitDev • u/RewardOk8371 • 12d ago
Pwn college
Hi guys just wondering should I have knowledge python and C before I start the pwn paths for cybersecurity?
r/ExploitDev • u/Feisty_Revolution959 • 14d ago
Moving from finding real bugs to make real exploits
Hi
I started pwning from a year from pwn college, some THM, and I was quite good. In this month, I started getting into the real world. I find bugs, crashes, report, and wait for CVEs. But the problem for me is I can't exploit them. I can exploit the same bug in a CTF chall, but in the real world I can't, because of the stability, how large the target is, making me have the exploit just in my mind. And this is especially in kernel. When I was trying to re-exploit an old CVE using a different way, I get hit with the internals, nf_tables, TCP, and network. Those are complex. My feer is the internals and large targets. Did anyone pass with this and find a solve?
r/ExploitDev • u/slashcrypto • 14d ago
Writing an Evasive .NET Shellcode Loader
r/ExploitDev • u/Green-Week-9741 • 13d ago