# Workflow Step Bypass

> Detects multi-step workflows where step validation relies on client-side state or is insufficiently enforced server-side.

- Skill: `zakirkun/workflow-step-bypass` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add zakirkun/workflow-step-bypass`
- Raw SKILL.md: https://api.skillmd.com/api/skills/zakirkun/workflow-step-bypass/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: zakirkun (https://skillmd.com/u/zakirkun)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/zakirkun/workflow-step-bypass

---


# Workflow Step Bypass

## Overview
Multi-step processes (checkout, registration, password reset, onboarding) where step progression is enforced only by client-side state or easily-manipulated tokens can be bypassed. Attackers jump directly to final steps (e.g., payment confirmation without paying, account activation without email verification).

## Remediation
- Store workflow step state server-side, not in client cookies/form fields
- Verify each step's prerequisites before proceeding
- Use server-side session to track workflow progress

