Files
Anthropic-Cybersecurity-Skills/skills/testing-for-business-logic-vulnerabilities/references/api-reference.md
T
mukul975 27c6414ca5 Add folder anatomy (scripts/agent.py + references/api-reference.md) for 648 cybersecurity skills
Complete skill folder anatomy across all cybersecurity skills:
- scripts/agent.py: 80-150 line Python agents using real libraries (impacket,
  boto3, azure-mgmt-*, kubernetes, pefile, yara, scapy, shodan, stix2, etc.)
- references/api-reference.md: real API documentation with method signatures
- LICENSE: MIT license for all skill folders
2026-03-10 21:02:12 +01:00

1.8 KiB

API Reference: Testing for Business Logic Vulnerabilities

requests Library

Concurrent Testing (Race Conditions)

import threading

def send_request():
    resp = requests.post(url, headers=headers, json=payload)
    results.append(resp.status_code)

threads = [threading.Thread(target=send_request) for _ in range(10)]
for t in threads: t.start()
for t in threads: t.join()

Business Logic Test Categories

Price Manipulation Payloads

Test Payload Expected
Negative quantity {"quantity": -1} Should reject
Zero price {"price": 0} Should reject
Float quantity {"quantity": 0.001} Should reject for physical goods
Integer overflow {"quantity": 2147483647} Should reject
Negative price {"price": -99.99} Should reject

Workflow Bypass Tests

  1. Skip email verification -> access dashboard
  2. Skip payment -> confirm order
  3. Skip MFA -> access protected resources
  4. Repeat one-time steps (coupon, voucher)

Race Condition Targets

Endpoint Risk
Coupon application Applied multiple times
Balance transfer Double spending
Reward claiming Multiple claims
Inventory purchase Overselling

Referral/Reward Abuse

  • Self-referral with own email
  • Referral code reuse across accounts
  • Coupon stacking (multiple codes)
  • Earn points -> cancel order -> keep points

OWASP Category

  • A04:2021 - Insecure Design
  • Business logic flaws are not detectable by automated scanners

References