SecLists Pattern-Matching
Description
Sensitive data patterns for security testing: API keys, credit cards, emails, SSNs, phone numbers, IPs, and more. Use for data discovery and validation.
Source: SecLists/Pattern-Matching
Repository: https://github.com/danielmiessler/SecLists
License: MIT
When to Use This Skill
Use this skill when you need:
- - API key detection in code/logs
- Credit card validation testing
- Email pattern matching
- IP address discovery
- SSN format validation
- Phone number pattern testing
⚠️ IMPORTANT: Only use for authorized security testing, bug bounty programs, CTF competitions, or educational purposes.
Key Files in This Skill
- - INLINECODE0
- INLINECODE1
- INLINECODE2
- INLINECODE3
- INLINECODE4
- INLINECODE5
Usage Example
CODEBLOCK0
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 Pattern-Matching Collection
License: MIT - Use responsibly with proper authorization
SecLists 模式匹配
描述
用于安全测试的敏感数据模式:API密钥、信用卡号、电子邮件、社会安全号码、电话号码、IP地址等。可用于数据发现和验证。
来源: SecLists/Pattern-Matching
仓库: https://github.com/danielmiessler/SecLists
许可证: MIT
何时使用此技能
当您需要以下功能时,可使用此技能:
- - 在代码/日志中检测API密钥
- 信用卡验证测试
- 电子邮件模式匹配
- IP地址发现
- 社会安全号码格式验证
- 电话号码模式测试
⚠️ 重要提示: 仅用于授权的安全测试、漏洞赏金计划、CTF竞赛或教育目的。
此技能中的关键文件
- - api-keys.txt - API密钥模式
- credit-cards.txt - 信用卡格式
- email-addresses.txt - 电子邮件模式
- ip-addresses.txt - IP地址模式
- ssn.txt - 社会安全号码模式
- phone-numbers.txt - 电话号码格式
使用示例
python
从此技能访问文件
import os
示例:加载模式/载荷
skill_path = references/Pattern-Matching
列出所有可用文件
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找到:{filepath})
# 读取文件内容
with open(filepath, r, errors=ignore) as f:
content = f.read().splitlines()
print(f 行数:{len(content)})
安全与道德
授权使用场景 ✅
- - 获得书面授权的渗透测试
- 漏洞赏金计划(在范围内)
- CTF竞赛
- 受控环境下的安全研究
- 测试自己的系统
- 教育演示
禁止使用场景 ❌
- - 未经授权的访问尝试
- 未经许可的测试
- 恶意活动
- 侵犯隐私
- 任何非法活动
完整的SecLists集合
这是SecLists的精选子集。如需完整集合:
- - 完整仓库: https://github.com/danielmiessler/SecLists
- 大小: 4.5 GB,包含6000+个文件
- 所有类别: 密码、用户名、发现、模糊测试、载荷、Web Shell、模式匹配、AI、杂项
由Skill Seeker生成 | SecLists模式匹配集合
许可证: MIT - 请在获得适当授权后负责任地使用