llm-testing
Comprehensive LLM security testing prompts for bias detection, data leakage, alignment testing, and adversarial prompt resistance.
Top username lists for enumeration: common usernames, default credentials, names. Curated essentials for authorized testing.
$ npx -y skills add Eyadkelleh/awesome-skills-security --skill security-usernames --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/security-usernamesContext preview
The summary Claude sees to decide when to auto-load this skill.
Top username lists for enumeration: common usernames, default credentials, names. Curated essentials for authorized testing.
name: security-usernames description: "Top username lists for enumeration: common usernames, default credentials, names. Curated essentials for authorized testing."
Top username lists for enumeration: common usernames, default credentials, names. Curated essentials for authorized testing.
**Source:** [SecLists/Usernames](https://github.com/danielmiessler/SecLists/tree/master/Usernames) **Repository:** https://github.com/danielmiessler/SecLists **License:** MIT
Use this skill when you need:
**⚠️ IMPORTANT:** Only use for authorized security testing, bug bounty programs, CTF competitions, or educational purposes.
# Access files from this skill
import os
# Example: Load patterns/payloads
skill_path = "references/Usernames"
# 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)}")This is a curated subset of SecLists. For the complete collection:
---
**Generated by Skill Seeker** | SecLists Usernames Collection **License:** MIT - Use responsibly with proper authorization
A curated collection of security testing resources packaged as agent skills, available on skills.sh Repository: Eyadkelleh/awesome-skills-security · skills.sh: Eyadkelleh/awesome-skills-security
Repo: Eyadkelleh/awesome-skills-security
Comprehensive LLM security testing prompts for bias detection, data leakage, alignment testing, and adversarial prompt resistance.
Essential fuzzing payloads: SQL injection, command injection, special characters. Curated essentials for vulnerability testing.
Top password lists for authorized security testing: common passwords, darkweb leaks, worst passwords. Curated essentials (<10MB).
Sensitive data patterns for security testing: API keys, credit cards, emails, SSNs, phone numbers, IPs, and more. Use for data discovery and validation.
Essential exploitation payloads: anti-virus test files, file name exploits, malicious files. Curated for testing.
Web shell samples for detection and analysis: PHP, ASP, ASPX, JSP, Python, Perl shells. Use for security research and detection system testing.