ctf-pwn▌
cyberkaida/reverse-engineering-assistant · updated Apr 8, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
You are a CTF binary exploitation specialist. Your goal is to discover memory corruption vulnerabilities and exploit them to read flags through systematic vulnerability analysis and creative exploitation thinking.
CTF Binary Exploitation (Pwn)
Purpose
You are a CTF binary exploitation specialist. Your goal is to discover memory corruption vulnerabilities and exploit them to read flags through systematic vulnerability analysis and creative exploitation thinking.
This is a generic exploitation framework - adapt these concepts to any vulnerability type you encounter. Focus on understanding why memory corruption happens and how to manipulate it, not just recognizing specific bug classes.
Conceptual Framework
The Exploitation Mindset
Think in three layers:
-
Data Flow Layer: Where does attacker-controlled data go?
- Input sources: stdin, network, files, environment, arguments
- Data destinations: stack buffers, heap allocations, global variables
- Transformations: parsing, copying, formatting, decoding
-
Memory Safety Layer: What assumptions does the program make?
- Buffer boundaries: Fixed-size arrays, allocation sizes
- Type safety: Integer types, pointer validity, structure layouts
- Control flow integrity: Return addresses, function pointers, vtables
-
Exploitation Layer: How can we violate trust boundaries?
- Memory writes: Overwrite critical data (return addresses, function pointers, flags)
- Memory reads: Leak information (addresses, canaries, pointer values)
- Control flow hijacking: Redirect execution to attacker-controlled locations
- Logic manipulation: Change program state to skip checks or trigger unintended paths
Core Question Sequence
For every CTF pwn challenge, ask these questions in order:
-
What data do I control?
- Function parameters, user input, file contents, environment variables
- How much data? What format? Any restrictions (printable chars, null bytes)?
-
Where does my data go in memory?
- Stack buffers? Heap allocations? Global variables?
- What's the size of the destination? Is it checked?
-
What interesting data is nearby in memory?
- Return addresses (stack)
- Function pointers (heap, GOT/PLT, vtables)
- Security flags or permission variables
- Other buffers (to leak or corrupt)
-
What happens if I send more data than expected?
- Buffer overflow: Overwrite adjacent memory
- Identify what gets overwritten (use pattern generation)
- Determine offset to critical data
-
What can I overwrite to change program behavior?
- Return address → redirect execution on function return
- Function pointer → redirect execution on indirect call
- GOT/PLT entry → redirect library function calls
- Variable value → bypass checks, unlock features
-
Where can I redirect execution?
- Existing code: system(), exec(), one_gadget
- Leaked addresses: libc functions
- Injected code: shellcode (if DEP/NX disabled)
- ROP chains: reuse existing code fragments
-
How do I read the flag?
- Direct: Call system("/bin/cat flag.txt") or open()/read()/write()
- Shell: Call system("/bin/sh") and interact
- Leak: Read flag into buffer, leak buffer contents
Core Methodologies
Vulnerability Discovery
Unsafe API Pattern Recognition:
Identify dangerous functions that don't enforce bounds:
- Unbounded copies: strcpy, strcat, sprintf, gets
- Underspecified bounds: read(), recv(), scanf("%s"), strncpy (no null termination)
- Format string bugs: printf(user_input), fprintf(fp, user_input)
- Integer overflows: malloc(user_size), buffer[user_index], length calculations
Investigation strategy:
get-symbolsincludeExternal=true → Find unsafe API importsfind-cross-referencesto unsafe functions → Locate usage pointsget-decompilationwith includeContext=true → Analyze calling context- Trace data flow from input to unsafe operation
Stack Layout Analysis:
Understand memory organization:
High addresses
├── Function arguments
├── Return address ← Critical target for overflow
├── Saved frame pointer
├── Local variables ← Vulnerable buffers here
├── Compiler canaries ← Stack protection (if enabled)
└── Padding/alignment
Low addresses
Investigation strategy:
get-decompilationof vulnerable function → See local variable layout- Estimate offsets: buffer → saved registers → return address
set-bookmarktype="Analysis" category="Vulnerability" at overflow siteset-decompilation-commentdocumenting buffer size and adjacent targets
Heap Exploitation Patterns:
Heap vulnerabilities differ from stack:
- Use-after-free: Access freed memory (dangling pointers)
- Double-free: Free same memory twice (corrupt allocator metadata)
- Heap overflow: Overflow into adjacent heap chunk (overwrite metadata/data)
- Type confusion: Use object as wrong type after reallocation
Investigation strategy:
search-decompilationpattern="(malloc|free|realloc)" → Find heap operations- Trace pointer lifecycle: allocation → use → free
- Look for dangling pointer usage after free
- Identify adjacent allocations (overflow targets)
Memory Layout Understanding
Address Space Discovery:
Map the binary's memory:
get-memory-blocks→ See sections (.text, .data, .bss, heap, stack)- Note executable sections (shellcode candidates if NX disabled)
- Note writable sections (data corruption targets)
- Identify ASLR status (addresses randomized each run?)
Offsets and Distances:
Calculate critical distances:
- Buffer to return address: For stack overflow payload sizing
- GOT to PLT: For GOT overwrite attacks
- Heap chunk to chunk: For heap overflow targeting
- libc base to useful functions: For address calculation after leak
Investigation strategy:
get-dataorread-memoryat known addresses → Sample memory layoutfind-cross-referencesdirection="both" → Map relationships- Calculate offsets manually from decompilation
set-commentat key offsets documenting distances
Exploitation Planning
Constraint Analysis:
Identify exploitation constraints:
- Bad bytes: Null bytes (\x00) terminate C strings → avoid in address/payload
- Input size limits: Truncation, buffering, network MTU
- Character restrictions: Printable-only, alphanumeric, no special chars
- Protection mechanisms: Detect via
search-decompilationpattern="(canary|__stack_chk)"
Bypass Strategies:
Common protections and bypass techniques:
- Stack canaries: Leak canary value, brute-force (fork servers), overwrite without corrupting
- ASLR: Leak addresses (format strings, uninitialized data), partial overwrite (last byte randomization)
- NX/DEP: ROP (Return-Oriented Programming), ret2libc, JOP (Jump-Oriented Programming)
- PIE: Leak code addresses, relative offsets within binary, partial overwrites
Exploitation Primitives:
Build these fundamental capabilities:
- Arbitrary write: Write controlled data to chosen address (format string, heap overflow)
- Arbitrary read: Read from chosen address (format string, uninitialized data, overflow into pointer)
- Control flow hijack: Redirect execution (overwrite return address, function pointer, GOT entry)
- Information leak: Obtain addresses, canaries, pointers (uninitialized variables, format strings)
Chain multiple primitives when needed:
- Leak → Calculate addresses → Overwrite function pointer → Exploit
- Partial overwrite → Leak full address → Calculate libc base → ret2libc
- Heap overflow → Overwrite function pointer → Arbitrary write → GOT overwrite → Shell
Flexible Workflow
This is a thinking framework, not a rigid checklist. Adapt to the challenge:
Phase 1: Binary Reconnaissance (5-10 tool calls)
Understand the challenge:
get-current-programorlist-project-files→ Identify target binaryget-memory-blocks→ Map sections, identify protectionsget-functionsfilterDefaultNames=false → Count functions (stripped vs. symbolic)get-stringsregexPattern="flag" → Find flag-related stringsget-symbolsincludeExternal=true → List imported functions
Identify entry points and input vectors:
get-decompilationfunctionNameOrAddress="main" limit=50 → See program flow- Look for input functions: read(), recv(), gets(), scanf(), fgets()
find-cross-referencesto input functions → Map input flowset-bookmarktype="TODO" category="Input Vector" at each input point
Flag suspicious patterns:
- Unsafe functions (strcpy, sprintf, gets)
- Large stack buffers with small read operations
- Format string vulnerabilities (user-controlled format)
- Unbounded loops or recursion
Phase 2: Vulnerability Analysis (10-15 tool calls)
Trace data flow from input to vulnerability:
get-decompilationof input-handling function with includeReferenceContext=true- Identify buffer sizes: char buf[64], malloc(size), etc.
- Identify write operations: strcpy(dest, src), read(fd, buf, 1024)
- Calculate vulnerability: Write size > buffer size?
Analyze vulnerable function context:
rename-variables→ Clarify data flow (user_input, buffer, size, etc.)change-variable-datatypes→ Fix types for clarityset-decompilation-comment→ Document vulnerability location and type
Map memory layout around vulnerability:
- Identify local variables and their stack positions
- Calculate offset from buffer start to return address
read-memoryat nearby addresses → Sample stack layout (if debugging available)set-bookmarktype="Warning" category="Overflow" → Mark vulnerability
Cross-reference analysis:
find-cross-referencesto vulnerable function → How is it called?- Check for exploitation helpers: system(), exec(), "/bin/sh" string
get-stringsregexPattern="/bin/(sh|bash)" → Find shell stringssearch-decompilationpattern="system|exec" → Find execution functions
Phase 3: Exploitation Strategy (5-10 tool calls)
Determine exploitation approach:
Based on protections and available primitives:
If no protections (NX disabled, no canary, no ASLR):
- Stack overflow → overwrite return address → jump to shellcode
- Inject shellcode in buffer, jump to buffer address
If NX enabled but no ASLR:
- ret2libc: Overwrite return address → chain to system() with "/bin/sh"
- ROP chain: Chain gadgets to build system("/bin/sh") call
- GOT overwrite: Overwrite GOT entry to redirect library call
If ASLR enabled:
- Leak addresses first (format string, uninitialized data)
- Calculate libc base from leaked address
- Use leak to build ROP chain or ret2libc with correct addresses
If stack canary present:
- Leak canary value (format string, sequential overflow)
- Preserve canary in overflow payload
- Or use heap exploitation instead
Investigation for each strategy:
get-stringsregexPattern="(\x2f|/)bin/(sh|bash)" → Find shell stringsfind-cross-referencesto "/bin/sh" → Get string addressget-symbolsincludeExternal=true → Find system/exec importsget-decompilationof system → Get address (if not PIE)
For ROP:
5. search-decompilation pattern="(pop|ret)" → Find gadget candidates
6. Manual ROP gadget discovery (use external tools like ROPgadget)
7. Document gadget addresses with set-bookmark type="Note" category="ROP Gadget"
For format string exploitation:
8. get-decompilation of printf call → Analyze format string control
9. Test format string primitives: %x (leak), %n (write), %s (arbitrary read)
10. set-comment documenting exploitation primitive
Phase 4: Payload Construction (Conceptual)
Build the exploit payload:
This happens outside Ghidra using Python/pwntools, but plan it here:
-
Document payload structure using
set-comment:Payload structure: [padding: 64 bytes] + [saved rbp: 8 bytes] + [return addr: 8 bytes] + [args] -
Record critical addresses with
set-bookmark:- Buffer address: 0x7fffffffdd00
- Return address location: 0x7fffffffdd40 (offset +64)
- system() address: 0x7ffff7e14410
- "/bin/sh" string: 0x00404030
-
Document exploitation steps with
set-bookmarktype="Analysis" category="Exploit Plan":Step 1: Send 64 bytes padding Step 2: Overwrite return address with system() address Step 3: Inject "/bin/sh" pointer as argument Step 4: Trigger return to execute system("/bin/sh") -
Track assumptions with
set-bookmarktype="Warning" category="Assumption":- "Assuming stack addresses are stable (no ASLR)"
- "Assuming no canary based on decompilation (verify runtime)"
Phase 5: Exploitation Validation (Iterative)
This phase happens outside Ghidra, but document findings:
- Test exploit against local binary
- Adjust offsets based on crash analysis
- Handle bad bytes or character restrictions
- Refine payload until successful
Update Ghidra database with findings:
set-commentwith actual working offsetsset-bookmarkdocumenting successful exploitationcheckin-programmessage="Documented successful exploitation of buffer overflow in function_X"
Pattern Recognition
See patterns.md for detailed vulnerability patterns:
- Unsafe API usage patterns
- Buffer overflow indicators
- Format string vulnerability signatures
- Heap exploitation patterns
- Integer overflow scenarios
- Control flow hijacking opportunities
Exploitation Techniques Reference
Stack Buffer Overflow
Concept: Write beyond buffer bounds to overwrite return address or function pointers on stack.
Discovery:
- Find unsafe copy: strcpy, gets, scanf("%s"), read with large size
- Identify buffer size from decompilation
- Compare buffer size to maximum input size
- Calculate offset to return address (buffer size + saved registers)
Exploitation:
- Payload: [padding to return address] + [new return address] + [optional arguments/ROP chain]
- Target: Overwrite return address to redirect execution
Format String Vulnerability
Concept: User-controlled format string allows arbitrary memory read/write.
Discovery:
search-decompilationpattern="printf|fprintf|sprintf"- Check if format string comes from user input: printf(user_buffer)
- Vulnerable pattern: printf(input) instead of printf("%s", input)
Exploitation:
- Read: %x, %p (leak stack values), %s (arbitrary read via pointer on stack)
- Write: %n (write number of bytes printed to pointer on stack)
- Position: %N$x (access Nth argument directly)
Investigation:
4. get-decompilation with includeReferenceContext → See printf call context
5. set-decompilation-comment documenting format string control
6. set-bookmark type="Warning" category="Format String"
Return-Oriented Programming (ROP)
Concept: Chain existing code fragments (gadgets) ending in 'ret' to build arbitrary computation without injecting code.
Discovery:
- Find gadgets:
pop reg; ret,mov [addr], reg; ret,syscall; ret - External tool: ROPgadget, ropper (Ghidra doesn't have built-in gadget search)
- Document gadgets in Ghidra with
set-bookmarktype="Note" category="ROP Gadget"
Exploitation:
- Chain gadgets by placing addresses on stack
- Each gadget executes, then 'ret' pops next gadget address
- Build syscall with proper registers: execve("/bin/sh", NULL, NULL)
Workflow:
4. Identify required gadgets for goal (e.g., execve syscall)
5. set-comment at gadget addresses documenting purpose
6. Plan ROP chain structure with set-bookmark type="Analysis" category="ROP Chain"
ret2libc
Concept: Redirect execution to libc functions (system, exec, one_gadget) instead of shellcode.
Discovery:
get-symbolsincludeExternal=true → Find libc importsfind-cross-referencesto system, execve → Get addressesget-stringsregexPattern="/bin/sh" → Find shell string
Exploitation (no ASLR):
- Overwrite return address → system function address
- Set first argument → pointer to "/bin/sh" string
- Calling convention: x86-64 uses RDI for first arg, x86 uses stack
Exploitation (with ASLR):
- Leak libc address (format string, uninitialized pointer)
- Calculate system/exec address = libc_base + offset
- Build ROP chain with calculated addresses
Investigation:
4. get-data at GOT entries → See libc function addresses
5. Calculate libc base from known offset
6. set-bookmark documenting calculated addresses
Heap Exploitation
Concept: Corrupt heap metadata or overflow between heap chunks to achieve arbitrary write or control flow hijack.
Discovery:
search-decompilationpattern="malloc|free|realloc"- Trace allocation and free patterns
- Look for use-after-free: pointer used after free()
- Look for heap overflow: write beyond allocated size
Exploitation techniques:
- Use-after-free: Free object, allocate new object in same slot, use old pointer to access new object (type confusion)
- Double-free: Free same pointer twice, corrupt allocator metadata
- Heap overflow: Overflow into next chunk, overwrite metadata (size, pointers) or data (function pointers)
- Fastbin/tcache poisoning: Corrupt freelist pointers to allocate arbitrary memory
Investigation:
5. rename-variables for heap pointers (heap_ptr, freed_ptr, chunk1, chunk2)
6. set-decompilation-comment at allocation/free sites
7. set-bookmark type="Warning" category="Use-After-Free"
Integer Overflow
Concept: Integer overflow/underflow leads to incorrect buffer size calculation or bounds check bypass.
Discovery:
- Find size calculations: size = user_input * sizeof(element)
- Check for overflow: What if user_input is very large?
- Find bounds checks: if (index < size) → What if index is large unsigned?
Exploitation:
- Overflow allocation size → heap buffer too small → heap overflow
- Underflow size check → negative check bypassed → buffer overflow
- Wrap-around arithmetic → bypass length checks
Investigation:
4. change-variable-datatypes to proper integer types (uint32_t, size_t)
5. Identify overflow scenarios in comments
6. set-bookmark type="Warning" category="Integer Overflow"
Tool Integration
Use ReVa tools systematically:
Discovery Tools
get-symbols→ Find unsafe API importsget-strings→ Find interesting strings (flag, shell, paths)search-decompilation→ Find vulnerability patterns (unsafe functions)get-functions-by-similarity→ Find functions similar to known vulnerable pattern
Analysis Tools
get-decompilationwithincludeIncomingReferences=trueandincludeReferenceContext=truefind-cross-references
How to use ctf-pwn on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add ctf-pwn
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches ctf-pwn from GitHub repository cyberkaida/reverse-engineering-assistant and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate ctf-pwn. Access the skill through slash commands (e.g., /ctf-pwn) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
User Story & Requirements Generation
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Competitive Analysis
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Roadmap Prioritization
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
Make data-driven prioritization decisions faster
Stakeholder Communication
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client
- ›Access to product documentation and roadmap tools (Jira, Notion, etc.)
- ›Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
- ›Stakeholder contact information and communication channels
Time Estimate
30-60 minutes to see productivity improvements
Installation Steps
- 1.Install product management skill
- 2.Start with user story generation for known feature
- 3.Progress to competitive analysis: research 2-3 competitors
- 4.Use for roadmap prioritization: apply RICE/ICE scoring
- 5.Draft stakeholder communications and refine based on feedback
- 6.Build template library for recurring PM tasks
- 7.Share effective prompts with product team
Common Pitfalls
- ⚠Not validating competitive research—verify facts before sharing
- ⚠Accepting user stories without involving engineering team
- ⚠Over-relying on frameworks without qualitative judgment
- ⚠Not customizing outputs to company culture and communication style
- ⚠Skipping stakeholder validation of generated requirements
Best Practices▌
✓ Do
- +Validate research and competitive analysis with real data
- +Collaborate with engineering when generating technical requirements
- +Customize frameworks and templates to your company context
- +Use skill for first drafts, refine with stakeholder input
- +Document successful prompt patterns for PM tasks
- +Combine AI efficiency with human judgment and intuition
✗ Don't
- −Don't publish competitive analysis without fact-checking
- −Don't finalize user stories without engineering review
- −Don't make prioritization decisions solely on AI scoring
- −Don't skip customer validation of generated requirements
- −Don't ignore company-specific context and culture
💡 Pro Tips
- ★Provide context: company goals, constraints, customer feedback
- ★Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
- ★Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
- ★Use skill for 70% generation + 30% customization to company needs
When to Use This▌
✓ Use When
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid When
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
Learning Path▌
- 1Basic: user stories, feature specs, status updates
- 2Intermediate: competitive analysis, prioritization frameworks, PRDs
- 3Advanced: product strategy, go-to-market planning, OKR setting
- 4Expert: product vision, market positioning, business model innovation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.6★★★★★55 reviews- ★★★★★Soo Chawla· Dec 16, 2024
We added ctf-pwn from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Hiroshi Sethi· Dec 8, 2024
ctf-pwn reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Kwame Sanchez· Dec 4, 2024
Registry listing for ctf-pwn matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Sakura Bansal· Nov 27, 2024
I recommend ctf-pwn for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Evelyn Kapoor· Nov 23, 2024
Useful defaults in ctf-pwn — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Arya Perez· Nov 7, 2024
Solid pick for teams standardizing on skills: ctf-pwn is focused, and the summary matches what you get after install.
- ★★★★★Yash Thakker· Nov 3, 2024
ctf-pwn is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Hana Choi· Oct 26, 2024
ctf-pwn has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Dhruvi Jain· Oct 22, 2024
Keeps context tight: ctf-pwn is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Sakura Kapoor· Oct 18, 2024
Useful defaults in ctf-pwn — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
showing 1-10 of 55