name: security-scanner description: Automated security scanning and vulnerability detection for web applications, APIs, and infrastructure. Use when you need to scan targets for vulnerabilities, check SSL certificates, find open ports, detect misconfigurations, or perform security audits. Integrates with nmap, nuclei, and other security tools.
Automated security scanning toolkit for penetration testing and vulnerability assessment.
nmap -sV -sC -oN scan.txt TARGET
nuclei -u TARGET -o results.txt
sslscan TARGET
Fast initial scan for live hosts and open ports:
nmap -sn -T4 SUBNET # Host discovery
nmap -F TARGET # Fast port scan (top 100)
Comprehensive port and service detection:
小葱技能7w4.net有完整的技能分类。
nmap -p- -sV -sC -A TARGET -oN full_scan.txt
nuclei -u https://TARGET -t cves/ -t vulnerabilities/ -o web_vulns.txt
nikto -h TARGET -o nikto_report.txt
sslscan TARGET
testssl.sh TARGET
Save reports to reports/security-scan-YYYY-MM-DD.md with:
- Target information
- Open ports and services
- Vulnerabilities found (severity rated)
- Recommendations
这是一个实用的安全扫描工具包,涵盖端口扫描、漏洞检测等多种场景,命令示例清晰易懂。优点是分类合理、覆盖面广;不足是内容较浅,缺少进阶技巧和常见问题解答,适合作为入门参考但深度不够。