cyberaudit-skill 3.1.5 → 3.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. package/README.md +84 -25
  2. package/dist/cli.d.ts +10 -0
  3. package/dist/cli.js +552 -172
  4. package/dist/cli.test.d.ts +1 -0
  5. package/dist/cli.test.js +100 -0
  6. package/dist/mcp-server.d.ts +135 -1
  7. package/dist/mcp-server.js +185 -96
  8. package/dist/mcp-server.test.d.ts +1 -0
  9. package/dist/mcp-server.test.js +77 -0
  10. package/dist/report/generator.d.ts +2 -0
  11. package/dist/report/generator.js +260 -0
  12. package/dist/report/generator.test.d.ts +1 -0
  13. package/dist/report/generator.test.js +73 -0
  14. package/dist/report/types.d.ts +31 -0
  15. package/dist/report/types.js +1 -0
  16. package/dist/scanners/secrets.d.ts +32 -0
  17. package/dist/scanners/secrets.js +437 -0
  18. package/dist/scanners/secrets.test.d.ts +1 -0
  19. package/dist/scanners/secrets.test.js +96 -0
  20. package/dist/scanners/types.d.ts +22 -0
  21. package/dist/scanners/types.js +1 -0
  22. package/dist/scanners/web.d.ts +37 -0
  23. package/dist/scanners/web.js +327 -0
  24. package/dist/scanners/web.test.d.ts +1 -0
  25. package/dist/scanners/web.test.js +67 -0
  26. package/package.json +15 -3
  27. package/skills/cyberaudit/AGENT-BOOT.md +1 -1
  28. package/skills/cyberaudit/COMMANDS.md +11 -1
  29. package/skills/cyberaudit/INSTALL.md +7 -6
  30. package/skills/cyberaudit/README.md +20 -5
  31. package/skills/cyberaudit/SKILL.md +20 -5
  32. package/skills/cyberaudit/cloud/CLOUD-CHECKLIST.md +85 -0
  33. package/skills/cyberaudit/cloud/CLOUD-PHILOSOPHY.md +91 -0
  34. package/skills/cyberaudit/cloud/CLOUD-REMEDIATION-LIBRARY.md +145 -0
  35. package/skills/cyberaudit/commands/audit-angular.md +11 -0
  36. package/skills/cyberaudit/commands/audit-api-bola.md +11 -0
  37. package/skills/cyberaudit/commands/audit-api-bopla.md +11 -0
  38. package/skills/cyberaudit/commands/audit-api-graphql.md +11 -0
  39. package/skills/cyberaudit/commands/audit-api-inventory.md +11 -0
  40. package/skills/cyberaudit/commands/audit-api-rate-limit.md +11 -0
  41. package/skills/cyberaudit/commands/audit-api-rest.md +11 -0
  42. package/skills/cyberaudit/commands/audit-api-third-party.md +11 -0
  43. package/skills/cyberaudit/commands/audit-api-ws.md +11 -0
  44. package/skills/cyberaudit/commands/audit-auth-api.md +11 -0
  45. package/skills/cyberaudit/commands/audit-auth-mobile.md +11 -0
  46. package/skills/cyberaudit/commands/audit-auth.md +12 -0
  47. package/skills/cyberaudit/commands/audit-binary.md +11 -0
  48. package/skills/cyberaudit/commands/audit-cis.md +11 -0
  49. package/skills/cyberaudit/commands/audit-cloud-iam.md +11 -0
  50. package/skills/cyberaudit/commands/audit-cloud-network.md +11 -0
  51. package/skills/cyberaudit/commands/audit-cloud-s3.md +11 -0
  52. package/skills/cyberaudit/commands/audit-cloud.md +10 -0
  53. package/skills/cyberaudit/commands/audit-cors.md +11 -0
  54. package/skills/cyberaudit/commands/audit-crypto-mobile.md +11 -0
  55. package/skills/cyberaudit/commands/audit-crypto.md +10 -0
  56. package/skills/cyberaudit/commands/audit-csrf.md +11 -0
  57. package/skills/cyberaudit/commands/audit-deeplinks.md +11 -0
  58. package/skills/cyberaudit/commands/audit-deps.md +11 -0
  59. package/skills/cyberaudit/commands/audit-deserial.md +11 -0
  60. package/skills/cyberaudit/commands/audit-exec.md +11 -0
  61. package/skills/cyberaudit/commands/audit-expo.md +11 -0
  62. package/skills/cyberaudit/commands/audit-express.md +11 -0
  63. package/skills/cyberaudit/commands/audit-flutter.md +11 -0
  64. package/skills/cyberaudit/commands/audit-headers.md +11 -0
  65. package/skills/cyberaudit/commands/audit-hipaa.md +11 -0
  66. package/skills/cyberaudit/commands/audit-idor.md +11 -0
  67. package/skills/cyberaudit/commands/audit-injection.md +12 -0
  68. package/skills/cyberaudit/commands/audit-ionic.md +11 -0
  69. package/skills/cyberaudit/commands/audit-laravel.md +11 -0
  70. package/skills/cyberaudit/commands/audit-logic.md +11 -0
  71. package/skills/cyberaudit/commands/audit-masvs.md +11 -0
  72. package/skills/cyberaudit/commands/audit-nestjs.md +11 -0
  73. package/skills/cyberaudit/commands/audit-network.md +11 -0
  74. package/skills/cyberaudit/commands/audit-nextjs.md +11 -0
  75. package/skills/cyberaudit/commands/audit-owasp.md +11 -0
  76. package/skills/cyberaudit/commands/audit-pci.md +11 -0
  77. package/skills/cyberaudit/commands/audit-permissions.md +11 -0
  78. package/skills/cyberaudit/commands/audit-react-native.md +11 -0
  79. package/skills/cyberaudit/commands/audit-react.md +11 -0
  80. package/skills/cyberaudit/commands/audit-rgpd.md +11 -0
  81. package/skills/cyberaudit/commands/audit-runtime.md +11 -0
  82. package/skills/cyberaudit/commands/audit-secrets.md +11 -0
  83. package/skills/cyberaudit/commands/audit-ssrf.md +11 -0
  84. package/skills/cyberaudit/commands/audit-storage.md +11 -0
  85. package/skills/cyberaudit/commands/audit-vue.md +11 -0
  86. package/skills/cyberaudit/commands/audit-xss.md +11 -0
  87. package/skills/cyberaudit/commands/audit-xxe.md +11 -0
  88. package/skills/cyberaudit/reports/EXECUTIVE-SUMMARY-TEMPLATE.md +1 -1
  89. package/skills/cyberaudit/reports/REPORT-TEMPLATE-CLOUD.md +103 -0
  90. package/skills/cyberaudit/reports/REPORT-TEMPLATE-MOBILE.md +2 -2
  91. package/skills/cyberaudit/reports/REPORT-TEMPLATE-WEB.md +2 -2
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: Express-specific audit
3
+ ---
4
+ Express-specific audit — /audit:express
5
+
6
+ 1. Load web/frameworks/EXPRESS.md
7
+ 2. Check helmet, cors, middleware order (auth before routes), next() after error, input validation
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: Flutter audit
3
+ ---
4
+ Flutter audit — /audit:flutter
5
+
6
+ 1. Load mobile/frameworks/FLUTTER.md
7
+ 2. Check method channels, secure storage, obfuscation, SSL pinning
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: HTTP security headers audit
3
+ ---
4
+ HTTP security headers audit — /audit:headers
5
+
6
+ 1. Load web/vulnerabilities/HEADERS.md
7
+ 2. Check CSP, HSTS, X-Frame-Options, X-Content-Type-Options, Referrer-Policy, Permissions-Policy
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: HIPAA compliance check
3
+ ---
4
+ HIPAA compliance check — /audit:hipaa
5
+
6
+ 1. Load shared/COMPLIANCE.md HIPAA
7
+ 2. Check PHI encryption, audit logs, access controls, minimal necessary
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: IDOR & BOLA audit (web)
3
+ ---
4
+ IDOR & BOLA audit (web) — /audit:idor
5
+
6
+ 1. Load web/vulnerabilities/IDOR-BOLA.md
7
+ 2. Test ID manipulation on every resource, ownership check
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,12 @@
1
+ ---
2
+ description: Injection audit — SQL, NoSQL, Command, SSTI
3
+ ---
4
+ Injection audit — SQL, NoSQL, Command, SSTI — /audit:injection
5
+
6
+ 1. Load web/vulnerabilities/INJECTION.md
7
+ 2. Scan for string interpolation in SQL/NoSQL, exec/system with user input, template rendering with user input
8
+ 3. Propose parameterized queries, mongoSanitize, execFile
9
+
10
+ Output:
11
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
12
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: Ionic audit
3
+ ---
4
+ Ionic audit — /audit:ionic
5
+
6
+ 1. Load mobile/frameworks/IONIC.md
7
+ 2. Check WebView whitelist, plugin risky, mixed content
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: Laravel-specific audit
3
+ ---
4
+ Laravel-specific audit — /audit:laravel
5
+
6
+ 1. Load web/frameworks/LARAVEL.md
7
+ 2. Check: mass assignment, debug mode, routes auth, DB::select interpolation, Blade {!! !!}, APP_DEBUG
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: Business logic flaws audit
3
+ ---
4
+ Business logic flaws audit — /audit:logic
5
+
6
+ 1. Load web/vulnerabilities/BUSINESS-LOGIC.md
7
+ 2. Check race conditions, price manipulation, workflow bypass, negative values, TOCTOU
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: MASVS 2.0 score
3
+ ---
4
+ MASVS 2.0 score — /audit:masvs
5
+
6
+ 1. Load MOBILE-CHECKLIST.md
7
+ 2. Calculate score per MASVS category STORAGE, CRYPTO, AUTH, NETWORK, PLATFORM, CODE
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: NestJS-specific audit
3
+ ---
4
+ NestJS-specific audit — /audit:nestjs
5
+
6
+ 1. Load web/frameworks/NESTJS.md
7
+ 2. Check ValidationPipe whitelist:true, guards order, DTO forbidNonWhitelisted, ORM ownership
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: Network security audit (mobile)
3
+ ---
4
+ Network security audit (mobile) — /audit:network
5
+
6
+ 1. Load mobile/vulnerabilities/NETWORK-MOBILE.md
7
+ 2. Check HTTPS only, cleartextTraffic false, cert pinning, tokens in header not query
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: Next.js-specific audit
3
+ ---
4
+ Next.js-specific audit — /audit:nextjs
5
+
6
+ 1. Load web/frameworks/NEXTJS.md
7
+ 2. Check NEXT_PUBLIC_ secrets, API routes auth, server components SSRF, middleware bypass, image domains
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: OWASP Top 10 2023 score
3
+ ---
4
+ OWASP Top 10 2023 score — /audit:owasp
5
+
6
+ 1. Load shared/OWASP-MAPPER.md
7
+ 2. Map findings to A01-A10, produce PASS/FAIL/PARTIAL table
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: PCI-DSS compliance check
3
+ ---
4
+ PCI-DSS compliance check — /audit:pci
5
+
6
+ 1. Load shared/COMPLIANCE.md PCI
7
+ 2. Check card data not stored, encryption, logging, access control
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: Permissions audit (mobile)
3
+ ---
4
+ Permissions audit (mobile) — /audit:permissions
5
+
6
+ 1. Load mobile/vulnerabilities/PERMISSIONS.md
7
+ 2. Check unnecessary permissions, request at time of need, exported components
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: React Native audit
3
+ ---
4
+ React Native audit — /audit:react-native
5
+
6
+ 1. Load mobile/frameworks/REACT-NATIVE.md
7
+ 2. Check AsyncStorage, deep links, WebView XSS, JS bundle secrets
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: React-specific audit
3
+ ---
4
+ React-specific audit — /audit:react
5
+
6
+ 1. Load web/frameworks/REACT.md
7
+ 2. Check dangerouslySetInnerHTML with DOMPurify, env exposure, XSS in JSX
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: RGPD compliance check
3
+ ---
4
+ RGPD compliance check — /audit:rgpd
5
+
6
+ 1. Load shared/COMPLIANCE.md GDPR
7
+ 2. Check privacy by design, minimal collection, encryption, retention, breach notification
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: Runtime security audit (mobile)
3
+ ---
4
+ Runtime security audit (mobile) — /audit:runtime
5
+
6
+ 1. Load mobile/vulnerabilities/RUNTIME-MOBILE.md
7
+ 2. Check root/jailbreak detection, anti-tamper, FLAG_SECURE
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: Exposed secrets & credentials audit
3
+ ---
4
+ Exposed secrets & credentials audit — /audit:secrets
5
+
6
+ 1. Load web/vulnerabilities/SECRETS.md
7
+ 2. Scan: API keys, tokens, private keys, .env committed, NEXT_PUBLIC_ secrets, comments, git history
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: SSRF audit
3
+ ---
4
+ SSRF audit — /audit:ssrf
5
+
6
+ 1. Load web/vulnerabilities/SSRF.md
7
+ 2. Check URL fetch with user input, whitelist, block 169.254.169.254, internal IPs
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: Local storage security audit (mobile)
3
+ ---
4
+ Local storage security audit (mobile) — /audit:storage
5
+
6
+ 1. Load mobile/vulnerabilities/STORAGE.md
7
+ 2. Check AsyncStorage with tokens, Keychain/Keystore usage, SQLite encrypted, logs
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: Vue.js-specific audit
3
+ ---
4
+ Vue.js-specific audit — /audit:vue
5
+
6
+ 1. Load web/frameworks/VUE.md
7
+ 2. Check v-html with sanitize, template injection, env exposure
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: Cross-Site Scripting audit
3
+ ---
4
+ Cross-Site Scripting audit — /audit:xss
5
+
6
+ 1. Load web/vulnerabilities/XSS.md
7
+ 2. Check dangerouslySetInnerHTML, innerHTML, v-html, Blade {!! !!}, URL javascript: validation, CSP header
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: XXE audit
3
+ ---
4
+ XXE audit — /audit:xxe
5
+
6
+ 1. Load web/vulnerabilities/XXE.md
7
+ 2. Check XML external entities disabled, no xxe in parser
8
+
9
+ Output:
10
+ - Findings with [VULN-...] numbering, CVSS 3.1 vector, file:line, vulnerable code, fixed code, references.
11
+ - Use templates from reports/ if needed.
@@ -182,7 +182,7 @@ DECISION REQUIRED
182
182
  Full report available : [Report reference]
