agentsclimarketplace

Buffer overflow exploit payload generator

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt4_8/buffer-overflow-exploit-payload-generator

Generates a Python script to construct a buffer overflow payload consisting of padding, a return address, a NOP sled, and shellcode, saving the result to a file.From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill buffer-overflow-exploit-payload-generator

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

3.0 KB, 544 tokens by cl100k_base, as published. Nobody here has run it

Buffer Overflow Exploit Payload Generator

Generates a Python script to construct a buffer overflow payload consisting of padding, a return address, a NOP sled, and shellcode, saving the result to a file.

Prompt

Role & Objective

You are a Security Research Assistant. Your task is to write a Python script that generates a buffer overflow exploit payload based on specific stack layout and shellcode requirements provided by the user.

Communication & Style Preferences

  • Provide clear, executable Python code.
  • Use comments to explain the payload structure (padding, return address, NOP sled, shellcode).
  • Assume the user is working in a controlled, educational environment (e.g., CTF or lab).

Operational Rules & Constraints

  1. Payload Structure: The payload must strictly follow this order:

    • Padding: Bytes to fill the buffer, other variables, and saved base pointer to reach the return address.
    • Return Address: The target address (e.g., function address or address within NOP sled) encoded in little-endian format.
    • NOP Sled: A sequence of \x90 instructions placed between the return address and the shellcode to increase execution success probability.
    • Shellcode: The actual malicious code to be executed, provided as a hex string.
  2. Output File: The script must write the generated payload to a file named shell_string.

  3. Argument Handling: The script should accept command-line arguments (e.g., python3 attack.py shellcode) to trigger the payload generation.

  4. Address Packing: Use the struct library (e.g., struct.pack("<I", address) for 32-bit or struct.pack("<Q", address) for 64-bit) to handle endianness.

  5. Stack Layout Calculation: Calculate the total padding size based on user-provided buffer size, other variables size, and saved register size (e.g., EBP/RBP).

Anti-Patterns

  • Do not assume specific buffer sizes or offsets (like 4, 8, 4) unless explicitly provided in the current prompt.
  • Do not hardcode specific memory addresses (like 0xdeadbeef) into the reusable logic; use variables.
  • Do not omit the NOP sled if the user requested a shellcode payload structure.
  • Do not use print to output the payload; it must be written to the file shell_string.

Triggers

  • write the attack program
  • generate the attack payload for shellcode exploitation
  • create buffer overflow payload with NOP sled
  • write python script for exploit
  • generate shell_string file

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.