You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
v0.6.8: Add NIST 800-53 Rev 5 support via framework crosswalk
- Add framework crosswalk engine for SOC2/PCI/CMMC to 800-53 mapping
- Support ~150 automated 800-53 checks across 19 control families
- Update PDF reports with 800-53 sections
- Add 800-53 framework validation
- Improve unicode handling in reports
AuditKit now maps your SOC2, PCI-DSS, and CMMC controls to NIST 800-53 control families. This gives you ~150 automated 800-53 checks without writing new code.
**How it works:** A framework crosswalk maps your existing controls (like SOC2 CC6.6 for MFA) to equivalent NIST 800-53 controls (IA-2, IA-5). The output shows both the NIST ID and the source control.
109
+
110
+
**What's included:**~150 technical controls across 19 control families (AC, AU, IA, SC, SI, etc.)
111
+
112
+
**What's not included:** Organizational controls like policies, procedures, and training (~850 controls that require manual documentation)
113
+
114
+
---
115
+
91
116
## Why Use AuditKit?
92
117
93
118
### For Startups
@@ -100,6 +125,11 @@ Interactive HTML reports with compliance scores, automated vs manual check break
100
125
- November 10, 2025 deadline compliance
101
126
- Self-assessment before C3PAO review
102
127
128
+
### For Federal Contractors
129
+
- NIST 800-53 technical control assessment
130
+
- See which controls pass/fail before formal audit
131
+
- Maps to your existing SOC2/PCI compliance work
132
+
103
133
### For Enterprises
104
134
- Single tool for AWS, Azure, and M365
105
135
- Track compliance improvement over time
@@ -140,6 +170,9 @@ go install github.com/guardian-nexus/auditkit/scanner/cmd/auditkit@latest
140
170
# SOC2 scan
141
171
auditkit scan -provider aws -framework soc2
142
172
173
+
# NIST 800-53 scan
174
+
auditkit scan -provider aws -framework 800-53
175
+
143
176
# PCI-DSS scan
144
177
auditkit scan -provider azure -framework pci
145
178
@@ -247,6 +280,12 @@ For detailed report with full evidence checklist:
247
280
- Based on NIST SP 800-171 Rev 2
248
281
- Level 2 (110 practices for CUI) available in Pro version
249
282
283
+
### NIST 800-53 Rev 5
284
+
-**~150 automated technical controls** via framework crosswalk
285
+
- Maps SOC2, PCI-DSS, and CMMC controls to 800-53 families
286
+
- Covers 19 control families: AC, AU, CA, CM, IA, IR, MA, MP, PE, PL, PM, PS, RA, SA, SC, SI, SR
287
+
- Does not include ~850 organizational controls (policies, procedures, training)
288
+
250
289
### HIPAA Security Rule
251
290
-**Experimental** - Basic technical safeguards only
252
291
- Does not cover administrative or physical safeguards
@@ -281,6 +320,7 @@ AuditKit integrates with [CISA ScubaGear](https://github.com/cisagov/ScubaGear)
@@ -381,6 +422,9 @@ A: No. It checks compliance controls, not vulnerabilities. Use Prowler/Scout Sui
381
422
**Q: What's the difference between CMMC Level 1 and Level 2?**
382
423
A: Level 1 (17 practices) protects Federal Contract Information (FCI). Level 2 (110 practices) protects Controlled Unclassified Information (CUI) and is required for most DoD contracts.
383
424
425
+
**Q: What does the NIST 800-53 support include?**
426
+
A: ~150 automated technical controls mapped from your existing SOC2/PCI/CMMC checks. It does NOT include the ~850 organizational controls (policies, procedures, training) that require manual documentation.
0 commit comments