{% extends "base.html" %} {% block title %}AUTARCH — Exploit Dev{% endblock %} {% block content %}
Shellcode generation, payload encoding, ROP chain building, cyclic patterns, and assembly.
Generate architecture-specific shellcode from built-in templates. Supports host/port patching.
No shellcode generated yet.
Encode shellcode to evade signature detection. Supports XOR, AES-256, alphanumeric, and polymorphic encoding.
Scan ELF/PE binaries for ROP gadgets. Uses ropper, ROPgadget, or objdump as backend.
| Address | Gadget | Type | Add |
|---|---|---|---|
| Run gadget search to see results. | |||
Build a ROP chain by adding gadgets from the table above or manually specifying addresses.
| # | Address | Gadget | Value | Rm |
|---|---|---|---|---|
| Add gadgets from the results above. | ||||
Generate De Bruijn / cyclic patterns for buffer overflow offset discovery (like pattern_create).
No pattern generated yet.
Find the exact offset of a value within a cyclic pattern (like pattern_offset). Accepts hex (0x41326241), integer, or raw string.
Generate format string test payloads for offset discovery and write-what-where attacks.
Assemble NASM code to machine bytes or disassemble hex bytes to assembly instructions.