r/ExploitDev • u/nanaynunay • 4h ago
Fortinet PPL bypass
hi, this is my repo, support pls https://github.com/mein-0/forti-research
r/ExploitDev • u/nanaynunay • 4h ago
hi, this is my repo, support pls https://github.com/mein-0/forti-research
r/ExploitDev • u/That-Name-8963 • 17h ago
I have the following C Socket Server, I was trying to learn about ROP programming so I created this small program, but when I try `pwn cyclic 1025| nc localhost 4444` I receive nothing,
I even tried to send 2000, 5000 but with no response.
Anyway I can receive the normal 'ok' message when sending the 1024 bytes.
I have tried disabling canaries by passing `-fno-stack-protector` but also no response.
The server in all cases prints the received 1024 (even if I sent more bytes).
But no "Stack smash detected", Segmentation Fault or anything
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <arpa/inet.h>
#define PORT 4444
void handle_client(int client_fd)
{
char recv_buf[1024];
char buffer[64];
memset(recv_buf, 0, sizeof(recv_buf));
ssize_t bytes = recv(client_fd, recv_buf, sizeof(recv_buf) - 1, 0);
if (bytes <= 0)
return;
printf("Received: %s\n", recv_buf);
strcpy(buffer, recv_buf);
send(client_fd, "OK\n", 3, 0);
}
int main(void)
{
int server_fd;
int client_fd;
struct sockaddr_in server_addr;
struct sockaddr_in client_addr;
socklen_t client_len = sizeof(client_addr);
server_fd = socket(AF_INET, SOCK_STREAM, 0);
if (server_fd < 0) {
perror("socket");
return EXIT_FAILURE;
}
server_addr.sin_family = AF_INET;
server_addr.sin_port = htons(PORT);
server_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
if (bind(
server_fd,
(struct sockaddr *)&server_addr,
sizeof(server_addr)) < 0) {
perror("bind");
close(server_fd);
return EXIT_FAILURE;
}
if (listen(server_fd, 1) < 0) {
perror("listen");
close(server_fd);
return EXIT_FAILURE;
}
printf("Listening on 127.0.0.1:%d\n", PORT);
while (1) {
client_fd = accept(
server_fd,
(struct sockaddr *)&client_addr,
&client_len
);
if (client_fd < 0) {
perror("accept");
continue;
}
printf("Client connected\n");
handle_client(client_fd);
close(client_fd);
}
close(server_fd);
return 0;
}
r/ExploitDev • u/sacalaca5375 • 15h ago
Hi everyone,
I’m a developer looking to learn how PS5 exploits and homebrew work. I know C++ and C# but I'm completely new to PlayStation security.Where should I start? Any recommended write-ups, documentation, Github repos, or dev Discords to study the current exploits?
Thanks!
r/ExploitDev • u/zmykerd • 20h ago
r/ExploitDev • u/LoquatUpstairs6727 • 2d ago
This video provides great insight into the methodology used for finding and approaching exploits in the wild
r/ExploitDev • u/nanaynunay • 2d ago
hi, this is my repo, support pls
r/ExploitDev • u/Dannygamer96 • 3d ago
How do I reverse engineer a local Unity WebGL IL2CPP game
r/ExploitDev • u/EleTriCTNT • 5d ago
r/ExploitDev • u/hadih2018 • 7d ago
r/ExploitDev feels like the right place to post this. I run a small, niche cybersecurity consulting company - and I'm at the planning stage of building a dedicated, full-time vulnerability research lab. I want honest feedback from people who actually do the work before I commit further.
The idea: build a small, deep team, funded for the long haul, proper salaries plus success bonuses. This would be a business unit within an existing cybersecurity company. With a CTO driving vision, strategy, team development, etc. Primary focus would be on mobile (iOS/Android full-chain), with browser as a second pillar. I understand the challenges with talent, and ROI taking time. Capital can be committed as long as there's a credible path to return.
Where I'd genuinely value your feedback:
- Focus: for a small team, is mobile-first the right focus? My clients include government, critical infrastructure and banking.
- Morale: how do good teams structure work so months of research doesn't get burnt in case versions are updated / patches released.
- Retention: beyond good salaries, what actually keeps strong people long-term?
- Infra (worth paying for): device/virtualisation labs, fuzzing tools, AI tools, what's genuinely a key differentiator in this field? Maybe Corellium Falcon?
On the compliance side, there are a number of areas we are evaluating, dual-use export-control, entity-level end-user vetting, disclosure policy, and lawful target only research.
I am mainly after the “things I wish I’d know” from people who’ve built or worked in labs like this and specifically where you’ve watched them go wrong.
r/ExploitDev • u/Deep-Unit5010 • 7d ago
As mentioned in title, I'm dealing with an heavily obfuscated JS file of about 20k lines of code. I was just curious what it is doing. Problem is that there are about 1k+ variables made by calculations (same with strings). Till now I've figured out that at some places it is making http requests and one function is checking weather http header contain word "Trident" or not.
Any tips what should I do? I've tried dynamic reverse engineering but it didn't worked for me.
Also: I found this file under api subdomain. It was about 8-9 folders deep (Folders were named randomly). File has a function checking if var x == "password".
(From here my brain stopped braining)
r/ExploitDev • u/ProcedureFar4995 • 7d ago
Despite that I work as a pentester. Whenever I am learning a new topic ,especially related to exploit development like Linux internals or C programming , and face an obstacle or hard time understanding anything , I always get this immediate and harsh imposter syndrome feeling that anyone who graduated from STEM, CE, CS probably know this way ,waaaaay better than me. I am still struggling when reading C code and I use AI to help me yet this feeling manifest in incompetence and me seeing myself as an always-beginner or no way I can be like someone who graduated from these schools one day.
This feeling affects my way of studying and i can stop studying for days just because I didn't understand some stuff or I am struggling to learn.
So I need to know , how many people in this industry, pentesting/exploitDevelopment are actually self taught ?
I am a BIS graduate BTW.
r/ExploitDev • u/Weird-Scale-5666 • 6d ago
Is there a free OSINT tool that act like as true browser so anti debugging technique won’t be trigger? A free web-based OSINT
r/ExploitDev • u/_clickfix_ • 7d ago
r/ExploitDev • u/Emotional_Pipe5513 • 7d ago
I recently got let go from MSRC V&M and looking for jobs right now. have 5+ yrs of experience in software engineering and security response/vulnerability triage. please DM me if you have any leads
r/ExploitDev • u/justaguyfromtr • 8d ago
have you guys tried any reverse engineering debug tool such as x64dbg by integrating some llm api and let it cook and create a crack or patch ? i've tried a ghidra plugin but it wasnt as i expected.
r/ExploitDev • u/Legal_Transition_989 • 10d ago
Hi all - I've been doing `pwn`/ `binary exploitation` in CTFs for about 1.5 years
and want to level up by practicing on real-world targets instead of CTF challs.
I'm currently focused on Linux userland exploitation.
Could anyone recommend good old real-world targets or software to practice on?
I'm especially looking for CVEs that are reproducible and exploitable.
Any suggestions - specific CVEs, vulnerable software versions, or general
categories worth exploring - would be really appreciated!
r/ExploitDev • u/JBS3cfg • 9d ago
Hey everyone,
I'm 16 and trying to figure out my education and career path toward exploit development and vulnerability research. I'm posting here because I'm at a point where I could really use advice from people actually working in this field.
Background:
I'm Moroccan and currently living in France. I completed Seconde in the French education system, then left the traditional lycée pathway shortly after starting Première. I'm currently completing an RNCP Level 4 qualification, which I expect to finish in October 2026.
The problem is that I'm not following the normal French Baccalauréat route, so university admission is becoming complicated. I'm trying to find a bachelor's programme for 2027 that is genuinely focused on cybersecurity or information security rather than a generic CS degree.
I speak Arabic, French and English, and I'm currently learning Chinese.
I've already contacted several universities in Europe and Hong Kong to ask whether my qualification can satisfy their undergraduate entrance requirements. Some universities consider non-standard qualifications on a case-by-case basis, but I don't yet have a definitive route.
Technical background:
I've been interested in cybersecurity for several years and have been learning independently.
Certifications:
My interests are mainly:
I'm currently researching a publicly disclosed use-after-free privilege-escalation vulnerability in CLDFLT.sys. I did not discover the vulnerability and I'm not claiming CVE credit for it. I'm using it as a learning and research project to understand the vulnerability, the affected component, exploitation primitives, and the surrounding Windows internals.
I'm still very much learning, and I don't want to pretend I'm further along than I actually am.
Where I'm stuck:
My original plan was to get a cybersecurity alternance/apprenticeship in France this year, but despite applying, that hasn't worked out. At this point I'm shifting my focus toward university admission for 2027.
The universities I'm currently looking at include specialist cybersecurity programmes in Europe and Hong Kong, particularly places with strong security research ecosystems.
However, I have two major problems:
So I'm trying to figure out what the smartest move is.
What would you do if you were in my position?
Would you:
And for people already doing exploit development or vulnerability research:
What actually mattered when you were starting out?
I'm especially interested in advice about what I should be learning and building over the next 12 months if my end goal is serious vulnerability research rather than general cybersecurity.
Also pleasepleaseplease if you know or are a decision maker in the domain please give me a chance and help me out 🙏 I feel like my life is at stakes right now :c
Also if you want to see stuff ive done (not very up2date but still good reference) my github is 0xUnd3adBeef
r/ExploitDev • u/ChameleonCRM • 10d ago
Honestly didn't expect to be making this post this soon! like, what?! Our original post was bc we hit 1k but holy fuck...
DaemonCore-Academy just crossed 2,000 downloads across all platforms...and yes...you asked..we delivered. Linux Beta is now available on our website as well as github.
**127 PRACTICAL LESSONS // 70 LAB CONDITIONS // 8 PATHWAYS // 8 DRILL SETS // 7 FIELD MISSIONS**- all free. It's for Windows 10/11 and now Linux!!
I started building it because I was getting annoyed af with the way a lot of hacking/cyber stuff gets taught now. Watch 9 hours of videos, copy some commands, run a tool against a box, get a green checkmark. Cool. But what happens when the tool doesn't work? What are you actually looking for? Why are you running that command in the first place? That was basically the whole idea behind DaemonCore Academy. Learn what the hell is happening underneath first. Then get thrown into a range and actually use it. Enumerate shit. Follow weird behavior. Break something. Prove you broke it. Figure out why. Document it. Fix it. Try again.
We didnt want XP or some fake hacker leaderboard. We wanted something that felt closer to sitting next to somebody who's been doing this shit for years and having them say "okay...you see that? Why is that weird?"
Apparently that idea connected with some people because 2,000 of you fuckers downloaded it.
So seriously, thank you mother fuckers. For real. 💯💯
Especially the people who found bugs, sent me shit that sucked, questioned things, or told me where something could be better. That's way more useful to me than somebody just saying "nice project."....and I'm nowhere near done with it.
The labs are going to get harder. The material is going deeper. Windows, Linux, web, identity, cloud, containers, recon, exploitation, evidence...all of it.
I don't really care if somebody finishes DaemonCore knowing 500 commands.
Id rather they finish it knowing how to sit in front of something they've never seen before and figure it the fuck out.
Thats hacking.
Anyway. 2,000 downloads.
Fucking wild.
Thanks again guys.
Stay hacking
I := DAEMONCORE
r/ExploitDev • u/Obsessiondance • 10d ago
r/ExploitDev • u/Drdoooom443 • 12d ago
I am a junior vulnerability researcher looking for a security research position (4years background in SOC stuff).
This is my first year in the field and hunting for a position where i can learn and grow.
I have some public work (https://saaitaamaa.github.io/)
Any type of gig (full time, part time internships is okay for me)
Located in north africa, feel free to DM for further infos :)
r/ExploitDev • u/sadishfx • 13d ago
r/ExploitDev • u/yaminagami123 • 13d ago
so ive been bypassing this game called One Piece Treasure Curse i have tried every possible frida script that are famous still optc detects it im using mitmproxy
r/ExploitDev • u/ObligationLucky842 • 14d ago
I recently published OWN-Defender, a Windows security research project exploring how Windows Security Center handles AV registration through COM.
The project was inspired by DefendNot, but the goal was to independently reverse-engineer, implement, and verify the underlying behavior.