183
183
  For any questions : Use CyberAudit in Q&A mode
184
184
 
185
- Generated by CyberAudit Skill v3.0 — LUNAIRE EDITION
185
+ Generated by CyberAudit Skill v3.1.5
186
186
  CONFIDENTIAL document — Management level only
187
187
 
188
188
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
@@ -0,0 +1,103 @@
1
+ # ☁️ SECURITY AUDIT REPORT — CLOUD
2
+ # Official CyberAudit Skill Template — Cloud
3
+
4
+ ═══════════════════════════════════════════════════════════════
5
+ REPORT HEADER
6
+ ═══════════════════════════════════════════════════════════════
7
+
8
+ SECURITY AUDIT REPORT — CLOUD
9
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
10
+
11
+ Account/Project : [ACCOUNT ID / PROJECT]
12
+ Provider : [AWS / GCP / Azure]
13
+ IaC : [Terraform / CloudFormation / None]
14
+ Audit type : Cloud Configuration Audit (CIS / OWASP Cloud)
15
+ Audit level : [Quick / Standard / Deep]
16
+ Date : [DATE]
17
+ Auditor : CyberAudit Intelligence v3.1.5
18
+ Confidentiality : 🔴 CONFIDENTIAL
19
+
20
+ ═══════════════════════════════════════════════════════════════
21
+ EXECUTIVE SUMMARY
22
+ ═══════════════════════════════════════════════════════════════
23
+
24
+ OVERALL VERDICT: [🔴 CRITICAL / 🟠 HIGH / 🟡 MODERATE / 🟢 ACCEPTABLE]
25
+ SECURITY SCORE: [XX]/100
26
+
27
+ VULNERABILITY DASHBOARD
28
+ 🔴 CRITICAL : [N] (public storage, wildcard IAM, open SG)
29
+ 🟠 HIGH : [N]
30
+ 🟡 MEDIUM : [N]
31
+ 🟢 LOW : [N]
32
+
33
+ BUSINESS RISKS
34
+ → Data breach via public bucket
35
+ → Account takeover via IAM wildcard
36
+ → Ransomware via unencrypted snapshots
37
+
38
+ IMMEDIATE ACTIONS
39
+ 1. Block public access on [bucket]
40
+ 2. Scope IAM role [role] from * to least privilege
41
+ 3. Close SG 0.0.0.0/0:22 on [sg-id]
42
+
43
+ ═══════════════════════════════════════════════════════════════
44
+ AUDIT SCOPE
45
+ ═══════════════════════════════════════════════════════════════
46
+
47
+ INCLUDED:
48
+ ✅ S3/GCS/Blob storage
49
+ ✅ IAM roles/policies/users
50
+ ✅ Security Groups / Firewall
51
+ ✅ Lambda / Cloud Run / Functions
52
+ ✅ CloudTrail / Audit Logs
53
+
54
+ OUT OF SCOPE:
55
+ ⭕ On-prem, physical
56
+
57
+ ═══════════════════════════════════════════════════════════════
58
+ DETAILED FINDINGS
59
+ ═══════════════════════════════════════════════════════════════
60
+
61
+ [VULN-CLOUD-001] — Public S3 Bucket with Sensitive Data
62
+ Severity: 🔴 CRITICAL
63
+ CVSS: 9.1 (AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N)
64
+ CWE: CWE-284, CIS AWS 2.1.1
65
+ File: terraform/s3.tf:12 / aws s3://app-backup
66
+
67
+ Vulnerable:
68
+ bucket ACL public-read, policy Principal "*"
69
+
70
+ Impact: Anyone on internet can list and download backups containing DB dumps.
71
+
72
+ Fix: See CLOUD-REMEDIATION-LIBRARY.md — Public S3 Bucket
73
+
74
+ [... repeat per finding grouped by severity]
75
+
76
+ ═══════════════════════════════════════════════════════════════
77
+ CIS BENCHMARK COMPLIANCE
78
+ ═══════════════════════════════════════════════════════════════
79
+
80
+ 1. IAM — MFA, no wildcard : [PASS/FAIL]
81
+ 2. Storage — no public buckets : [PASS/FAIL]
82
+ 3. Logging — CloudTrail enabled : [PASS/FAIL]
83
+ 4. Networking — no 0.0.0.0/0:22 : [PASS/FAIL]
84
+
85
+ ═══════════════════════════════════════════════════════════════
86
+ REMEDIATION PLAN
87
+ ═══════════════════════════════════════════════════════════════
88
+
89
+ PHASE 1 — WEEK 1 (Critical)
90
+ □ VULN-CLOUD-001 public bucket
91
+ □ VULN-CLOUD-002 wildcard IAM
92
+
93
+ PHASE 2 — WEEKS 2-4 (High)
94
+ □ IMDSv2 enforcement
95
+ □ S3 encryption
96
+
97
+ PHASE 3 — MONTHS 2-3 (Medium)
98
+ □ Enable GuardDuty / flow logs
99
+ □ IaC scanning in CI
100
+
101
+ CONCLUSION: [Go/No-Go]
102
+
103
+ Report generated by CyberAudit v3.1.5 — Cloud Module
@@ -17,7 +17,7 @@ iOS Version : [Deployment Target]
17
17
  Audit type : Mobile Application Security Audit
