Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions testcases/owasp/buffer-overflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "Buffer Overflow"
type: "custom"
payloads:
# Long string of A's
- "A" * 5000
- "A" * 10000

# URL-encoded long string
- "%41" * 5000

# Format string overflow indicators
- "%x%x%x%x%x%x%x%x"
- "%s%s%s%s%s"

# Mixed pattern long string
- "AAAAA%x%x%xAAAAA" * 500

# Header overflow simulation
- "B" * 8000

headers:
User-Agent: "GoTestWAF-Overflow-Test"
Content-Type: "application/x-www-form-urlencoded"