| name | owasp-security |
| description | Use when reviewing code for security vulnerabilities, implementing authentication/authorization, handling user input, or discussing web application security. Covers OWASP Top 10:2025, ASVS 5.0, and Agentic AI security (2026). |
| license | MIT |
OWASP Security Best Practices Skill
Apply these security standards when writing or reviewing code.
Quick Reference: OWASP Top 10:2025
| # | Vulnerability | Key Prevention |
|---|
| A01 | Broken Access Control | Deny by default, enforce server-side, verify ownership |
| A02 | Security Misconfiguration | Harden configs, disable defaults, minimize features |
| A03 | Supply Chain Failures | Lock versions, verify integrity, audit dependencies |
| A04 | Cryptographic Failures | TLS 1.2+, AES-256-GCM, Argon2/bcrypt for passwords |
| A05 | Injection | Parameterized queries, input validation, safe APIs |
| A06 | Insecure Design | Threat model, rate limit, design security controls |
| A07 | Auth Failures | MFA, check breached passwords, secure sessions |
| A08 | Integrity Failures | Sign packages, SRI for CDN, safe serialization |
| A09 | Logging Failures | Log security events, structured format, alerting |
| A10 | Exception Handling | Fail-closed, hide internals, log with context |
Security Code Review Checklist
When reviewing code, check for these issues:
Input Handling
Authentication & Sessions
Access Control
Data Protection
Error Handling
Secure Code Patterns
SQL Injection Prevention
cursor.execute(f"SELECT * FROM users WHERE id = {user_id}")
cursor.execute("SELECT * FROM users WHERE id = %s", (user_id,))
Command Injection Prevention
os.system(f"convert {filename} output.png")
subprocess.run(["convert", filename, "output.png"], shell=False)
Password Storage
hashlib.md5(password.encode()).hexdigest()
from argon2 import PasswordHasher
PasswordHasher().hash(password)
Access Control
@app.route('/api/user/<user_id>')
def get_user(user_id):
return db.get_user(user_id)
@app.route('/api/user/<user_id>')
@login_required
def get_user(user_id):
if current_user.id != user_id and not current_user.is_admin:
abort(403)
return db.get_user(user_id)
Error Handling
@app.errorhandler(Exception)
def handle_error(e):
return str(e), 500
@app.errorhandler(Exception)
def handle_error(e):
error_id = uuid.uuid4()
logger.exception(f"Error {error_id}: {e}")
return {"error": "An error occurred", "id": str(error_id)}, 500
Fail-Closed Pattern
def check_permission(user, resource):
try:
return auth_service.check(user, resource)
except Exception:
return True
def check_permission(user, resource):
try:
return auth_service.check(user, resource)
except Exception as e:
logger.error(f"Auth check failed: {e}")
return False
Agentic AI Security (OWASP 2026)
When building or reviewing AI agent systems, check for:
| Risk | Description | Mitigation |
|---|
| ASI01: Goal Hijack | Prompt injection alters agent objectives | Input sanitization, goal boundaries, behavioral monitoring |
| ASI02: Tool Misuse | Tools used in unintended ways | Least privilege, fine-grained permissions, validate I/O |
| ASI03: Identity & Privilege Abuse | Delegated trust, inherited credentials, role chain exploits | Short-lived scoped tokens, identity verification |
| ASI04: Supply Chain | Compromised plugins/MCP servers | Verify signatures, sandbox, allowlist plugins |
| ASI05: Code Execution | Unsafe code generation/execution | Sandbox execution, static analysis, human approval |
| ASI06: Memory Poisoning | Corrupted RAG/context data | Validate stored content, segment by trust level |
| ASI07: Insecure Inter-Agent Comms | Spoofing/intercepting agent-to-agent messages | Authenticate, encrypt, verify message integrity |
| ASI08: Cascading Failures | Errors propagate across systems | Circuit breakers, graceful degradation, isolation |
| ASI09: Human-Agent Trust Exploitation | Over-trust in agents leveraged to manipulate users | Label AI content, user education, verification steps |
| ASI10: Rogue Agents | Compromised agents acting maliciously | Behavior monitoring, kill switches, anomaly detection |
Agent Security Checklist
OWASP Application Security Verification Standard 5.0
Level 1 (All Applications)
- Passwords minimum 12 characters
- Check against breached password lists
- Rate limiting on authentication
- Session tokens 128+ bits entropy
- HTTPS everywhere
Level 2 (Sensitive Data)
- All L1 requirements plus:
- MFA for sensitive operations
- Cryptographic key management
- Comprehensive security logging
- Input validation on all parameters
Level 3 (Critical Systems)
- All L1/L2 requirements plus:
- Hardware security modules for keys
- Threat modeling documentation
- Advanced monitoring and alerting
- Penetration testing validation
Deep Security Analysis Mindset
When reviewing any language, think like a senior security researcher:
- Memory Model: How does the language handle memory? Managed vs manual? GC pauses exploitable?
- Type System: Weak typing = type confusion attacks. Look for coercion exploits.
- Serialization: Every language has its pickle/Marshal equivalent. All are dangerous.
- Concurrency: Race conditions, TOCTOU, atomicity failures specific to the threading model.
- FFI Boundaries: Native interop is where type safety breaks down.
- Standard Library: Historic CVEs in std libs (Python urllib, Java XML, Ruby OpenSSL).
- Package Ecosystem: Typosquatting, dependency confusion, malicious packages.
- Build System: Makefile/gradle/npm script injection during builds.
- Runtime Behavior: Debug vs release differences (Rust overflow, C++ assertions).
- Error Handling: How does the language fail? Silently? With stack traces? Fail-open?
For any language not listed: Research its specific CWE patterns, CVE history, and known footguns. The examples above are entry points, not complete coverage.
Language-specific Security Quirks
Important: The examples below are illustrative starting points, not exhaustive. When reviewing code, think like a senior security researcher: consider the language's memory model, type system, standard library pitfalls, ecosystem-specific attack vectors, and historical CVE patterns. Each language has deeper quirks beyond what's listed here.
Different languages have unique security pitfalls. Here are the top 20 languages with key security considerations. Go deeper for the specific language you're working in:
Shell (Bash)
Main Risks: Command injection, word splitting, globbing
rm $user_file
rm "$user_file"
eval "$user_command"
Watch for: Unquoted variables, eval, backticks, $(...) with user input, missing set -euo pipefail
Lua
Main Risks: Sandbox escape, loadstring injection
loadstring(user_code)()
Watch for: loadstring, loadfile, dofile, os.execute, io library, debug library
JavaScript / TypeScript
Main Risks: Prototype pollution, XSS, eval injection
Object.assign(target, userInput)
Object.assign(Object.create(null), validated)
eval(userCode)
Watch for: eval(), innerHTML, document.write(), prototype chain manipulation, __proto__
Python
Main Risks: Pickle deserialization, format string injection, shell injection
pickle.loads(user_data)
json.loads(user_data)
query = "SELECT * FROM users WHERE name = '%s'" % user_input
cursor.execute("SELECT * FROM users WHERE name = %s", (user_input,))
Watch for: pickle, eval(), exec(), os.system(), subprocess with shell=True
Ruby
Main Risks: Mass assignment, YAML deserialization, regex DoS
User.new(params[:user])
User.new(params.require(:user).permit(:name, :email))
YAML.load(user_input)
YAML.safe_load(user_input)
Watch for: YAML.load, Marshal.load, eval, send with user input, .permit!
C/C++
Main Risks: Buffer overflow, use-after-free, format string
char buf[10]; strcpy(buf, userInput);
strncpy(buf, userInput, sizeof(buf) - 1);
printf(userInput);
printf("%s", userInput);
Watch for: strcpy, sprintf, gets, pointer arithmetic, manual memory management, integer overflow
Rust
Main Risks: Unsafe blocks, FFI boundary issues, integer overflow in release
unsafe { ptr::read(user_ptr) }
let x: u8 = 255;
let y = x + 1;
let y = x.checked_add(1).unwrap_or(255);
Watch for: unsafe blocks, FFI calls, integer overflow in release builds, .unwrap() on untrusted input
Go
Main Risks: Race conditions, template injection, slice bounds
go func() { counter++ }()
atomic.AddInt64(&counter, 1)
template.HTML(userInput)
{{.UserInput}}
Watch for: Goroutine data races, template.HTML(), unsafe package, unchecked slice access
Swift
Main Risks: orce unwrapping crashes, Objective-C interop
let value = jsonDict["key"]!
guard let value = jsonDict["key"] else { return }
String(format: userInput, args)
Watch for: force unwrap (!), try!, ObjC bridging, NSSecureCoding misuse
Kotlin
Main Risks: Null safety bypass, Java interop, serialization
val len = javaString.length
val len = javaString?.length ?: 0
clazz.getDeclaredMethod(userInput)
Watch for: Java interop nulls (! operator), reflection, serialization, platform types
SQL
Main Risks: Injection, privilege escalation, data exfiltration
"SELECT * FROM users WHERE id = " + userId
Watch for: Dynamic SQL, EXECUTE IMMEDIATE, stored procedures with dynamic queries, privilege grants