analyzing-heap-spray-exploitation

analyzing-heap-spray-exploitation is a skill for Claude Code, Codex from Youngmaidainon/Agent-Level-Up. It costs 46 tokens per session (553 once invoked), scanned A, a copy of analyzing-heap-spray-exploitation, MIT.

A guide to finding heap-spray evidence in computer memory dumps. Heap spraying is an attack technique that fills a program’s memory with repeated attacker-controlled data to make code execution more likely.

In plain words
What is it for?
Use it with Volatility3 to inspect processes and memory mappings, find large suspicious allocations and repeated instruction patterns, and extract possible shellcode.
Why use it?
It helps investigators recognize suspicious memory regions and separate possible exploit artifacts from ordinary process memory.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it with Volatility3 to inspect processes and memory mappings, find large suspicious allocations and repeated instruction patterns, and extract possible shellcode.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/youngmaidainon/agent-level-up/analyzing-heap-spray-exploitation
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Youngmaidainon/Agent-Level-Up --skill analyzing-heap-spray-exploitation
Clone the repo
git clone --depth 1 https://github.com/Youngmaidainon/Agent-Level-Up

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for analyzing-heap-spray-exploitation

README.md
[![agentmods](https://agentmods.dev/badge/skills/youngmaidainon/agent-level-up/analyzing-heap-spray-exploitation/github.svg)](https://agentmods.dev/skills/youngmaidainon/agent-level-up/analyzing-heap-spray-exploitation)
Your own site
<a href="https://agentmods.dev/skills/youngmaidainon/agent-level-up/analyzing-heap-spray-exploitation"><img src="https://agentmods.dev/badge/skills/youngmaidainon/agent-level-up/analyzing-heap-spray-exploitation/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for analyzing-heap-spray-exploitation

Your own site · 80×15
<a href="https://agentmods.dev/skills/youngmaidainon/agent-level-up/analyzing-heap-spray-exploitation"><img src="https://agentmods.dev/badge/skills/youngmaidainon/agent-level-up/analyzing-heap-spray-exploitation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 553 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00046 $0.00553
Opus 5 $0.00023 $0.00277
Sonnet 5 $0.00009 $0.00111
Haiku 4.5 $0.00005 $0.00055

Measured 10d ago against content hash 93825dc2e7d0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

analyzing-heap-spray-exploitation scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/agent.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to analyzing-heap-spray-exploitation — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

cyber-security/ctf/analyzing-heap-spray-exploitation/SKILL.md · 65 lines

What it actually says

Analyzing Heap Spray Exploitation

Overview

Heap spraying is an exploitation technique that fills large regions of a process's heap with attacker-controlled data (typically NOP sleds followed by shellcode) to increase the reliability of code execution exploits. This skill covers detecting heap spray artifacts in memory dumps using Volatility3's malfind, vadinfo, and memmap plugins, identifying suspicious contiguous memory allocations, scanning for NOP sled patterns (0x90, 0x0c0c0c0c), and extracting embedded shellcode for analysis.

When to Use

  • When investigating security incidents that require analyzing heap spray exploitation
  • When building detection rules or threat hunting queries for this domain
  • When SOC analysts need structured procedures for this analysis type
  • When validating security monitoring coverage for related attack techniques

Prerequisites

  • Python 3.9+ with volatility3 framework installed
  • Memory dump file (.raw, .vmem, .dmp format)
  • Understanding of virtual memory layout and VAD (Virtual Address Descriptor) trees
  • Familiarity with common shellcode patterns and NOP sled encodings

Steps

Step 1: Identify Suspicious Processes

Use Volatility3 windows.malfind to scan for processes with executable injected memory regions.

Step 2: Analyze VAD Entries

Examine VAD tree entries using windows.vadinfo for large contiguous allocations with RWX permissions.

Step 3: Scan for NOP Sled Patterns

Search suspicious memory regions for NOP sled signatures (0x90 sequences, 0x0c0c0c0c patterns).

Step 4: Extract and Analyze Shellcode

Dump suspicious memory regions and identify shellcode using byte pattern analysis.

Expected Output

JSON report with suspicious processes, heap spray indicators, NOP sled locations, memory region sizes, and extracted shellcode hashes.

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 65 lines · 46 tokens per session scan A 93825dc2e7d0

Subscribe to this mod's changes

analyzing-heap-spray-exploitation is a skill published in the GitHub repository Youngmaidainon/Agent-Level-Up (3 stars, last pushed 16d ago), licensed MIT. It adds 46 tokens to every session and 553 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to analyzing-heap-spray-exploitation, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

analyzing-heap-spray-exploitation

Detect and analyze heap spray attacks in memory dumps using Volatility3 plugins to identify NOP sled patterns, shellcode landing zones, and suspicious large allocations in process virtual address space.

marysatasselshaped667/skills-collection-1 · 46 tokens

analyzing-heap-spray-exploitation

Detect and analyze heap spray attacks in memory dumps using Volatility3 plugins to identify NOP sled patterns, shellcode landing zones, and suspicious large allocations in process virtual address space.

plurigrid/asi · 46 tokens

analyzing-heap-spray-exploitation

Detect and analyze heap spray attacks in memory dumps using Volatility3 plugins to identify NOP sled patterns, shellcode landing zones, and suspicious large allocations in process virtual address space.

pinkpixel-dev/skills-collection-1 · 46 tokens

analyzing-heap-spray-exploitation

Detect and analyze heap spray attacks in memory dumps using Volatility3 plugins to identify NOP sled patterns, shellcode landing zones, and suspicious large allocations in process virtual address space.

autohandai/community-skills · 46 tokens

analyzing-heap-spray-exploitation

Detect and analyze heap spray attacks in memory dumps using Volatility3 plugins to identify NOP sled patterns, shellcode landing zones, and suspicious large allocations in process virtual address space.

mukul975/Anthropic-Cybersecurity-Skills · 46 tokens

analyzing-heap-spray-exploitation

Use when detect and analyze heap spray attacks in memory dumps using Volatility3 plugins to identify NOP sled patterns, shellcode landing zones, and suspicious large allocations in process virtual address space. Use when detecting and analyze heap spray attacks in memory dumps using.

oyi77/1ai-skills · 61 tokens