con un clic
automated-exploit-generation
Automatic exploit generation from vulnerability analysis
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Automatic exploit generation from vulnerability analysis
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Next-generation 0day discovery & exploit development — comprehensive code analysis, allocator vulnerabilities, compiler-induced bugs, SIMD/vector issues, JIT vulnerabilities, custom allocator attacks, ASLR/kASLR bypass, UAF, OOB, RCE with exploit generation, privilege escalation, backdoor establishment
Next-generation 0day discovery — novel overflow patterns, allocator exploits, compiler-induced bugs, bounds-check bypass, SIMD/vector overflows, JIT vulns, custom allocator attacks, ASLR/kASLR bypass, UAF, OOB, RCE with weaponized exploit generation, privilege escalation, backdoor establishment
Container escape vulnerability discovery — Docker, Kubernetes, container runtime exploitation, namespace isolation bypass, privilege escalation through container boundaries
Crypto implementation analysis — weak algorithms, side-channels, key management flaws, padding oracles, random generation failures, implementation bugs
IoT device security analysis — firmware extraction, RTOS exploits, hardware interfaces, protocol vulnerabilities, side-channel attacks, update mechanism exploitation
Industrial control system security — Modbus, DNP3, IEC 104, Ethernet/IP, PLC exploitation, control logic manipulation, sensor/actuator attacks, ICS protocol analysis
| name | Automated Exploit Generation |
| description | Automatic exploit generation from vulnerability analysis |
| tags | ["exploit","rop","shellcode","vulnerability","overflow","uaf","hacking"] |
| allowed_tools | ["scan_exploitable_vulnerabilities","generate_exploit_code","find_rop_gadgets","decompile_function","get_disasm","list_imports"] |
Task: Automated Exploit Generation. Detect vulnerabilities and generate working exploits.
Vulnerability Discovery
Exploit Development
Testing & Refinement
Detection:
Analysis:
1. Find overflow point
2. Calculate offset to return address
3. Identify gadget sources (binary, libc)
4. Build ROP chain for:
- Disable DEP (VirtualProtect/mprotect)
- Load shellcode
- Jump to shellcode
Detection:
Analysis:
1. Identify heap allocation pattern
2. Find overflow target objects
3. Spray controlled objects
4. Trigger use of corrupted object
Detection:
Detection:
x86_64: pop rdi; ret, pop rsi; ret, pop rdx; ret, jmp rsp x86: pop eax; ret, pop ecx; ret, jmp esp ARM64: ldp x29, x30, [sp], #16, br x30
DEP Bypass (VirtualProtect):
rop = pop_rdi; ret
rop += address
rop += pop_rsi; ret
rop += size
rop += pop_rdx; ret
rop += 0x40
rop += virtual_protect
rop += jump_to_shellcode
Tools: msfvenom, pwntools, shellcraft