Method Clobbering Detection

SkillSecurity

Detect method clobbering via user-controlled object keys that overwrite built-in methods like toString, valueOf, or hasOwnProperty, causing crashes or logic bypass.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Method Clobbering Detection skill

What this skill tells your AI

The instructions your AI receives, as published by byamb4/find-cve-agent in skills/method-clobbering/SKILL.md and read by ahel’s review.

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

KeyNormal TypeEffect When Clobbered
toStringFunctionobj + "" throws TypeError
valueOfFunctionobj == x or coercion throws TypeError
hasOwnPropertyFunctionobj.hasOwnProperty(k) throws TypeError
constructorFunctionType checks fail
__proto__ObjectPrototype pollution (see prototype-pollution skill)
__defineGetter__FunctionLegacy getter/setter manipulation
__defineSetter__FunctionLegacy getter/setter manipulation
__lookupGetter__FunctionLegacy getter/setter introspection
toJSONundefinedJSON.stringify(obj) throws TypeError
thenundefinedawait 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 then

CVSS 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

Signals

GitHub stars
50
Forks
9
Last commit
Mar 2026
Advanced
Catalog kind
skill
Gateway key
method-clobbering
Source
github.com/byamb4/find-cve-agent