/method-clobbering
Detect method clobbering via user-controlled object keys that overwrite built-in methods like toString, valueOf, or hasOwnProperty, causing crashes or logic bypass.
$ npx -y skills add ByamB4/find-cve-agent --skill method-clobbering --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/method-clobbering
Context preview
The summary Claude sees to decide when to auto-load this skill.
Detect method clobbering via user-controlled object keys that overwrite built-in methods like toString, valueOf, or hasOwnProperty, causing crashes or logic bypass.
SKILL.md
method-clobbering.SKILL.mdname: method-clobbering
description: "Detect method clobbering via user-controlled object keys that overwrite built-in methods like toString, valueOf, or hasOwnProperty, causing crashes or logic bypass."
metadata:
filePattern:
- "**/*.js"
- "**/*.ts"
bashPattern:
- "grep.*(toString|valueOf|hasOwnProperty|constructor)"
priority: 75Method Clobbering Detection
When to Use
Audit CSV/form/query string parsers that create plain objects from untrusted input where the attacker can control property names (keys), not just values.
Key Insight
When a parser creates a plain object `{}` from user input, the attacker can set keys like `toString`, `valueOf`, `hasOwnProperty` to non-function values. Any code that later calls these methods on the object will throw a TypeError.
**Important**: JSON.parse can do the same thing. You MUST show why the library-specific clobbering is worse than what JSON.parse enables. Show a REAL crash path, not just theoretical property overwrite.
Dangerous Keys
| Key | Normal Type | Effect When Clobbered | |-----|------------|----------------------| | `toString` | Function | `obj + ""` throws TypeError | | `valueOf` | Function | `obj == x` or coercion throws TypeError | | `hasOwnProperty` | Function | `obj.hasOwnProperty(k)` throws TypeError | | `constructor` | Function | Type checks fail | | `__proto__` | Object | Prototype pollution (see prototype-pollution skill) | | `__defineGetter__` | Function | Legacy getter/setter manipulation | | `__defineSetter__` | Function | Legacy getter/setter manipulation | | `__lookupGetter__` | Function | Legacy getter/setter introspection | | `toJSON` | undefined | `JSON.stringify(obj)` throws TypeError | | `then` | undefined | `await obj` or Promise.resolve(obj) treats obj as thenable |
Process
Step 1: Find Parsers That Create Objects
grep -rn "\[key\]\s*=" . --include="*.js" --include="*.ts"
grep -rn "\[header\]\|\[field\]\|\[name\]\|\[prop\]" .
grep -rn "result\[\|output\[\|obj\[\|data\[\|parsed\[" .
Step 2: Check If Keys Are User-Controlled
Common sources of attacker-controlled keys:
- CSV column headers (first row)
- HTTP form field names
- Query string parameter names
- Configuration file keys
- JSON object keys (but JSON.parse already handles this)
Step 3: Check for Key Filtering
grep -rn "Object\.create(null)" . # Null prototype = safe
grep -rn "hasOwnProperty\|toString\|valueOf" . | grep -i "filter\|block\|skip"
grep -rn "Object\.keys\|Map\|new Map" .
Step 4: Demonstrate Real Impact
You MUST show one of: 1. **TypeError crash**: Code calls `obj.toString()` or `obj.hasOwnProperty()` on the parsed result 2. **Logic bypass**: Code checks `obj.hasOwnProperty(x)` for security decisions 3. **Thenable confusion**: Code uses `await` or Promise.resolve() on the parsed object
# Find code that calls methods on parsed objects
grep -rn "\.toString()\|\.valueOf()\|\.hasOwnProperty(" .
grep -rn "JSON\.stringify(" . # Uses toJSON
grep -rn "await\|Promise\.resolve" . # Uses thenCVSS Guidance
- TypeError crash causing DoS (unauthenticated): HIGH 7.5
- Logic bypass via hasOwnProperty clobbering: HIGH 7.5
- Thenable confusion: MEDIUM 5.3-6.5
- No demonstrated crash/bypass: likely rejected
Self-Check Before Reporting
1. Can JSON.parse achieve the same clobbering? If yes, why is this worse? 2. Does code actually call methods on the parsed object? 3. Is the crash catchable (try/catch around it)? 4. Is the parser documented as expecting trusted input?
References
- [Sinks](references/sinks.md) -- Parser patterns creating objects from untrusted keys
- [False Positive Indicators](references/false-positive-indicators.md)
- [PoC Skeleton](references/poc-skeleton.md)
Read more
name: method-clobbering
description: "Detect method clobbering via user-controlled object keys that overwrite built-in methods like toString, valueOf, or hasOwnProperty, causing crashes or logic bypass."
metadata:
filePattern:
- "**/*.js"
- "**/*.ts"
bashPattern:
- "grep.*(toString|valueOf|hasOwnProperty|constructor)"
priority: 75Method Clobbering Detection
When to Use
Audit CSV/form/query string parsers that create plain objects from untrusted input where the attacker can control property names (keys), not just values.
Key Insight
When a parser creates a plain object `{}` from user input, the attacker can set keys like `toString`, `valueOf`, `hasOwnProperty` to non-function values. Any code that later calls these methods on the object will throw a TypeError.
**Important**: JSON.parse can do the same thing. You MUST show why the library-specific clobbering is worse than what JSON.parse enables. Show a REAL crash path, not just theoretical property overwrite.
Dangerous Keys
| Key | Normal Type | Effect When Clobbered | |-----|------------|----------------------| | `toString` | Function | `obj + ""` throws TypeError | | `valueOf` | Function | `obj == x` or coercion throws TypeError | | `hasOwnProperty` | Function | `obj.hasOwnProperty(k)` throws TypeError | | `constructor` | Function | Type checks fail | | `__proto__` | Object | Prototype pollution (see prototype-pollution skill) | | `__defineGetter__` | Function | Legacy getter/setter manipulation | | `__defineSetter__` | Function | Legacy getter/setter manipulation | | `__lookupGetter__` | Function | Legacy getter/setter introspection | | `toJSON` | undefined | `JSON.stringify(obj)` throws TypeError | | `then` | undefined | `await obj` or Promise.resolve(obj) treats obj as thenable |
Process
Step 1: Find Parsers That Create Objects
grep -rn "\[key\]\s*=" . --include="*.js" --include="*.ts" grep -rn "\[header\]\|\[field\]\|\[name\]\|\[prop\]" . grep -rn "result\[\|output\[\|obj\[\|data\[\|parsed\[" .
Step 2: Check If Keys Are User-Controlled
Common sources of attacker-controlled keys:
- CSV column headers (first row)
- HTTP form field names
- Query string parameter names
- Configuration file keys
- JSON object keys (but JSON.parse already handles this)
Step 3: Check for Key Filtering
grep -rn "Object\.create(null)" . # Null prototype = safe grep -rn "hasOwnProperty\|toString\|valueOf" . | grep -i "filter\|block\|skip" grep -rn "Object\.keys\|Map\|new Map" .
Step 4: Demonstrate Real Impact
You MUST show one of: 1. **TypeError crash**: Code calls `obj.toString()` or `obj.hasOwnProperty()` on the parsed result 2. **Logic bypass**: Code checks `obj.hasOwnProperty(x)` for security decisions 3. **Thenable confusion**: Code uses `await` or Promise.resolve() on the parsed object
# Find code that calls methods on parsed objects
grep -rn "\.toString()\|\.valueOf()\|\.hasOwnProperty(" .
grep -rn "JSON\.stringify(" . # Uses toJSON
grep -rn "await\|Promise\.resolve" . # Uses thenCVSS Guidance
- TypeError crash causing DoS (unauthenticated): HIGH 7.5
- Logic bypass via hasOwnProperty clobbering: HIGH 7.5
- Thenable confusion: MEDIUM 5.3-6.5
- No demonstrated crash/bypass: likely rejected
Self-Check Before Reporting
1. Can JSON.parse achieve the same clobbering? If yes, why is this worse? 2. Does code actually call methods on the parsed object? 3. Is the crash catchable (try/catch around it)? 4. Is the parser documented as expecting trusted input?
References
- [Sinks](references/sinks.md) -- Parser patterns creating objects from untrusted keys
- [False Positive Indicators](references/false-positive-indicators.md)
- [PoC Skeleton](references/poc-skeleton.md)
Open Source CVE Hunting Harness for Claude Code A Claude Code plugin that systematically finds real CVEs in open source packages through coordinated multi-agent security research.
Repo: ByamB4/find-cve-agent
Other skills on find-cve-agent.
- /advisory-mining
Mine GitHub Security Advisories and CVE databases for incomplete fixes, finding variant vulnerabilities in patched code or similar patterns in related packages.
Open skill - /auth-bypass
Detect authentication and authorization bypass vulnerabilities including missing auth middleware, JWT algorithm confusion, IDOR, and session fixation.
Open skill - /code-injection-codegen
Detect code injection vulnerabilities in packages that dynamically generate or evaluate code via new Function(), eval(), vm.run*, or template literal interpolation.
Open skill - /command-injection
Detect OS command injection via shell execution sinks where user-controlled input reaches system commands without proper sanitization.
Open skill - /cross-pollination
Cross-pollination multiplier technique: find a vulnerability in one package, then search for the same pattern across all similar packages to multiply findings.
Open skill - /decompression-bomb
Detect decompression bomb vulnerabilities where compressed input can expand to exhaust memory, targeting buffer-based decompression without size limits.
Open skill

