name: security-auditor-tk version: 1.0.0 description: Run security audits on Linux servers, web applications, and cloud infrastructure. Checks SSH hardening, firewall rules, open ports, SSL/TLS config, file permissions, and common vulnerabilities. Produces actionable reports. author: TKDigital category: DevOps & Security tags: [security, audit, linux, hardening, vulnerability, devops, server]
Comprehensive security auditing for Linux servers, web apps, and cloud infrastructure.
Run a full security audit on this server.
Check: SSH, firewall, ports, users, file permissions, updates, SSL.
Output a prioritized report with fix commands.
Audit SSH configuration:
- Is root login disabled?
- Is password auth disabled?
- What port is it on?
- Are there any weak ciphers?
Give me the exact commands to fix any issues.
Check security headers and configuration for: [URL]
Look for:
- Missing security headers (CSP, HSTS, X-Frame-Options)
- SSL/TLS issues
- CORS misconfig
- Cookie security flags
- Information disclosure
Review my cloud setup for security issues:
- Provider: [AWS/GCP/DO/Vultr]
- Services: [list running services]
- Access: [how you connect]
Focus on: IAM, network exposure, storage permissions, logging
# Security Audit Report — [Target]
**Date**: [Audit date]
**Scope**: [What was audited]
**Risk Level**: [Critical/High/Medium/Low]
## 🔴 Critical Findings
### [Finding Title]
- **Risk**: [What could happen]
- **Current State**: [What's wrong]
- **Fix**:
```bash
[Exact command to fix]
```
- **Verification**: [How to confirm the fix worked]
## 🟡 Warnings
[Medium-risk findings]
## 🟢 Passed Checks
[What's already good]
## Summary
- Critical: [X]
- Warnings: [X]
- Passed: [X]
- Overall Score: [X/100]
references/hardening-checklist.md — Complete hardening checklistreferences/common-fixes.md — Copy-paste fix commands for common issues这个 Skill 的文档编写质量不错,说明清晰、功能覆盖全面,配有详细的检查清单和修复命令参考。不过它本质上只是一个 Prompt 模板,并没有提供实际的安全检测工具或自动化脚本,主要依赖 AI 理解后执行命令。用户需要自己有一定的安全知识基础才能正确使用 AI 生成的建议。建议作者补充一些可直接运行的检测脚本或与现有安全工具的集成,提升实用性。