business-logic-bypass

business-logic-bypass is a skill for Claude Code, Codex from ShulkwiSEC/bb-huge. It costs 81 tokens per session (2,148 once invoked), scanned A, original, MIT.

A guide to finding business logic flaws in web applications, such as bypassing checkout rules, payment steps, inventory limits, password-reset flows, or subscription restrictions. These flaws abuse valid features in an unintended order or with unexpected values.

In plain words
What is it for?
Use it to test e-commerce, banking, and SaaS workflows for price changes, coupon reuse, skipped steps, negative quantities, transfer errors, and other rule bypasses.
Why use it?
It helps uncover problems that input-focused scanners usually cannot detect because the requests themselves may look valid. The focus is on whether the application enforces its real-world rules on the server.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is - [`_shared/references/elite-chaining-strategy.md`](../_shared/references/elite-chaining-strategy.md) — Exploit chaining methodology and high-payout chain patte.

Good fit Use it to test e-commerce, banking, and SaaS workflows for price changes, coupon reuse, skipped steps, negative quantities, transfer errors, and other rule bypasses.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/ShulkwiSEC/bb-huge
agentmods
npx agentmods add skills/shulkwisec/bb-huge/business-logic-bypass

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for business-logic-bypass

README.md
[![agentmods](https://agentmods.dev/badge/skills/shulkwisec/bb-huge/business-logic-bypass/github.svg)](https://agentmods.dev/skills/shulkwisec/bb-huge/business-logic-bypass)
Your own site
<a href="https://agentmods.dev/skills/shulkwisec/bb-huge/business-logic-bypass"><img src="https://agentmods.dev/badge/skills/shulkwisec/bb-huge/business-logic-bypass/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for business-logic-bypass

Your own site · 80×15
<a href="https://agentmods.dev/skills/shulkwisec/bb-huge/business-logic-bypass"><img src="https://agentmods.dev/badge/skills/shulkwisec/bb-huge/business-logic-bypass.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 81 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,148 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00081 $0.02148
Opus 5 $0.00041 $0.01074
Sonnet 5 $0.00016 $0.00430
Haiku 4.5 $0.00008 $0.00215

Measured 7d ago against content hash 6f362604b21c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

business-logic-bypass scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/process.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

resp = requests.post(
Origin

Copies of this mod

1 near-identical copy found in the catalogue:

skills/curated/business-logic-bypass/SKILL.md · 212 lines

How it starts

The opening of the file, as written. The whole thing — 212 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Business Logic Flaws & Bypasses

When to Use

  • When testing critical business functions (Checkout carts, Fund transfers, Password resets, Subscription tiers).
  • During deep manual penetration tests and Bug Bounty programs (logic bugs yield very high bounties and cannot be found by automated scanners).
  • When standard input validation tools (SQLmap, XSS payloads) yield no results.

Prerequisites

  • Authorized scope and target URLs from bug bounty program
  • Burp Suite Professional (or Community) configured with browser proxy
  • Familiarity with OWASP Top 10 and common web vulnerability classes
  • SecLists wordlists for fuzzing and enumeration

Workflow

Phase 1: Application Mapping & Rule Identification

# 1. Map the 'Happy Path'
# Use the application exactly as intended. Buy an item, apply a coupon, check out, track shipping.
# Intercept all traffic using Burp Suite and send it to the Proxy History.

# 2. Identify Business Rules (The Assumptions)
# What is the application assuming you will do?
# Examples:
# - A user will a coupon once.
# - A user will not put a negative quantity in the shopping cart.
# - A user must pay step 3 before jumping to step 4 (download).
# - A user will only transfer funds from an account they own.

Phase 2: Price and Parameter Tampering

# Focus: Tampering with invisible parameters or data types during transit.

# 1. Negative Values & Integer Overflow
# Send POST /cart/add
# {"item_id": 12, "quantity": -10}
# Try negative quantities to reduce the total cart price.
# Try MAX_INT (2147483647 + 1) to roll over prices to negative values.

# 2. Price Manipulation directly
# Send POST /checkout
# Does the client decide the price instead of the DB?
# {"item_id": 12, "price": 0.01}

# 3. Currency / Type Mismatch
# Send POST /transfer
# {"amount": "100.00USD", "to": "attacker"}
# What if you change currency? {"amount": "100.00JPY"}
# What if you pass an Array instead of a String? {"amount": [1000]}

Phase 3: Workflow Order Circumvention (Skipping Steps)

Read the full file on GitHub · 212 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 212 lines · 81 tokens per session scan A 6f362604b21c

Subscribe to this mod's changes

business-logic-bypass is a skill published in the GitHub repository ShulkwiSEC/bb-huge (22 stars, last pushed 2mo ago), licensed MIT. It adds 81 tokens to every session and 2,148 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

business-logic-bypass

Identify and exploit flaws in the core business rules and logic of web applications. This skill focuses on manipulation of application workflows, pricing, inventory limitations, and multi-step processes. Use this skill when bug hunting or testing e-commerce, banking, or SaaS platforms where standard technical…

akashrpatil/awesome-offensive-security-skills · 81 tokens

hunt-business-logic

Hunting skill for business logic vulnerabilities. Built from 12 public bug bounty reports. Covers coupon-race-stacking (Instacart, Stripe, Reverb), negative-quantity-in-cart price tampering (Upserve, Eternal/Zomato), decimal/fraction price-field overflow (Shipt), client-side checkout amount trust on PayPal redirect…

uphiago/recon-skills · 119 tokens

testing-api-for-mass-assignment-vulnerability

Tests APIs for mass assignment (auto-binding) vulnerabilities where clients can modify object properties they should not have access to by including additional parameters in API requests. The tester identifies writable endpoints, adds undocumented fields to request bodies (role, isAdmin, price, balance), and checks if…

xalgorix/xalgorix · 114 tokens

linkfox-amazon-store-operations

An Amazon seller-operations toolkit that connects to Amazon's Selling Partner API (SP-API), the interface businesses use to manage stores and products. It covers store access, orders, listings, prices, catalog data, reports, uploads, buyer feedback, A+ Content, external fulfillment, and FBA.

linkfox-ai/linkfox-skills · 0 tokens

linkfox-ecommerce-compliance-detection

A collection of tools for checking e-commerce products and listings for intellectual-property and compliance risks. It compares images and text with copyright, trademark, and patent records, including data from multiple countries.

linkfox-ai/linkfox-skills · 0 tokens

linkfox-1688-sourcing

A toolkit for finding and buying wholesale products on 1688, a Chinese business-to-business marketplace. It covers product search, sales rankings, image-based searches for similar items, price checks, and authorized ordering.

linkfox-ai/linkfox-skills · 0 tokens