agentic-actions-audito…
Audits GitHub Actions workflows for security vulnerabilities in AI agent integrations including Claude Code Action, Gemini CLI, OpenAI Codex, and GitHub AI…
Analyzes DWARF debug information in compiled binaries. Use when inspecting .debug_* sections, DIE trees, or DW_TAG_/DW_AT_ entries with dwarfdump/llvm-dwarfdump or readelf, verifying debug info with llvm-dwarfdump --verify, answering DWARF standard questions, or writing code
$ npx -y skills add trailofbits/skills --skill dwarf-expert --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/dwarf-expertContext preview
The summary Claude sees to decide when to auto-load this skill.
Analyzes DWARF debug information in compiled binaries. Use when inspecting .debug_* sections, DIE trees, or DW_TAG_/DW_AT_ entries with dwarfdump/llvm-dwarfdump or readelf, verifying debug info with llvm-dwarfdump --verify, answering DWARF standard questions, or writing code
name: dwarf-expert description: Analyzes DWARF debug information in compiled binaries. Use when inspecting .debug_* sections, DIE trees, or DW_TAG_/DW_AT_ entries with dwarfdump/llvm-dwarfdump or readelf, verifying debug info with llvm-dwarfdump --verify, answering DWARF standard questions, or writing code that parses DWARF (libdwarf, pyelftools, gimli). effort: medium allowed-tools: Read Write Edit Bash Grep Glob WebSearch WebFetch
Expertise for DWARF debug info: parsing and searching it, verifying its integrity, answering questions about the standard, and writing code that consumes it. Out of scope: runtime debugging (use gdb/lldb), reverse engineering beyond the DWARF sections (use Ghidra/IDA), and compiler-specific DWARF generation bugs.
When precision matters, look standard details up instead of answering from memory:
1. **dwarfstd.org** — the official specification. Web-search specific sections, e.g. "DWARF5 DW_TAG_subprogram attributes site:dwarfstd.org". 2. **LLVM** — `llvm/lib/DebugInfo/DWARF/` is a reliable reference implementation: `DWARFDie.cpp` (DIE and attribute access), `DWARFUnit.cpp` (compilation units), `DWARFDebugLine.cpp` (line tables), `DWARFVerifier.cpp` (validation). 3. **libdwarf** — the reference C implementation at github.com/davea42/libdwarf-code.
Prefer `dwarfdump` over `readelf` for DWARF-specific work. Two implementations exist — libdwarf's `dwarfdump` and LLVM's `llvm-dwarfdump` — with different options, and a bare `dwarfdump` command may be either: check `dwarfdump --version` first. The options below are LLVM's.
On macOS, linked Mach-O executables do not carry DWARF: it stays in the `.o` files until `dsymutil` collects it into a `.dSYM` bundle. Point `dwarfdump` at the dSYM (or the object files), not the executable. `pyelftools` is ELF-only — for Mach-O scripted work, stay with the LLVM tools.
selected entries — parameters, locals, and struct members are children of function and type DIEs
exhaustive; fall back to `--name` when it misses
Escalate through these strategies as the query grows more complex:
1. **Name or address match**: `--find`, then `--name`; `--lookup` for addresses. 2. **Attribute or type queries** (e.g. all parameters of type `float *`): dump and filter. `grep -B` pulls in the header line carrying each DIE's offset: `llvm-dwarfdump file | grep -B 5 "float \*" | grep DW_TAG_formal_parameter`, then print each DIE at its offset with `--debug-info=<offset> --show-children` (`--lookup` takes a program address, not a DIE offset). 3. **Multi-attribute or structural queries**: when grep pipelines turn brittle, write a Python script using `pyelftools` instead.
relationships, address ranges). `--error-display=<quiet|summary|details|full>` controls detail; `--verify-json=<path>` writes a machine-readable error summary; `--quiet` for exit-code-only checks.
compare across compiler versions or optimization levels to catch regressions.
Verify after producing DWARF (compilers, binary rewriters), when a debugger misbehaves on a binary, and when developing DWARF tooling against known-good files.
When a current-generation compiler emitted an old DWARF version, the build explicitly passed `-gdwarf-N` — modern gcc and clang default to v4/v5, so check the build system rather than assuming a toolchain default. GCC embeds its flags in `DW_AT_producer`, so the pin is often readable right there; clang's producer string carries no flags. Old versions remain common in the wild and read the same way apart from surface forms: in v2 output, member offsets appear as location expressions (`DW_OP_plus_uconst`) and linkage names as `DW_AT_MIPS_linkage_name`.
For general ELF structure, or when `dwarfdump` is unavailable:
Prefer an existing library over parsing by hand:
| Library | Language | Notes | |---------|----------|-------| | `libdwarf` | C/C++ | github.com/davea42/libdwarf-code — low-level; used to implement `dwarfdump` | | `pyelftools` | Python | github.com/eliben/pyelftools — also parses ELF in general | | `gimli` | Rust | github.com/gimli-rs/gimli — pair with `object` to load container files | | `debug/dwarf` | Go | standard library | | `LibObjectFile` | .NET | github.com/xoofx/LibObjectFile — also handles ELF/PE object files |
Default to Python with `pyelftools` for one-off scripts unless the task dictates otherwise.
DWARF-specific pitfalls to handle — and to check for when reviewing DWARF code:
`DW_AT_abstract_origin` (inlined instances) or `DW_AT_specification` (out-of-line definitions) — resolve the chain before concluding data is absent.
`DW_TAG_pointer_type`, ...) wrap the underlying type; walk `DW_AT_type` links to reach the base type.
A Claude Code plugin marketplace from Trail of Bits providing skills to enhance AI-assisted security analysis, testing, and development workflows. Codex can load this marketplace through its Claude marketplace compatibility.
Audits GitHub Actions workflows for security vulnerabilities in AI agent integrations including Claude Code Action, Gemini CLI, OpenAI Codex, and GitHub AI…
Understand a codebase before looking for bugs in it - what each function assumes, what it guarantees, and what it depends on elsewhere. Use when starting an…
Scans Algorand smart contracts for 11 common vulnerabilities including rekeying attacks, unchecked transaction fees, missing field validations, and access…
Prepares codebases for security review using Trail of Bits' checklist. Helps set review goals, runs static analysis tools, increases test coverage, removes…
Scans Cairo/StarkNet smart contracts for 6 critical vulnerabilities including felt252 arithmetic overflow, L1-L2 messaging issues, address conversion problems,…
Systematic code maturity assessment using Trail of Bits' 9-category framework. Analyzes codebase for arithmetic safety, auditing practices, access controls,…