{"id":50763391,"url":"https://github.com/ramesherrorhunter/kiro-security-audit-agent","last_synced_at":"2026-06-11T12:30:18.665Z","repository":{"id":353916738,"uuid":"1221416403","full_name":"ramesherrorhunter/kiro-security-audit-agent","owner":"ramesherrorhunter","description":" Kiro agent for security auditing and vulnerability scanning","archived":false,"fork":false,"pushed_at":"2026-04-26T07:18:07.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-26T09:21:49.688Z","etag":null,"topics":["ai-agents","audit","devops","kiro","security"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ramesherrorhunter.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-26T07:10:03.000Z","updated_at":"2026-04-26T07:58:45.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ramesherrorhunter/kiro-security-audit-agent","commit_stats":null,"previous_names":["ramesherrorhunter/kiro-security-audit-agent"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/ramesherrorhunter/kiro-security-audit-agent","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramesherrorhunter%2Fkiro-security-audit-agent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramesherrorhunter%2Fkiro-security-audit-agent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramesherrorhunter%2Fkiro-security-audit-agent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramesherrorhunter%2Fkiro-security-audit-agent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ramesherrorhunter","download_url":"https://codeload.github.com/ramesherrorhunter/kiro-security-audit-agent/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramesherrorhunter%2Fkiro-security-audit-agent/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34199516,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-agents","audit","devops","kiro","security"],"created_at":"2026-06-11T12:30:17.766Z","updated_at":"2026-06-11T12:30:18.648Z","avatar_url":"https://github.com/ramesherrorhunter.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# security-audit-agent\n\nAn intelligent Kiro CLI agent that scans your codebase for security vulnerabilities and produces a prioritized audit report — no manual configuration needed.\n\n---\n\n## Purpose\n\nCatch security issues before they reach production. The agent scans your code for common vulnerabilities across all severity levels and produces a `SECURITY_AUDIT.md` with findings, file locations, and concrete fixes.\n\n---\n\n## Solutions Offered\n\n| Problem | Solution |\n|---|---|\n| Hardcoded secrets in source code | Detected and flagged as Critical |\n| SQL injection vulnerabilities | Identified with parameterized query fix examples |\n| Missing authentication on routes | Flagged as High with remediation steps |\n| Weak cryptography usage | Detected and replaced with secure alternatives |\n| No visibility into security posture | Produces a full prioritized report |\n\n---\n\n## Benefits\n\n- **Zero config** — infers everything from your project files\n- **Read-only** — never modifies your source code, only produces a report\n- **Prioritized findings** — Critical → High → Medium → Low\n- **Multi-language support** — Node.js, Python, Go, Java, Rust, Ruby\n- **Actionable output** — every finding includes file, line, snippet, and fix\n\n---\n\n## How It Works\n\nThe agent runs 3 skills in sequence:\n\n```\nanalyze_project → scan_vulnerabilities → generate_audit_report\n```\n\n| Skill | What it does |\n|---|---|\n| `analyze_project` | Detects language and framework in a single pass |\n| `scan_vulnerabilities` | Finds security issues across the codebase |\n| `generate_audit_report` | Writes a prioritized report with remediation steps |\n\n---\n\n## Installation\n\n**1. Clone the repo**\n```bash\ngit clone https://github.com/ramesherrorhunter/kiro-security-audit-agent.git\n```\n\n**2. Copy the agent into your project**\n```bash\ncp -r kiro-security-audit-agent/.kiro /path/to/your/project/\n```\n\nOr copy into the current directory:\n```bash\ncp -r kiro-security-audit-agent/.kiro .\n```\n\nThat's it — the agent and all skills are now available in your project.\n\n---\n\n## SOP — Standard Operating Procedure\n\n### Prerequisites\n- Kiro CLI installed\n- Project directory accessible\n\n### Steps\n\n**1. Navigate to your project**\n```bash\ncd /path/to/your/project\n```\n\n**2. Start Kiro CLI**\n```bash\nkiro-cli\n```\n\n**3. Select the agent**\n\nType `/agent` and from the dropdown select `security-audit-agent`\n\n**4. Review generated report**\n```\nSECURITY_AUDIT.md    ← prioritized findings with fixes\n```\n\n### What Gets Scanned\n\n| Severity | Checks |\n|---|---|\n| Critical | Hardcoded secrets, SQL injection, command injection |\n| High | XSS, path traversal, insecure deserialization, missing auth |\n| Medium | Open redirects, sensitive data in logs, weak cryptography |\n| Low | Verbose error messages, missing security headers |\n\n### Expected Output\n\n| Section | Description |\n|---|---|\n| Summary | Total findings by severity |\n| Findings | File, line, snippet, and fix for each issue |\n| Quick Wins | High-impact, low-effort fixes to prioritize |\n| Dependencies | Known-vulnerable packages detected |\n\n### Notes\n- The agent never modifies source files — only produces `SECURITY_AUDIT.md`\n- Re-run after adding new routes, dependencies, or authentication logic\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Framesherrorhunter%2Fkiro-security-audit-agent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Framesherrorhunter%2Fkiro-security-audit-agent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Framesherrorhunter%2Fkiro-security-audit-agent/lists"}