Works with the AI tools you already use
Bounty Security Pattern Auditor Pro 399-Pattern Security
Premium security auditor with a 399-pattern library for code, API, and smart contract vulnerability detection.
$69.99
Bounty Security Pattern Auditor Pro 399-Pattern Security
Example session with this skill installed
Audit this Node.js API endpoint for auth flaws and injection: app.get('/user/:id', (req, res) => { const query = "SELECT * FROM users WHERE id = " + req.params.id; db.execute(query)...
- Read your context and instructions
- Compiled the bounty security pattern
- Generated the document
I have completed the security audit of the provided Node.js API endpoint. Using the BSA pattern library, I identified a critical SQL injection vulnerability due to improper input sanitization.
Security Audit Report
Executive Summary
- Scope: Node.js Express API / Database Query Layer
- Relevant Patterns: Input Validation, SQL Injection, Data Access
- Findings: 1 Critical
- Remediation Priority: Immediate
Findings Matrix
| ID | Pattern | CWE | Severity | Confidence | Component | Status |
|---|---|---|---|---|---|---|
| BSA-102 | SQL Injection | CWE-89 | Critical | High | /user/:id | Confirmed |
Detailed Finding
Finding: Unsanitized URL parameter in SQL query
Pattern ID: BSA-102
CWE: CWE-89: Improper Neutralization of Special Elements used in an SQL Command
Severity: Critical
Confidence: High
Category: Injection
Location: app.get('/user/:id', ...) line 2
Evidence: The code directly concatenates req.params.id into the SQL string without parameterized queries or escaping.
False-Positive Checks: Checked for ORM/Query builder abstraction; none found. Input is sourced directly from a public route parameter.
Impact: Remote attackers can execute arbitrary SQL commands, leading to full database compromise or unauthorized data exfiltration.
Attack Preconditions: Access to the public /user/ endpoint.
Safe Validation: Attempt to pass a non-numeric string like '1 OR 1=1' in a local test environment and observe query construction in logs.
Remediation: Implement parameterized queries using the db.execute('SELECT * FROM users WHERE id = ?', [req.params.id]) syntax.
Regression Test: Add a unit test that passes a malicious string to the handler and asserts that the database driver receives a parameterized call rather than a concatenated string.
Next steps
- Update the database call to use prepared statements immediately.
- Implement a global input validation middleware (e.g., Joi or express-validator) to enforce UUID or integer types for ID parameters.
- Review all other
db.executecalls in the repository for similar concatenation patterns.
bounty-security-pattern-auditor-pro-399-.pdf
PDF · document
Example file from a real run - the skill writes it into your workspace.
Connects securely to your tools. The creator never sees your data.
What you get
About this skill
The problem
Manual security reviews are slow and prone to oversight. Developers often miss subtle vulnerability patterns in complex codebases, leading to high-severity risks reaching production.
What it does
- Analyzes application code, APIs, and smart contracts against a library of 399 structured security patterns.
- Maps every identified vulnerability to specific CWE identifiers and severity levels.
- Filters noise by performing structured false-positive checks based on framework defaults and middleware controls.
- Generates prioritized executive reports with concrete evidence, impact assessments, and remediation steps.
Why this beats prompting it yourself
General-purpose LLMs lack the rigor of a structured 399-pattern security library. This skill enforces a disciplined auditing workflow that requires evidence-driven findings, preventing the speculative noise and hallucinations common in DIY prompts.
Use cases
- Auditing DeFi smart contracts for reentrancy, oracle manipulation, and accounting invariants.
- Performing pre-PR security sweeps on web APIs and cloud infrastructure configurations.
- Validating supply chain security and dependency behavior in multi-tenant systems.
- Generating professional security reports for stakeholders during a development sprint.
Known limitations
Authorized defensive testing only. It does not support live-system exploitation, malware generation, or destructive actions.
How to install
Works the same in every agent - Claude, Cursor, Codex, Copilot and 20+ more.
- 1
Download the ZIP
Free skills download straight away. Paid skills unlock right after purchase.
- 2
Unzip into your skills folder
Every agent reads skills from one folder on your machine. Drop the unzipped folder in there.
- 3
Ask your agent to use it
Restart the agent if it was already running. It picks the skill up automatically - no config needed.
Skills folder by agent
Click the path to copy it. Create the folder if it does not exist yet.
Reviews
No reviews yet
Be one of the first to try it. Every listed skill passes our trust checks below.
Security scanned
Passed our 8-point scan before listing
Fresh listing
Recently published to Agensi
30-day refund
Not a fit? Get your money back
Trust & safety
Security scanned
Verified clean 9 days ago
- Passed all security checks, Safe to install