Vant skill test fuzz
Skill dhaupin/vant/models/public/skills/vant-skill-test-fuzz
Feed random/invalid inputs to find unexpected crashes. Use when testing input handling, security, or finding edge case bugs.From its SKILL.md
npx -y skills add dhaupin/vant --skill vant-skill-test-fuzzAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 9 stars9 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.0 KB, 245 tokens by cl100k_base, as published. Nobody here has run it
Test Fuzz
Random input testing.
When To Use
- Input validation
- Security testing
- Edge cases
Fuzz Techniques
1. Random Data
fuzz('email', () => randomEmail())
fuzz('number', () => randomInt())
2. Invalid Inputs
fuzz('sql', () => "' OR '1'='1")
fuzz('xss', () => "<script>alert(1)</script>")
3. Mutation
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: Crashes
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.