Security payloads
Essential exploitation payloads: anti-virus test files, file name exploits, malicious files. Curated for testing.From its SKILL.md
npx -y skills add ShulkwiSEC/bb-huge --skill security-payloadsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 21 stars21 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.
SKILL.md
2.3 KB, 498 tokens by cl100k_base, as published. Nobody here has run it
SecLists Payloads (Curated)
Description
Essential exploitation payloads: anti-virus test files, file name exploits, malicious files. Curated for testing.
Source: SecLists/Payloads Repository: https://github.com/danielmiessler/SecLists License: MIT
When to Use This Skill
Use this skill when you need:
- Anti-virus testing
- File upload testing
- Path traversal testing
- Security control validation
⚠️ IMPORTANT: Only use for authorized security testing, bug bounty programs, CTF competitions, or educational purposes.
Key Files in This Skill
EICAR test fileNull byte file namesCommand execution file names
Usage Example
# Access files from this skill
import os
# Example: Load patterns/payloads
skill_path = "references/Payloads"
# List all available files
for root, dirs, files in os.walk(skill_path):
for file in files:
if file.endswith('.txt'):
filepath = os.path.join(root, file)
print(f"Found: {filepath}")
# Read file content
with open(filepath, 'r', errors='ignore') as f:
content = f.read().splitlines()
print(f" Lines: {len(content)}")
Security & Ethics
Authorized Use Cases ✅
- Authorized penetration testing with written permission
- Bug bounty programs (within scope)
- CTF competitions
- Security research in controlled environments
- Testing your own systems
- Educational demonstrations
Prohibited Use Cases ❌
- Unauthorized access attempts
- Testing without permission
- Malicious activities
- Privacy violations
- Any illegal activities
Complete SecLists Collection
This is a curated subset of SecLists. For the complete collection:
- Full repository: https://github.com/danielmiessler/SecLists
- Size: 4.5 GB with 6,000+ files
- All categories: Passwords, Usernames, Discovery, Fuzzing, Payloads, Web-Shells, Pattern-Matching, AI, Miscellaneous
Generated by Skill Seeker | SecLists Payloads Collection License: MIT - Use responsibly with proper authorization
What ships with it: 10 files
9.1 KB alongside SKILL.md
references/
- Payloads/Anti-Virus/eicar-com.txt69 B
- Payloads/File-Names/directory-traversal.zip3.0 KB
- Payloads/File-Names/exec/Hello$(hostname)World.txt12 B
- Payloads/File-Names/exec/Hello`hostname`World.txt11 B
- Payloads/File-Names/max-length.zip172 B
- Payloads/File-Names/null-byte/Hello%00World.txt8 B
- Payloads/File-Names/null-byte/Hello.php%00World.txt32 B
- Payloads/File-Names/README.md1.2 KB
- Payloads/Flash/xssproject.swf1.0 KB
- Payloads/README.md3.6 KB