18
18
  Audit level : [Quick Scan / Standard / Deep / Red Team]
19
19
  Date : [DATE]
20
- Auditor : CyberAudit Intelligence v3.0 — LUNAIRE
20
+ Auditor : CyberAudit Intelligence v3.1.5
21
21
  Confidentiality : 🔴 CONFIDENTIAL — Internal use only
22
22
 
23
23
  ═══════════════════════════════════════════════════════════════
@@ -404,7 +404,7 @@ FINAL PUBLICATION RECOMMENDATION:
404
404
  🟢 GO — Application ready for publication
405
405
 
406
406
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
407
- Report generated by CyberAudit Skill v3.0 — LUNAIRE EDITION
407
+ Report generated by CyberAudit Skill v3.1.5
408
408
  Aligned with OWASP MASVS 2.0 and OWASP Mobile Top 10
409
409
  This report is CONFIDENTIAL — Restricted distribution
410
410
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
@@ -14,7 +14,7 @@ Framework(s) : [FRAMEWORK(S) AUDITED]
14
14
  Audit type : Web Application Security Audit
15
15
  Audit level : [Quick Scan / Standard / Deep / Red Team]
16
16
  Date : [DATE]
17
- Auditor : CyberAudit Intelligence v3.0
17
+ Auditor : CyberAudit Intelligence v3.1.5
18
18
  Confidentiality : 🔴 CONFIDENTIAL — Internal use only
19
19
 
20
20
  ═══════════════════════════════════════════════════════════════
@@ -216,7 +216,7 @@ Professional but direct tone.]
216
216
  [Final recommendation: Go / No-Go for production]
217
217
 
218
218
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
219
- Report generated by CyberAudit Skill v3.0 — LUNAIRE EDITION
219
+ Report generated by CyberAudit Skill v3.1.5
220
220
  This report is CONFIDENTIAL. Restricted distribution.
221
221
  For any questions: use CyberAudit in Q&A mode
222
222
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━