Feed random/invalid inputs to find unexpected crashes. Use when testing input handling, security, or finding edge case bugs.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add aibot88/sec_skill_store --skill vant-skill-test-fuzz --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Vant Skill Test Fuzz?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/aibot88-vant-skill-test-fuzz)More formats (shields.io, HTML) on the badges page.
---
name: test-fuzz
description: Feed random/invalid inputs to find unexpected crashes. Use when testing input handling, security, or finding edge case bugs.
license: MIT
metadata:
author: vant
version: "1.0"
---
# Test Fuzz
> Random input testing.
## When To Use
- Input validation
- Security testing
- Edge cases
## Fuzz Techniques
### 1. Random Data
```javascript
fuzz('email', () => randomEmail())
fuzz('number', () => randomInt())
```
### 2. Invalid Inputs
```javascript
fuzz('sql', () => "' OR '1'='1")
fuzz('xss', () => "<script>alert(1)</script>")
```
### 3. Mutation
```javascript
fuzz('mutation', () => mutate(existing))
```
---
## Tools
| Tool | Use |
|------|-----|
| AFL | Binary fuzzing |
| libFuzzer | LLVM fuzzing |
| Jest QuickCheck | Property-based |
| fast-check | Node fuzzing |
---
## Output
```
## Fuzz Tests
| Input | Result |
|-------|--------|
| [n] inputs | [n] crashes |
| [n] timeouts | [n] hangs |
### Vulnerabilities
- [list]
```
**Role**: Fuzz Tester
**Input**: Target
**Output**: CrashesIs this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Practical guide to testing web applications with screen readers for comprehensive accessibility validation.