Conducts security testing of REST, GraphQL, and gRPC APIs to identify vulnerabilities in authentication, authorization, rate limiting, input validation, and business logic. The tester uses the OWASP API Security Top 10 as the testing framework, combining Burp Suite interception with Postman collections and custom scripts to test endpoint security at every privilege level. Activates for requests involving API security testing, REST API pentest, GraphQL security assessment, or API vulnerability testing.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionconducting-api-security-testingExecute the skills CLI command in your project's root directory to begin installation:
Fetches conducting-api-security-testing from mukul975/Anthropic-Cybersecurity-Skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate conducting-api-security-testing. Access via /conducting-api-security-testing in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
8.6K
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
8.6K
stars
| name | conducting-api-security-testing |
| description | 'Conducts security testing of REST, GraphQL, and gRPC APIs to identify vulnerabilities in authentication, authorization, rate limiting, input validation, and business logic. The tester uses the OWASP API Security Top 10 as the testing framework, combining Burp Suite interception with Postman collections and custom scripts to test endpoint security at every privilege level. Activates for requests involving API security testing, REST API pentest, GraphQL security assessment, or API vulnerability testing. ' |
| domain | cybersecurity |
| subdomain | penetration-testing |
| tags | - API-security - OWASP-API-Top10 - REST - GraphQL - authorization-testing |
| version | 1.0.0 |
| author | mahipal |
| license | Apache-2.0 |
| nist_csf | - ID.RA-01 - ID.RA-06 - GV.OV-02 - DE.AE-07 |
Do not use against APIs without written authorization, for load testing or denial-of-service testing unless explicitly scoped, or for testing production APIs that process real financial transactions without safeguards.
Map the complete API attack surface:
{"query": "{__schema{types{name,fields{name,args{name,type{name}}}}}}"}
/api/v1/, /api/v2/, /api/internal/), debug endpoints (/api/debug, /api/health, /api/metrics), and administrative endpointsTest authentication mechanisms for weaknesses:
alg to none and remove the signaturealg from RS256 to HS256 and sign with the public keyhashcat -m 16500 jwt.txt wordlist.txtTest for Broken Object Level Authorization (BOLA) and Broken Function Level Authorization (BFLA):
GET /api/users/123/orders -> GET /api/users/456/ordersDELETE /api/users/456 (admin-only delete)PUT /api/users/456/role (role modification)GET /api/admin/dashboard (admin panel data)PUT /api/users/123
{"name": "Test", "role": "admin", "isVerified": true, "balance": 99999}
Test API inputs for injection and validation flaws:
{"username": "admin' OR 1=1--", "password": "test"}{"username": {"$gt": ""}, "password": {"$gt": ""}}Check for excessive data exposure in API responses:
/api/users?page=1, page=2, etc.) to extract all records/api/debug, /api/status, /metrics, /health, /.env, /api/swagger.json for exposed internal information| Term | Definition |
|---|---|
| BOLA | Broken Object Level Authorization (OWASP API #1); failure to verify that the requesting user is authorized to access a specific object, enabling IDOR attacks |
| BFLA | Broken Function Level Authorization (OWASP API #5); failure to restrict administrative or privileged API functions from being accessed by lower-privilege users |
| Mass Assignment | A vulnerability where the API binds client-provided data to internal object properties without filtering, allowing attackers to modify fields they should not have access to |
| GraphQL Introspection | A built-in GraphQL feature that exposes the complete API schema including all types, fields, and relationships; should be disabled in production |
| JWT | JSON Web Token; a self-contained token format used for API authentication containing claims signed with a secret or key pair |
| Rate Limiting | Controls that restrict the number of API requests a client can make within a time window, preventing brute force, enumeration, and abuse |
Context: A fintech startup has a mobile banking application with a REST API backend. The API handles account management, fund transfers, bill payments, and transaction history. The tester has Swagger documentation and accounts at user and admin levels.
Approach:
/api/v1/accounts/{accountId}/transactions allowing any authenticated user to view any account's transaction history"dailyTransferLimit": 999999 bypasses the configured transfer limit/api/v1/admin/users is accessible with a standard user token (BFLA)Pitfalls:
## Finding: Broken Object Level Authorization in Transaction History API
**ID**: API-001
**Severity**: Critical (CVSS 9.1)
**Affected Endpoint**: GET /api/v1/accounts/{accountId}/transactions
**OWASP API Category**: API1:2023 - Broken Object Level Authorization
**Description**:
The transaction history endpoint returns all transactions for the specified
account without verifying that the authenticated user owns the account. Any
authenticated user can view the complete transaction history of any account
by substituting the accountId path parameter.
**Proof of Concept**:
1. Authenticate as User A (account ID: ACC-10045)
2. Request: GET /api/v1/accounts/ACC-10046/transactions
Authorization: Bearer <User_A_token>
3. Response: 200 OK with User B's full transaction history
**Impact**:
Any authenticated user can view the complete financial transaction history of
all 45,000 customer accounts, including amounts, dates, recipients, and
transaction descriptions.
**Remediation**:
Implement server-side authorization check that verifies the authenticated user
owns the requested account before returning data:
const account = await Account.findById(accountId);
if (account.userId !== req.user.id) return res.status(403).json({error: "Forbidden"});
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
mukul975/Anthropic-Cybersecurity-Skills
mukul975/Anthropic-Cybersecurity-Skills
mukul975/Anthropic-Cybersecurity-Skills
mukul975/Anthropic-Cybersecurity-Skills
mukul975/Anthropic-Cybersecurity-Skills
mukul975/Anthropic-Cybersecurity-Skills
Useful defaults in conducting-api-security-testing — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
conducting-api-security-testing fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
We added conducting-api-security-testing from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Keeps context tight: conducting-api-security-testing is the kind of skill you can hand to a new teammate without a long onboarding doc.
We added conducting-api-security-testing from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Registry listing for conducting-api-security-testing matched our evaluation — installs cleanly and behaves as described in the markdown.
I recommend conducting-api-security-testing for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
We added conducting-api-security-testing from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
conducting-api-security-testing fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
Keeps context tight: conducting-api-security-testing is the kind of skill you can hand to a new teammate without a long onboarding doc.
showing 1-10 of 67