apiscan
API security audit — REST, GraphQL, JWT analysis, parameter discovery
Focused secret and credential extraction from a binary
> /plugin marketplace add ogrodev/fsociety > /plugin install fsociety@ogrodev-fsociety
How it fires
How this command gets triggered: by you, by Claude, or both.
/secretsContext preview
What this command does when you run it.
Focused secret and credential extraction from a binary
description: Focused secret and credential extraction from a binary allowed-tools: Bash, Read, Write, Glob, Grep argument-hint: <path-to-binary>
> **Storage Policy**: ALL output files MUST be saved in the project directory. NEVER write to `/tmp/` or any system temporary directory.
Parse `$ARGUMENTS` to get the binary path.
node "${CLAUDE_PLUGIN_ROOT}/scripts/binary-hasher.js" hash "$ARGUMENTS"Run both ASCII and Unicode extraction:
strings -a -n 6 <binary> # ASCII strings (min 6 chars) strings -a -n 6 -el <binary> # UTF-16 LE strings
floss <binary> # FLARE Obfuscated String Solver
FLOSS will extract stack strings, tight strings, and decoded strings that `strings` misses.
Apply regex patterns to all extracted strings:
| Pattern | Type | Example | |---------|------|---------| | `https?://[^\s"']+` | url | `http://c2.evil.com/beacon` | | `\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}` | ip | `192.168.1.100` | | `AKIA[0-9A-Z]{16}` | api-key | AWS Access Key | | `AIza[0-9A-Za-z_-]{35}` | api-key | GCP API Key | | `eyJ[A-Za-z0-9_-]+\.eyJ[A-Za-z0-9_-]+` | token | JWT Token | | `[a-zA-Z0-9+/]{40,}={0,2}` | credential | Base64 encoded blob | | `-----BEGIN .* KEY-----` | crypto-key | PEM private key | | `HKEY_(LOCAL_MACHINE\|CURRENT_USER)\\.*` | registry-key | Registry path | | `[13][a-km-zA-HJ-NP-Z1-9]{25,34}` | wallet | Bitcoin address | | `password\s*[=:]\s*\S+` | credential | Hardcoded password | | `(user\|admin\|login)\s*[=:]\s*\S+` | credential | Username/credential | | `Data Source=.*` | credential | Connection string |
For each base64 blob found, decode and inspect:
echo "<blob>" | base64 -d 2>/dev/null
Look for decoded URLs, commands, scripts, or binary data.
For each unique finding:
node "${CLAUDE_PLUGIN_ROOT}/scripts/findings-tracker.js" add "<binary>" "<type>" "<value>" "<severity>" "<title>"Severity guidelines:
Save findings report to `secrets-<binary-name>.md`.
Multi-plugin marketplace for Claude Code offensive security plugins
Repo: ogrodev/fsociety
API security audit — REST, GraphQL, JWT analysis, parameter discovery
Archive or list previous engagement snapshots
Password brute force and hash cracking against target services
Resume or execute an attack campaign with progress tracking
Show running scans, system health, and engagement status