@vorionsys/security 1.0.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.
- package/LICENSE +190 -0
- package/README.md +85 -0
- package/dist/aci-extensions/aci-string-extensions.d.ts +334 -0
- package/dist/aci-extensions/aci-string-extensions.d.ts.map +1 -0
- package/dist/aci-extensions/aci-string-extensions.js +435 -0
- package/dist/aci-extensions/aci-string-extensions.js.map +1 -0
- package/dist/aci-extensions/builtin-extensions/audit.d.ts +88 -0
- package/dist/aci-extensions/builtin-extensions/audit.d.ts.map +1 -0
- package/dist/aci-extensions/builtin-extensions/audit.js +444 -0
- package/dist/aci-extensions/builtin-extensions/audit.js.map +1 -0
- package/dist/aci-extensions/builtin-extensions/governance.d.ts +32 -0
- package/dist/aci-extensions/builtin-extensions/governance.d.ts.map +1 -0
- package/dist/aci-extensions/builtin-extensions/governance.js +533 -0
- package/dist/aci-extensions/builtin-extensions/governance.js.map +1 -0
- package/dist/aci-extensions/builtin-extensions/monitoring.d.ts +43 -0
- package/dist/aci-extensions/builtin-extensions/monitoring.d.ts.map +1 -0
- package/dist/aci-extensions/builtin-extensions/monitoring.js +416 -0
- package/dist/aci-extensions/builtin-extensions/monitoring.js.map +1 -0
- package/dist/aci-extensions/executor.d.ts +208 -0
- package/dist/aci-extensions/executor.d.ts.map +1 -0
- package/dist/aci-extensions/executor.js +789 -0
- package/dist/aci-extensions/executor.js.map +1 -0
- package/dist/aci-extensions/index.d.ts +6 -0
- package/dist/aci-extensions/index.d.ts.map +1 -0
- package/dist/aci-extensions/index.js +6 -0
- package/dist/aci-extensions/index.js.map +1 -0
- package/dist/aci-extensions/registry.d.ts +217 -0
- package/dist/aci-extensions/registry.d.ts.map +1 -0
- package/dist/aci-extensions/registry.js +443 -0
- package/dist/aci-extensions/registry.js.map +1 -0
- package/dist/aci-extensions/service.d.ts +220 -0
- package/dist/aci-extensions/service.d.ts.map +1 -0
- package/dist/aci-extensions/service.js +484 -0
- package/dist/aci-extensions/service.js.map +1 -0
- package/dist/aci-extensions/types.d.ts +2265 -0
- package/dist/aci-extensions/types.d.ts.map +1 -0
- package/dist/aci-extensions/types.js +389 -0
- package/dist/aci-extensions/types.js.map +1 -0
- package/dist/api/auth.d.ts +55 -0
- package/dist/api/auth.d.ts.map +1 -0
- package/dist/api/auth.js +306 -0
- package/dist/api/auth.js.map +1 -0
- package/dist/api/errors.d.ts +146 -0
- package/dist/api/errors.d.ts.map +1 -0
- package/dist/api/errors.js +464 -0
- package/dist/api/errors.js.map +1 -0
- package/dist/api/index.d.ts +16 -0
- package/dist/api/index.d.ts.map +1 -0
- package/dist/api/index.js +19 -0
- package/dist/api/index.js.map +1 -0
- package/dist/api/middleware/api-key-enforcement.d.ts +131 -0
- package/dist/api/middleware/api-key-enforcement.d.ts.map +1 -0
- package/dist/api/middleware/api-key-enforcement.js +674 -0
- package/dist/api/middleware/api-key-enforcement.js.map +1 -0
- package/dist/api/middleware/audit.d.ts +151 -0
- package/dist/api/middleware/audit.d.ts.map +1 -0
- package/dist/api/middleware/audit.js +384 -0
- package/dist/api/middleware/audit.js.map +1 -0
- package/dist/api/middleware/dpop-enforcement.d.ts +176 -0
- package/dist/api/middleware/dpop-enforcement.d.ts.map +1 -0
- package/dist/api/middleware/dpop-enforcement.js +596 -0
- package/dist/api/middleware/dpop-enforcement.js.map +1 -0
- package/dist/api/middleware/index.d.ts +23 -0
- package/dist/api/middleware/index.d.ts.map +1 -0
- package/dist/api/middleware/index.js +41 -0
- package/dist/api/middleware/index.js.map +1 -0
- package/dist/api/middleware/metrics.d.ts +41 -0
- package/dist/api/middleware/metrics.d.ts.map +1 -0
- package/dist/api/middleware/metrics.js +150 -0
- package/dist/api/middleware/metrics.js.map +1 -0
- package/dist/api/middleware/rate-limits.d.ts +224 -0
- package/dist/api/middleware/rate-limits.d.ts.map +1 -0
- package/dist/api/middleware/rate-limits.js +686 -0
- package/dist/api/middleware/rate-limits.js.map +1 -0
- package/dist/api/middleware/rateLimit.d.ts +165 -0
- package/dist/api/middleware/rateLimit.d.ts.map +1 -0
- package/dist/api/middleware/rateLimit.js +477 -0
- package/dist/api/middleware/rateLimit.js.map +1 -0
- package/dist/api/middleware/redis-rate-limiter.d.ts +279 -0
- package/dist/api/middleware/redis-rate-limiter.d.ts.map +1 -0
- package/dist/api/middleware/redis-rate-limiter.js +1074 -0
- package/dist/api/middleware/redis-rate-limiter.js.map +1 -0
- package/dist/api/middleware/security.d.ts +156 -0
- package/dist/api/middleware/security.d.ts.map +1 -0
- package/dist/api/middleware/security.js +412 -0
- package/dist/api/middleware/security.js.map +1 -0
- package/dist/api/middleware/validation.d.ts +132 -0
- package/dist/api/middleware/validation.d.ts.map +1 -0
- package/dist/api/middleware/validation.js +363 -0
- package/dist/api/middleware/validation.js.map +1 -0
- package/dist/api/middleware/webhook-verify.d.ts +130 -0
- package/dist/api/middleware/webhook-verify.d.ts.map +1 -0
- package/dist/api/middleware/webhook-verify.js +366 -0
- package/dist/api/middleware/webhook-verify.js.map +1 -0
- package/dist/api/rate-limit.d.ts +115 -0
- package/dist/api/rate-limit.d.ts.map +1 -0
- package/dist/api/rate-limit.js +335 -0
- package/dist/api/rate-limit.js.map +1 -0
- package/dist/api/routes/extensions.d.ts +40 -0
- package/dist/api/routes/extensions.d.ts.map +1 -0
- package/dist/api/routes/extensions.js +434 -0
- package/dist/api/routes/extensions.js.map +1 -0
- package/dist/api/routes/mfa.d.ts +44 -0
- package/dist/api/routes/mfa.d.ts.map +1 -0
- package/dist/api/routes/mfa.js +270 -0
- package/dist/api/routes/mfa.js.map +1 -0
- package/dist/api/server.d.ts +37 -0
- package/dist/api/server.d.ts.map +1 -0
- package/dist/api/server.js +1967 -0
- package/dist/api/server.js.map +1 -0
- package/dist/api/v1/admin.d.ts +11 -0
- package/dist/api/v1/admin.d.ts.map +1 -0
- package/dist/api/v1/admin.js +207 -0
- package/dist/api/v1/admin.js.map +1 -0
- package/dist/api/v1/audit.d.ts +14 -0
- package/dist/api/v1/audit.d.ts.map +1 -0
- package/dist/api/v1/audit.js +376 -0
- package/dist/api/v1/audit.js.map +1 -0
- package/dist/api/v1/auth.d.ts +17 -0
- package/dist/api/v1/auth.d.ts.map +1 -0
- package/dist/api/v1/auth.js +637 -0
- package/dist/api/v1/auth.js.map +1 -0
- package/dist/api/v1/compliance.d.ts +62 -0
- package/dist/api/v1/compliance.d.ts.map +1 -0
- package/dist/api/v1/compliance.js +858 -0
- package/dist/api/v1/compliance.js.map +1 -0
- package/dist/api/v1/constraints.d.ts +11 -0
- package/dist/api/v1/constraints.d.ts.map +1 -0
- package/dist/api/v1/constraints.js +71 -0
- package/dist/api/v1/constraints.js.map +1 -0
- package/dist/api/v1/dashboard.d.ts +224 -0
- package/dist/api/v1/dashboard.d.ts.map +1 -0
- package/dist/api/v1/dashboard.js +833 -0
- package/dist/api/v1/dashboard.js.map +1 -0
- package/dist/api/v1/docs.d.ts +11 -0
- package/dist/api/v1/docs.d.ts.map +1 -0
- package/dist/api/v1/docs.js +95 -0
- package/dist/api/v1/docs.js.map +1 -0
- package/dist/api/v1/escalations.d.ts +11 -0
- package/dist/api/v1/escalations.d.ts.map +1 -0
- package/dist/api/v1/escalations.js +857 -0
- package/dist/api/v1/escalations.js.map +1 -0
- package/dist/api/v1/gdpr.d.ts +11 -0
- package/dist/api/v1/gdpr.d.ts.map +1 -0
- package/dist/api/v1/gdpr.js +220 -0
- package/dist/api/v1/gdpr.js.map +1 -0
- package/dist/api/v1/health.d.ts +22 -0
- package/dist/api/v1/health.d.ts.map +1 -0
- package/dist/api/v1/health.js +512 -0
- package/dist/api/v1/health.js.map +1 -0
- package/dist/api/v1/index.d.ts +22 -0
- package/dist/api/v1/index.d.ts.map +1 -0
- package/dist/api/v1/index.js +81 -0
- package/dist/api/v1/index.js.map +1 -0
- package/dist/api/v1/intents.d.ts +11 -0
- package/dist/api/v1/intents.d.ts.map +1 -0
- package/dist/api/v1/intents.js +239 -0
- package/dist/api/v1/intents.js.map +1 -0
- package/dist/api/v1/operations.d.ts +21 -0
- package/dist/api/v1/operations.d.ts.map +1 -0
- package/dist/api/v1/operations.js +140 -0
- package/dist/api/v1/operations.js.map +1 -0
- package/dist/api/v1/policies.d.ts +11 -0
- package/dist/api/v1/policies.d.ts.map +1 -0
- package/dist/api/v1/policies.js +763 -0
- package/dist/api/v1/policies.js.map +1 -0
- package/dist/api/v1/proofs.d.ts +13 -0
- package/dist/api/v1/proofs.d.ts.map +1 -0
- package/dist/api/v1/proofs.js +239 -0
- package/dist/api/v1/proofs.js.map +1 -0
- package/dist/api/v1/security-dashboard.d.ts +1090 -0
- package/dist/api/v1/security-dashboard.d.ts.map +1 -0
- package/dist/api/v1/security-dashboard.js +755 -0
- package/dist/api/v1/security-dashboard.js.map +1 -0
- package/dist/api/v1/service-accounts.d.ts +16 -0
- package/dist/api/v1/service-accounts.d.ts.map +1 -0
- package/dist/api/v1/service-accounts.js +563 -0
- package/dist/api/v1/service-accounts.js.map +1 -0
- package/dist/api/v1/sessions.d.ts +36 -0
- package/dist/api/v1/sessions.d.ts.map +1 -0
- package/dist/api/v1/sessions.js +333 -0
- package/dist/api/v1/sessions.js.map +1 -0
- package/dist/api/v1/trust.d.ts +14 -0
- package/dist/api/v1/trust.d.ts.map +1 -0
- package/dist/api/v1/trust.js +578 -0
- package/dist/api/v1/trust.js.map +1 -0
- package/dist/api/v1/webhooks.d.ts +11 -0
- package/dist/api/v1/webhooks.d.ts.map +1 -0
- package/dist/api/v1/webhooks.js +250 -0
- package/dist/api/v1/webhooks.js.map +1 -0
- package/dist/api/v2/trust.d.ts +20 -0
- package/dist/api/v2/trust.d.ts.map +1 -0
- package/dist/api/v2/trust.js +362 -0
- package/dist/api/v2/trust.js.map +1 -0
- package/dist/api/validation.d.ts +243 -0
- package/dist/api/validation.d.ts.map +1 -0
- package/dist/api/validation.js +247 -0
- package/dist/api/validation.js.map +1 -0
- package/dist/api/versioning/backward-compat.d.ts +28 -0
- package/dist/api/versioning/backward-compat.d.ts.map +1 -0
- package/dist/api/versioning/backward-compat.js +161 -0
- package/dist/api/versioning/backward-compat.js.map +1 -0
- package/dist/api/versioning/index.d.ts +112 -0
- package/dist/api/versioning/index.d.ts.map +1 -0
- package/dist/api/versioning/index.js +199 -0
- package/dist/api/versioning/index.js.map +1 -0
- package/dist/audit/compliance-reporter.d.ts +271 -0
- package/dist/audit/compliance-reporter.d.ts.map +1 -0
- package/dist/audit/compliance-reporter.js +587 -0
- package/dist/audit/compliance-reporter.js.map +1 -0
- package/dist/audit/db-store.d.ts +689 -0
- package/dist/audit/db-store.d.ts.map +1 -0
- package/dist/audit/db-store.js +589 -0
- package/dist/audit/db-store.js.map +1 -0
- package/dist/audit/event-schema.d.ts +605 -0
- package/dist/audit/event-schema.d.ts.map +1 -0
- package/dist/audit/event-schema.js +566 -0
- package/dist/audit/event-schema.js.map +1 -0
- package/dist/audit/index.d.ts +16 -0
- package/dist/audit/index.d.ts.map +1 -0
- package/dist/audit/index.js +44 -0
- package/dist/audit/index.js.map +1 -0
- package/dist/audit/security-events.d.ts +1624 -0
- package/dist/audit/security-events.d.ts.map +1 -0
- package/dist/audit/security-events.js +775 -0
- package/dist/audit/security-events.js.map +1 -0
- package/dist/audit/security-logger.d.ts +288 -0
- package/dist/audit/security-logger.d.ts.map +1 -0
- package/dist/audit/security-logger.js +820 -0
- package/dist/audit/security-logger.js.map +1 -0
- package/dist/audit/service.d.ts +206 -0
- package/dist/audit/service.d.ts.map +1 -0
- package/dist/audit/service.js +756 -0
- package/dist/audit/service.js.map +1 -0
- package/dist/audit/siem/elastic.d.ts +94 -0
- package/dist/audit/siem/elastic.d.ts.map +1 -0
- package/dist/audit/siem/elastic.js +411 -0
- package/dist/audit/siem/elastic.js.map +1 -0
- package/dist/audit/siem/index.d.ts +179 -0
- package/dist/audit/siem/index.d.ts.map +1 -0
- package/dist/audit/siem/index.js +368 -0
- package/dist/audit/siem/index.js.map +1 -0
- package/dist/audit/siem/loki.d.ts +100 -0
- package/dist/audit/siem/loki.d.ts.map +1 -0
- package/dist/audit/siem/loki.js +405 -0
- package/dist/audit/siem/loki.js.map +1 -0
- package/dist/audit/siem/splunk.d.ts +91 -0
- package/dist/audit/siem/splunk.d.ts.map +1 -0
- package/dist/audit/siem/splunk.js +374 -0
- package/dist/audit/siem/splunk.js.map +1 -0
- package/dist/audit/siem/types.d.ts +547 -0
- package/dist/audit/siem/types.d.ts.map +1 -0
- package/dist/audit/siem/types.js +270 -0
- package/dist/audit/siem/types.js.map +1 -0
- package/dist/audit/types.d.ts +405 -0
- package/dist/audit/types.d.ts.map +1 -0
- package/dist/audit/types.js +121 -0
- package/dist/audit/types.js.map +1 -0
- package/dist/auth/mfa/index.d.ts +66 -0
- package/dist/auth/mfa/index.d.ts.map +1 -0
- package/dist/auth/mfa/index.js +15 -0
- package/dist/auth/mfa/index.js.map +1 -0
- package/dist/auth/mfa/totp.d.ts +221 -0
- package/dist/auth/mfa/totp.d.ts.map +1 -0
- package/dist/auth/mfa/totp.js +324 -0
- package/dist/auth/mfa/totp.js.map +1 -0
- package/dist/auth/mfa/webauthn.d.ts +224 -0
- package/dist/auth/mfa/webauthn.d.ts.map +1 -0
- package/dist/auth/mfa/webauthn.js +409 -0
- package/dist/auth/mfa/webauthn.js.map +1 -0
- package/dist/auth/sso/index.d.ts +247 -0
- package/dist/auth/sso/index.d.ts.map +1 -0
- package/dist/auth/sso/index.js +763 -0
- package/dist/auth/sso/index.js.map +1 -0
- package/dist/auth/sso/oidc-provider.d.ts +146 -0
- package/dist/auth/sso/oidc-provider.d.ts.map +1 -0
- package/dist/auth/sso/oidc-provider.js +589 -0
- package/dist/auth/sso/oidc-provider.js.map +1 -0
- package/dist/auth/sso/types.d.ts +488 -0
- package/dist/auth/sso/types.d.ts.map +1 -0
- package/dist/auth/sso/types.js +73 -0
- package/dist/auth/sso/types.js.map +1 -0
- package/dist/basis/evaluator.d.ts +70 -0
- package/dist/basis/evaluator.d.ts.map +1 -0
- package/dist/basis/evaluator.js +269 -0
- package/dist/basis/evaluator.js.map +1 -0
- package/dist/basis/expression-evaluator.d.ts +77 -0
- package/dist/basis/expression-evaluator.d.ts.map +1 -0
- package/dist/basis/expression-evaluator.js +826 -0
- package/dist/basis/expression-evaluator.js.map +1 -0
- package/dist/basis/index.d.ts +13 -0
- package/dist/basis/index.d.ts.map +1 -0
- package/dist/basis/index.js +13 -0
- package/dist/basis/index.js.map +1 -0
- package/dist/basis/parser.d.ts +376 -0
- package/dist/basis/parser.d.ts.map +1 -0
- package/dist/basis/parser.js +174 -0
- package/dist/basis/parser.js.map +1 -0
- package/dist/basis/types.d.ts +115 -0
- package/dist/basis/types.d.ts.map +1 -0
- package/dist/basis/types.js +5 -0
- package/dist/basis/types.js.map +1 -0
- package/dist/car-extensions/builtin-extensions/audit.d.ts +88 -0
- package/dist/car-extensions/builtin-extensions/audit.d.ts.map +1 -0
- package/dist/car-extensions/builtin-extensions/audit.js +444 -0
- package/dist/car-extensions/builtin-extensions/audit.js.map +1 -0
- package/dist/car-extensions/builtin-extensions/governance.d.ts +32 -0
- package/dist/car-extensions/builtin-extensions/governance.d.ts.map +1 -0
- package/dist/car-extensions/builtin-extensions/governance.js +533 -0
- package/dist/car-extensions/builtin-extensions/governance.js.map +1 -0
- package/dist/car-extensions/builtin-extensions/monitoring.d.ts +43 -0
- package/dist/car-extensions/builtin-extensions/monitoring.d.ts.map +1 -0
- package/dist/car-extensions/builtin-extensions/monitoring.js +416 -0
- package/dist/car-extensions/builtin-extensions/monitoring.js.map +1 -0
- package/dist/car-extensions/car-string-extensions.d.ts +334 -0
- package/dist/car-extensions/car-string-extensions.d.ts.map +1 -0
- package/dist/car-extensions/car-string-extensions.js +435 -0
- package/dist/car-extensions/car-string-extensions.js.map +1 -0
- package/dist/car-extensions/executor.d.ts +208 -0
- package/dist/car-extensions/executor.d.ts.map +1 -0
- package/dist/car-extensions/executor.js +789 -0
- package/dist/car-extensions/executor.js.map +1 -0
- package/dist/car-extensions/index.d.ts +94 -0
- package/dist/car-extensions/index.d.ts.map +1 -0
- package/dist/car-extensions/index.js +157 -0
- package/dist/car-extensions/index.js.map +1 -0
- package/dist/car-extensions/registry.d.ts +217 -0
- package/dist/car-extensions/registry.d.ts.map +1 -0
- package/dist/car-extensions/registry.js +443 -0
- package/dist/car-extensions/registry.js.map +1 -0
- package/dist/car-extensions/service.d.ts +220 -0
- package/dist/car-extensions/service.d.ts.map +1 -0
- package/dist/car-extensions/service.js +484 -0
- package/dist/car-extensions/service.js.map +1 -0
- package/dist/car-extensions/types.d.ts +2265 -0
- package/dist/car-extensions/types.d.ts.map +1 -0
- package/dist/car-extensions/types.js +389 -0
- package/dist/car-extensions/types.js.map +1 -0
- package/dist/cognigate/index.d.ts +139 -0
- package/dist/cognigate/index.d.ts.map +1 -0
- package/dist/cognigate/index.js +404 -0
- package/dist/cognigate/index.js.map +1 -0
- package/dist/cognigate/lua-scripts.d.ts +96 -0
- package/dist/cognigate/lua-scripts.d.ts.map +1 -0
- package/dist/cognigate/lua-scripts.js +264 -0
- package/dist/cognigate/lua-scripts.js.map +1 -0
- package/dist/cognigate/metrics.d.ts +112 -0
- package/dist/cognigate/metrics.d.ts.map +1 -0
- package/dist/cognigate/metrics.js +229 -0
- package/dist/cognigate/metrics.js.map +1 -0
- package/dist/cognigate/output-integration.d.ts +86 -0
- package/dist/cognigate/output-integration.d.ts.map +1 -0
- package/dist/cognigate/output-integration.js +184 -0
- package/dist/cognigate/output-integration.js.map +1 -0
- package/dist/cognigate/resource-interceptors.d.ts +77 -0
- package/dist/cognigate/resource-interceptors.d.ts.map +1 -0
- package/dist/cognigate/resource-interceptors.js +143 -0
- package/dist/cognigate/resource-interceptors.js.map +1 -0
- package/dist/cognigate/resource-state-provider.d.ts +103 -0
- package/dist/cognigate/resource-state-provider.d.ts.map +1 -0
- package/dist/cognigate/resource-state-provider.js +195 -0
- package/dist/cognigate/resource-state-provider.js.map +1 -0
- package/dist/cognigate/resource-tracker.d.ts +85 -0
- package/dist/cognigate/resource-tracker.d.ts.map +1 -0
- package/dist/cognigate/resource-tracker.js +216 -0
- package/dist/cognigate/resource-tracker.js.map +1 -0
- package/dist/cognigate/types.d.ts +199 -0
- package/dist/cognigate/types.d.ts.map +1 -0
- package/dist/cognigate/types.js +11 -0
- package/dist/cognigate/types.js.map +1 -0
- package/dist/common/adapters/index.d.ts +34 -0
- package/dist/common/adapters/index.d.ts.map +1 -0
- package/dist/common/adapters/index.js +46 -0
- package/dist/common/adapters/index.js.map +1 -0
- package/dist/common/adapters/memory-cache.d.ts +91 -0
- package/dist/common/adapters/memory-cache.d.ts.map +1 -0
- package/dist/common/adapters/memory-cache.js +201 -0
- package/dist/common/adapters/memory-cache.js.map +1 -0
- package/dist/common/adapters/memory-lock.d.ts +75 -0
- package/dist/common/adapters/memory-lock.d.ts.map +1 -0
- package/dist/common/adapters/memory-lock.js +219 -0
- package/dist/common/adapters/memory-lock.js.map +1 -0
- package/dist/common/adapters/memory-queue.d.ts +64 -0
- package/dist/common/adapters/memory-queue.d.ts.map +1 -0
- package/dist/common/adapters/memory-queue.js +233 -0
- package/dist/common/adapters/memory-queue.js.map +1 -0
- package/dist/common/adapters/memory-ratelimit.d.ts +78 -0
- package/dist/common/adapters/memory-ratelimit.d.ts.map +1 -0
- package/dist/common/adapters/memory-ratelimit.js +196 -0
- package/dist/common/adapters/memory-ratelimit.js.map +1 -0
- package/dist/common/adapters/memory-session.d.ts +105 -0
- package/dist/common/adapters/memory-session.d.ts.map +1 -0
- package/dist/common/adapters/memory-session.js +302 -0
- package/dist/common/adapters/memory-session.js.map +1 -0
- package/dist/common/adapters/provider.d.ts +47 -0
- package/dist/common/adapters/provider.d.ts.map +1 -0
- package/dist/common/adapters/provider.js +347 -0
- package/dist/common/adapters/provider.js.map +1 -0
- package/dist/common/adapters/types.d.ts +247 -0
- package/dist/common/adapters/types.d.ts.map +1 -0
- package/dist/common/adapters/types.js +11 -0
- package/dist/common/adapters/types.js.map +1 -0
- package/dist/common/authorization.d.ts +137 -0
- package/dist/common/authorization.d.ts.map +1 -0
- package/dist/common/authorization.js +270 -0
- package/dist/common/authorization.js.map +1 -0
- package/dist/common/canonical-bridge.d.ts +151 -0
- package/dist/common/canonical-bridge.d.ts.map +1 -0
- package/dist/common/canonical-bridge.js +231 -0
- package/dist/common/canonical-bridge.js.map +1 -0
- package/dist/common/canonical-json.d.ts +64 -0
- package/dist/common/canonical-json.d.ts.map +1 -0
- package/dist/common/canonical-json.js +95 -0
- package/dist/common/canonical-json.js.map +1 -0
- package/dist/common/circuit-breaker.d.ts +320 -0
- package/dist/common/circuit-breaker.d.ts.map +1 -0
- package/dist/common/circuit-breaker.js +850 -0
- package/dist/common/circuit-breaker.js.map +1 -0
- package/dist/common/config.d.ts +1678 -0
- package/dist/common/config.d.ts.map +1 -0
- package/dist/common/config.js +1057 -0
- package/dist/common/config.js.map +1 -0
- package/dist/common/contracts/index.d.ts +2 -0
- package/dist/common/contracts/index.d.ts.map +1 -0
- package/dist/common/contracts/index.js +2 -0
- package/dist/common/contracts/index.js.map +1 -0
- package/dist/common/contracts/output.d.ts +81 -0
- package/dist/common/contracts/output.d.ts.map +1 -0
- package/dist/common/contracts/output.js +38 -0
- package/dist/common/contracts/output.js.map +1 -0
- package/dist/common/crypto.d.ts +70 -0
- package/dist/common/crypto.d.ts.map +1 -0
- package/dist/common/crypto.js +201 -0
- package/dist/common/crypto.js.map +1 -0
- package/dist/common/database-resilience.d.ts +156 -0
- package/dist/common/database-resilience.d.ts.map +1 -0
- package/dist/common/database-resilience.js +269 -0
- package/dist/common/database-resilience.js.map +1 -0
- package/dist/common/db-metrics.d.ts +90 -0
- package/dist/common/db-metrics.d.ts.map +1 -0
- package/dist/common/db-metrics.js +219 -0
- package/dist/common/db-metrics.js.map +1 -0
- package/dist/common/db-pool.d.ts +307 -0
- package/dist/common/db-pool.d.ts.map +1 -0
- package/dist/common/db-pool.js +879 -0
- package/dist/common/db-pool.js.map +1 -0
- package/dist/common/db.d.ts +105 -0
- package/dist/common/db.d.ts.map +1 -0
- package/dist/common/db.js +216 -0
- package/dist/common/db.js.map +1 -0
- package/dist/common/di.d.ts +202 -0
- package/dist/common/di.d.ts.map +1 -0
- package/dist/common/di.js +219 -0
- package/dist/common/di.js.map +1 -0
- package/dist/common/encryption.d.ts +131 -0
- package/dist/common/encryption.d.ts.map +1 -0
- package/dist/common/encryption.js +255 -0
- package/dist/common/encryption.js.map +1 -0
- package/dist/common/errors.d.ts +229 -0
- package/dist/common/errors.d.ts.map +1 -0
- package/dist/common/errors.js +349 -0
- package/dist/common/errors.js.map +1 -0
- package/dist/common/expression/evaluator.d.ts +58 -0
- package/dist/common/expression/evaluator.d.ts.map +1 -0
- package/dist/common/expression/evaluator.js +326 -0
- package/dist/common/expression/evaluator.js.map +1 -0
- package/dist/common/expression/index.d.ts +180 -0
- package/dist/common/expression/index.d.ts.map +1 -0
- package/dist/common/expression/index.js +198 -0
- package/dist/common/expression/index.js.map +1 -0
- package/dist/common/expression/lexer.d.ts +69 -0
- package/dist/common/expression/lexer.d.ts.map +1 -0
- package/dist/common/expression/lexer.js +255 -0
- package/dist/common/expression/lexer.js.map +1 -0
- package/dist/common/expression/parser.d.ts +133 -0
- package/dist/common/expression/parser.d.ts.map +1 -0
- package/dist/common/expression/parser.js +293 -0
- package/dist/common/expression/parser.js.map +1 -0
- package/dist/common/group-membership.d.ts +119 -0
- package/dist/common/group-membership.d.ts.map +1 -0
- package/dist/common/group-membership.js +250 -0
- package/dist/common/group-membership.js.map +1 -0
- package/dist/common/index.d.ts +14 -0
- package/dist/common/index.d.ts.map +1 -0
- package/dist/common/index.js +15 -0
- package/dist/common/index.js.map +1 -0
- package/dist/common/leader-election.d.ts +40 -0
- package/dist/common/leader-election.d.ts.map +1 -0
- package/dist/common/leader-election.js +232 -0
- package/dist/common/leader-election.js.map +1 -0
- package/dist/common/lock.d.ts +77 -0
- package/dist/common/lock.d.ts.map +1 -0
- package/dist/common/lock.js +167 -0
- package/dist/common/lock.js.map +1 -0
- package/dist/common/logger.d.ts +19 -0
- package/dist/common/logger.d.ts.map +1 -0
- package/dist/common/logger.js +80 -0
- package/dist/common/logger.js.map +1 -0
- package/dist/common/metrics-registry.d.ts +48 -0
- package/dist/common/metrics-registry.d.ts.map +1 -0
- package/dist/common/metrics-registry.js +77 -0
- package/dist/common/metrics-registry.js.map +1 -0
- package/dist/common/metrics.d.ts +227 -0
- package/dist/common/metrics.d.ts.map +1 -0
- package/dist/common/metrics.js +524 -0
- package/dist/common/metrics.js.map +1 -0
- package/dist/common/operation-tracker.d.ts +137 -0
- package/dist/common/operation-tracker.d.ts.map +1 -0
- package/dist/common/operation-tracker.js +366 -0
- package/dist/common/operation-tracker.js.map +1 -0
- package/dist/common/provenance/chain.d.ts +54 -0
- package/dist/common/provenance/chain.d.ts.map +1 -0
- package/dist/common/provenance/chain.js +252 -0
- package/dist/common/provenance/chain.js.map +1 -0
- package/dist/common/provenance/index.d.ts +14 -0
- package/dist/common/provenance/index.d.ts.map +1 -0
- package/dist/common/provenance/index.js +19 -0
- package/dist/common/provenance/index.js.map +1 -0
- package/dist/common/provenance/query.d.ts +111 -0
- package/dist/common/provenance/query.d.ts.map +1 -0
- package/dist/common/provenance/query.js +310 -0
- package/dist/common/provenance/query.js.map +1 -0
- package/dist/common/provenance/storage.d.ts +297 -0
- package/dist/common/provenance/storage.d.ts.map +1 -0
- package/dist/common/provenance/storage.js +436 -0
- package/dist/common/provenance/storage.js.map +1 -0
- package/dist/common/provenance/tracker.d.ts +57 -0
- package/dist/common/provenance/tracker.d.ts.map +1 -0
- package/dist/common/provenance/tracker.js +209 -0
- package/dist/common/provenance/tracker.js.map +1 -0
- package/dist/common/provenance/types.d.ts +146 -0
- package/dist/common/provenance/types.d.ts.map +1 -0
- package/dist/common/provenance/types.js +10 -0
- package/dist/common/provenance/types.js.map +1 -0
- package/dist/common/random.d.ts +84 -0
- package/dist/common/random.d.ts.map +1 -0
- package/dist/common/random.js +130 -0
- package/dist/common/random.js.map +1 -0
- package/dist/common/redaction.d.ts +49 -0
- package/dist/common/redaction.d.ts.map +1 -0
- package/dist/common/redaction.js +217 -0
- package/dist/common/redaction.js.map +1 -0
- package/dist/common/redis-cluster.d.ts +538 -0
- package/dist/common/redis-cluster.d.ts.map +1 -0
- package/dist/common/redis-cluster.js +1539 -0
- package/dist/common/redis-cluster.js.map +1 -0
- package/dist/common/redis-resilience.d.ts +270 -0
- package/dist/common/redis-resilience.d.ts.map +1 -0
- package/dist/common/redis-resilience.js +586 -0
- package/dist/common/redis-resilience.js.map +1 -0
- package/dist/common/redis.d.ts +19 -0
- package/dist/common/redis.d.ts.map +1 -0
- package/dist/common/redis.js +73 -0
- package/dist/common/redis.js.map +1 -0
- package/dist/common/secret-generator.d.ts +142 -0
- package/dist/common/secret-generator.d.ts.map +1 -0
- package/dist/common/secret-generator.js +286 -0
- package/dist/common/secret-generator.js.map +1 -0
- package/dist/common/security-mode.d.ts +101 -0
- package/dist/common/security-mode.d.ts.map +1 -0
- package/dist/common/security-mode.js +304 -0
- package/dist/common/security-mode.js.map +1 -0
- package/dist/common/telemetry/index.d.ts +82 -0
- package/dist/common/telemetry/index.d.ts.map +1 -0
- package/dist/common/telemetry/index.js +198 -0
- package/dist/common/telemetry/index.js.map +1 -0
- package/dist/common/telemetry/instrumentation.d.ts +167 -0
- package/dist/common/telemetry/instrumentation.d.ts.map +1 -0
- package/dist/common/telemetry/instrumentation.js +492 -0
- package/dist/common/telemetry/instrumentation.js.map +1 -0
- package/dist/common/telemetry/metrics-bridge.d.ts +227 -0
- package/dist/common/telemetry/metrics-bridge.d.ts.map +1 -0
- package/dist/common/telemetry/metrics-bridge.js +437 -0
- package/dist/common/telemetry/metrics-bridge.js.map +1 -0
- package/dist/common/telemetry/middleware.d.ts +114 -0
- package/dist/common/telemetry/middleware.d.ts.map +1 -0
- package/dist/common/telemetry/middleware.js +353 -0
- package/dist/common/telemetry/middleware.js.map +1 -0
- package/dist/common/telemetry/propagation.d.ts +221 -0
- package/dist/common/telemetry/propagation.d.ts.map +1 -0
- package/dist/common/telemetry/propagation.js +409 -0
- package/dist/common/telemetry/propagation.js.map +1 -0
- package/dist/common/telemetry/spans.d.ts +295 -0
- package/dist/common/telemetry/spans.d.ts.map +1 -0
- package/dist/common/telemetry/spans.js +439 -0
- package/dist/common/telemetry/spans.js.map +1 -0
- package/dist/common/telemetry/tracer.d.ts +155 -0
- package/dist/common/telemetry/tracer.d.ts.map +1 -0
- package/dist/common/telemetry/tracer.js +343 -0
- package/dist/common/telemetry/tracer.js.map +1 -0
- package/dist/common/telemetry.d.ts +15 -0
- package/dist/common/telemetry.d.ts.map +1 -0
- package/dist/common/telemetry.js +61 -0
- package/dist/common/telemetry.js.map +1 -0
- package/dist/common/tenant-verification.d.ts +86 -0
- package/dist/common/tenant-verification.d.ts.map +1 -0
- package/dist/common/tenant-verification.js +184 -0
- package/dist/common/tenant-verification.js.map +1 -0
- package/dist/common/timeout.d.ts +40 -0
- package/dist/common/timeout.d.ts.map +1 -0
- package/dist/common/timeout.js +82 -0
- package/dist/common/timeout.js.map +1 -0
- package/dist/common/token-revocation.d.ts +44 -0
- package/dist/common/token-revocation.d.ts.map +1 -0
- package/dist/common/token-revocation.js +169 -0
- package/dist/common/token-revocation.js.map +1 -0
- package/dist/common/trace.d.ts +149 -0
- package/dist/common/trace.d.ts.map +1 -0
- package/dist/common/trace.js +328 -0
- package/dist/common/trace.js.map +1 -0
- package/dist/common/trust-cache.d.ts +263 -0
- package/dist/common/trust-cache.d.ts.map +1 -0
- package/dist/common/trust-cache.js +670 -0
- package/dist/common/trust-cache.js.map +1 -0
- package/dist/common/types.d.ts +328 -0
- package/dist/common/types.d.ts.map +1 -0
- package/dist/common/types.js +55 -0
- package/dist/common/types.js.map +1 -0
- package/dist/common/validation.d.ts +113 -0
- package/dist/common/validation.d.ts.map +1 -0
- package/dist/common/validation.js +221 -0
- package/dist/common/validation.js.map +1 -0
- package/dist/compliance/export/evidence-collector.d.ts +252 -0
- package/dist/compliance/export/evidence-collector.d.ts.map +1 -0
- package/dist/compliance/export/evidence-collector.js +488 -0
- package/dist/compliance/export/evidence-collector.js.map +1 -0
- package/dist/compliance/export/hash-verifier.d.ts +181 -0
- package/dist/compliance/export/hash-verifier.d.ts.map +1 -0
- package/dist/compliance/export/hash-verifier.js +425 -0
- package/dist/compliance/export/hash-verifier.js.map +1 -0
- package/dist/compliance/export/index.d.ts +14 -0
- package/dist/compliance/export/index.d.ts.map +1 -0
- package/dist/compliance/export/index.js +41 -0
- package/dist/compliance/export/index.js.map +1 -0
- package/dist/compliance/export/report-generator.d.ts +264 -0
- package/dist/compliance/export/report-generator.d.ts.map +1 -0
- package/dist/compliance/export/report-generator.js +890 -0
- package/dist/compliance/export/report-generator.js.map +1 -0
- package/dist/compliance/export/scheduled-exports.d.ts +256 -0
- package/dist/compliance/export/scheduled-exports.d.ts.map +1 -0
- package/dist/compliance/export/scheduled-exports.js +545 -0
- package/dist/compliance/export/scheduled-exports.js.map +1 -0
- package/dist/compliance/export/service.d.ts +191 -0
- package/dist/compliance/export/service.d.ts.map +1 -0
- package/dist/compliance/export/service.js +382 -0
- package/dist/compliance/export/service.js.map +1 -0
- package/dist/compliance/fedramp/assessment.d.ts +654 -0
- package/dist/compliance/fedramp/assessment.d.ts.map +1 -0
- package/dist/compliance/fedramp/assessment.js +721 -0
- package/dist/compliance/fedramp/assessment.js.map +1 -0
- package/dist/compliance/fedramp/boundary.d.ts +932 -0
- package/dist/compliance/fedramp/boundary.d.ts.map +1 -0
- package/dist/compliance/fedramp/boundary.js +645 -0
- package/dist/compliance/fedramp/boundary.js.map +1 -0
- package/dist/compliance/fedramp/continuous-monitoring.d.ts +705 -0
- package/dist/compliance/fedramp/continuous-monitoring.d.ts.map +1 -0
- package/dist/compliance/fedramp/continuous-monitoring.js +616 -0
- package/dist/compliance/fedramp/continuous-monitoring.js.map +1 -0
- package/dist/compliance/fedramp/controls.d.ts +128 -0
- package/dist/compliance/fedramp/controls.d.ts.map +1 -0
- package/dist/compliance/fedramp/controls.js +1110 -0
- package/dist/compliance/fedramp/controls.js.map +1 -0
- package/dist/compliance/fedramp/incident-reporting.d.ts +1001 -0
- package/dist/compliance/fedramp/incident-reporting.d.ts.map +1 -0
- package/dist/compliance/fedramp/incident-reporting.js +764 -0
- package/dist/compliance/fedramp/incident-reporting.js.map +1 -0
- package/dist/compliance/fedramp/index.d.ts +87 -0
- package/dist/compliance/fedramp/index.d.ts.map +1 -0
- package/dist/compliance/fedramp/index.js +192 -0
- package/dist/compliance/fedramp/index.js.map +1 -0
- package/dist/compliance/fedramp/metrics.d.ts +288 -0
- package/dist/compliance/fedramp/metrics.d.ts.map +1 -0
- package/dist/compliance/fedramp/metrics.js +560 -0
- package/dist/compliance/fedramp/metrics.js.map +1 -0
- package/dist/compliance/fedramp/poam.d.ts +635 -0
- package/dist/compliance/fedramp/poam.d.ts.map +1 -0
- package/dist/compliance/fedramp/poam.js +602 -0
- package/dist/compliance/fedramp/poam.js.map +1 -0
- package/dist/compliance/fedramp/ssp-generator.d.ts +368 -0
- package/dist/compliance/fedramp/ssp-generator.d.ts.map +1 -0
- package/dist/compliance/fedramp/ssp-generator.js +543 -0
- package/dist/compliance/fedramp/ssp-generator.js.map +1 -0
- package/dist/compliance/frameworks/nist-800-53.d.ts +35 -0
- package/dist/compliance/frameworks/nist-800-53.d.ts.map +1 -0
- package/dist/compliance/frameworks/nist-800-53.js +892 -0
- package/dist/compliance/frameworks/nist-800-53.js.map +1 -0
- package/dist/compliance/frameworks/pci-dss.d.ts +407 -0
- package/dist/compliance/frameworks/pci-dss.d.ts.map +1 -0
- package/dist/compliance/frameworks/pci-dss.js +1873 -0
- package/dist/compliance/frameworks/pci-dss.js.map +1 -0
- package/dist/compliance/frameworks/soc2.d.ts +42 -0
- package/dist/compliance/frameworks/soc2.d.ts.map +1 -0
- package/dist/compliance/frameworks/soc2.js +669 -0
- package/dist/compliance/frameworks/soc2.js.map +1 -0
- package/dist/compliance/gdpr/data-transfers.d.ts +493 -0
- package/dist/compliance/gdpr/data-transfers.d.ts.map +1 -0
- package/dist/compliance/gdpr/data-transfers.js +1242 -0
- package/dist/compliance/gdpr/data-transfers.js.map +1 -0
- package/dist/compliance/gdpr/index.d.ts +7 -0
- package/dist/compliance/gdpr/index.d.ts.map +1 -0
- package/dist/compliance/gdpr/index.js +7 -0
- package/dist/compliance/gdpr/index.js.map +1 -0
- package/dist/compliance/index.d.ts +148 -0
- package/dist/compliance/index.d.ts.map +1 -0
- package/dist/compliance/index.js +532 -0
- package/dist/compliance/index.js.map +1 -0
- package/dist/compliance/reports.d.ts +141 -0
- package/dist/compliance/reports.d.ts.map +1 -0
- package/dist/compliance/reports.js +495 -0
- package/dist/compliance/reports.js.map +1 -0
- package/dist/compliance/retention/index.d.ts +19 -0
- package/dist/compliance/retention/index.d.ts.map +1 -0
- package/dist/compliance/retention/index.js +46 -0
- package/dist/compliance/retention/index.js.map +1 -0
- package/dist/compliance/retention/retention-enforcer.d.ts +128 -0
- package/dist/compliance/retention/retention-enforcer.d.ts.map +1 -0
- package/dist/compliance/retention/retention-enforcer.js +695 -0
- package/dist/compliance/retention/retention-enforcer.js.map +1 -0
- package/dist/compliance/retention/retention-policy.d.ts +307 -0
- package/dist/compliance/retention/retention-policy.d.ts.map +1 -0
- package/dist/compliance/retention/retention-policy.js +102 -0
- package/dist/compliance/retention/retention-policy.js.map +1 -0
- package/dist/compliance/retention/retention-scheduler.d.ts +124 -0
- package/dist/compliance/retention/retention-scheduler.d.ts.map +1 -0
- package/dist/compliance/retention/retention-scheduler.js +391 -0
- package/dist/compliance/retention/retention-scheduler.js.map +1 -0
- package/dist/compliance/types.d.ts +1162 -0
- package/dist/compliance/types.d.ts.map +1 -0
- package/dist/compliance/types.js +191 -0
- package/dist/compliance/types.js.map +1 -0
- package/dist/db/migration-checker.d.ts +183 -0
- package/dist/db/migration-checker.d.ts.map +1 -0
- package/dist/db/migration-checker.js +680 -0
- package/dist/db/migration-checker.js.map +1 -0
- package/dist/db/schema/api-keys.d.ts +506 -0
- package/dist/db/schema/api-keys.d.ts.map +1 -0
- package/dist/db/schema/api-keys.js +98 -0
- package/dist/db/schema/api-keys.js.map +1 -0
- package/dist/db/schema/escalations.d.ts +554 -0
- package/dist/db/schema/escalations.d.ts.map +1 -0
- package/dist/db/schema/escalations.js +97 -0
- package/dist/db/schema/escalations.js.map +1 -0
- package/dist/db/schema/index.d.ts +19 -0
- package/dist/db/schema/index.d.ts.map +1 -0
- package/dist/db/schema/index.js +19 -0
- package/dist/db/schema/index.js.map +1 -0
- package/dist/db/schema/intents.d.ts +535 -0
- package/dist/db/schema/intents.d.ts.map +1 -0
- package/dist/db/schema/intents.js +90 -0
- package/dist/db/schema/intents.js.map +1 -0
- package/dist/db/schema/merkle.d.ts +475 -0
- package/dist/db/schema/merkle.d.ts.map +1 -0
- package/dist/db/schema/merkle.js +100 -0
- package/dist/db/schema/merkle.js.map +1 -0
- package/dist/db/schema/operations.d.ts +256 -0
- package/dist/db/schema/operations.d.ts.map +1 -0
- package/dist/db/schema/operations.js +65 -0
- package/dist/db/schema/operations.js.map +1 -0
- package/dist/db/schema/policy-versions.d.ts +149 -0
- package/dist/db/schema/policy-versions.d.ts.map +1 -0
- package/dist/db/schema/policy-versions.js +40 -0
- package/dist/db/schema/policy-versions.js.map +1 -0
- package/dist/db/schema/proofs.d.ts +412 -0
- package/dist/db/schema/proofs.d.ts.map +1 -0
- package/dist/db/schema/proofs.js +63 -0
- package/dist/db/schema/proofs.js.map +1 -0
- package/dist/db/schema/service-accounts.d.ts +783 -0
- package/dist/db/schema/service-accounts.d.ts.map +1 -0
- package/dist/db/schema/service-accounts.js +176 -0
- package/dist/db/schema/service-accounts.js.map +1 -0
- package/dist/db/schema/trust.d.ts +593 -0
- package/dist/db/schema/trust.d.ts.map +1 -0
- package/dist/db/schema/trust.js +98 -0
- package/dist/db/schema/trust.js.map +1 -0
- package/dist/db/schema/users.d.ts +487 -0
- package/dist/db/schema/users.d.ts.map +1 -0
- package/dist/db/schema/users.js +133 -0
- package/dist/db/schema/users.js.map +1 -0
- package/dist/db/schema/webhooks.d.ts +382 -0
- package/dist/db/schema/webhooks.d.ts.map +1 -0
- package/dist/db/schema/webhooks.js +91 -0
- package/dist/db/schema/webhooks.js.map +1 -0
- package/dist/enforce/constraint-evaluator.d.ts +385 -0
- package/dist/enforce/constraint-evaluator.d.ts.map +1 -0
- package/dist/enforce/constraint-evaluator.js +648 -0
- package/dist/enforce/constraint-evaluator.js.map +1 -0
- package/dist/enforce/decision-aggregator.d.ts +269 -0
- package/dist/enforce/decision-aggregator.d.ts.map +1 -0
- package/dist/enforce/decision-aggregator.js +560 -0
- package/dist/enforce/decision-aggregator.js.map +1 -0
- package/dist/enforce/escalation-rules.d.ts +411 -0
- package/dist/enforce/escalation-rules.d.ts.map +1 -0
- package/dist/enforce/escalation-rules.js +681 -0
- package/dist/enforce/escalation-rules.js.map +1 -0
- package/dist/enforce/index.d.ts +175 -0
- package/dist/enforce/index.d.ts.map +1 -0
- package/dist/enforce/index.js +402 -0
- package/dist/enforce/index.js.map +1 -0
- package/dist/enforce/policy-engine.d.ts +390 -0
- package/dist/enforce/policy-engine.d.ts.map +1 -0
- package/dist/enforce/policy-engine.js +652 -0
- package/dist/enforce/policy-engine.js.map +1 -0
- package/dist/enforce/runtime-config.d.ts +387 -0
- package/dist/enforce/runtime-config.d.ts.map +1 -0
- package/dist/enforce/runtime-config.js +709 -0
- package/dist/enforce/runtime-config.js.map +1 -0
- package/dist/index.d.ts +63 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +74 -0
- package/dist/index.js.map +1 -0
- package/dist/intent/audit.d.ts +119 -0
- package/dist/intent/audit.d.ts.map +1 -0
- package/dist/intent/audit.js +457 -0
- package/dist/intent/audit.js.map +1 -0
- package/dist/intent/classifier/index.d.ts +121 -0
- package/dist/intent/classifier/index.d.ts.map +1 -0
- package/dist/intent/classifier/index.js +232 -0
- package/dist/intent/classifier/index.js.map +1 -0
- package/dist/intent/classifier/patterns.d.ts +129 -0
- package/dist/intent/classifier/patterns.d.ts.map +1 -0
- package/dist/intent/classifier/patterns.js +471 -0
- package/dist/intent/classifier/patterns.js.map +1 -0
- package/dist/intent/classifier/risk.d.ts +177 -0
- package/dist/intent/classifier/risk.d.ts.map +1 -0
- package/dist/intent/classifier/risk.js +335 -0
- package/dist/intent/classifier/risk.js.map +1 -0
- package/dist/intent/cleanup.d.ts +24 -0
- package/dist/intent/cleanup.d.ts.map +1 -0
- package/dist/intent/cleanup.js +104 -0
- package/dist/intent/cleanup.js.map +1 -0
- package/dist/intent/consent.d.ts +238 -0
- package/dist/intent/consent.d.ts.map +1 -0
- package/dist/intent/consent.js +427 -0
- package/dist/intent/consent.js.map +1 -0
- package/dist/intent/escalation.d.ts +208 -0
- package/dist/intent/escalation.d.ts.map +1 -0
- package/dist/intent/escalation.js +550 -0
- package/dist/intent/escalation.js.map +1 -0
- package/dist/intent/gdpr.d.ts +245 -0
- package/dist/intent/gdpr.d.ts.map +1 -0
- package/dist/intent/gdpr.js +580 -0
- package/dist/intent/gdpr.js.map +1 -0
- package/dist/intent/health.d.ts +214 -0
- package/dist/intent/health.d.ts.map +1 -0
- package/dist/intent/health.js +526 -0
- package/dist/intent/health.js.map +1 -0
- package/dist/intent/index.d.ts +447 -0
- package/dist/intent/index.d.ts.map +1 -0
- package/dist/intent/index.js +685 -0
- package/dist/intent/index.js.map +1 -0
- package/dist/intent/metrics.d.ts +391 -0
- package/dist/intent/metrics.d.ts.map +1 -0
- package/dist/intent/metrics.js +885 -0
- package/dist/intent/metrics.js.map +1 -0
- package/dist/intent/openapi.d.ts +22 -0
- package/dist/intent/openapi.d.ts.map +1 -0
- package/dist/intent/openapi.js +1674 -0
- package/dist/intent/openapi.js.map +1 -0
- package/dist/intent/planner/dependency.d.ts +78 -0
- package/dist/intent/planner/dependency.d.ts.map +1 -0
- package/dist/intent/planner/dependency.js +334 -0
- package/dist/intent/planner/dependency.js.map +1 -0
- package/dist/intent/planner/index.d.ts +157 -0
- package/dist/intent/planner/index.d.ts.map +1 -0
- package/dist/intent/planner/index.js +372 -0
- package/dist/intent/planner/index.js.map +1 -0
- package/dist/intent/planner/rollback.d.ts +92 -0
- package/dist/intent/planner/rollback.d.ts.map +1 -0
- package/dist/intent/planner/rollback.js +326 -0
- package/dist/intent/planner/rollback.js.map +1 -0
- package/dist/intent/planner/templates.d.ts +81 -0
- package/dist/intent/planner/templates.d.ts.map +1 -0
- package/dist/intent/planner/templates.js +560 -0
- package/dist/intent/planner/templates.js.map +1 -0
- package/dist/intent/queue.d.ts +150 -0
- package/dist/intent/queue.d.ts.map +1 -0
- package/dist/intent/queue.js +339 -0
- package/dist/intent/queue.js.map +1 -0
- package/dist/intent/queues.d.ts +176 -0
- package/dist/intent/queues.d.ts.map +1 -0
- package/dist/intent/queues.js +1382 -0
- package/dist/intent/queues.js.map +1 -0
- package/dist/intent/ratelimit.d.ts +147 -0
- package/dist/intent/ratelimit.d.ts.map +1 -0
- package/dist/intent/ratelimit.js +301 -0
- package/dist/intent/ratelimit.js.map +1 -0
- package/dist/intent/replay/comparator.d.ts +148 -0
- package/dist/intent/replay/comparator.d.ts.map +1 -0
- package/dist/intent/replay/comparator.js +320 -0
- package/dist/intent/replay/comparator.js.map +1 -0
- package/dist/intent/replay/index.d.ts +159 -0
- package/dist/intent/replay/index.d.ts.map +1 -0
- package/dist/intent/replay/index.js +486 -0
- package/dist/intent/replay/index.js.map +1 -0
- package/dist/intent/replay/simulator.d.ts +184 -0
- package/dist/intent/replay/simulator.d.ts.map +1 -0
- package/dist/intent/replay/simulator.js +510 -0
- package/dist/intent/replay/simulator.js.map +1 -0
- package/dist/intent/replay/snapshot.d.ts +149 -0
- package/dist/intent/replay/snapshot.d.ts.map +1 -0
- package/dist/intent/replay/snapshot.js +245 -0
- package/dist/intent/replay/snapshot.js.map +1 -0
- package/dist/intent/repository.d.ts +198 -0
- package/dist/intent/repository.d.ts.map +1 -0
- package/dist/intent/repository.js +526 -0
- package/dist/intent/repository.js.map +1 -0
- package/dist/intent/response-middleware.d.ts +156 -0
- package/dist/intent/response-middleware.d.ts.map +1 -0
- package/dist/intent/response-middleware.js +337 -0
- package/dist/intent/response-middleware.js.map +1 -0
- package/dist/intent/response.d.ts +267 -0
- package/dist/intent/response.d.ts.map +1 -0
- package/dist/intent/response.js +402 -0
- package/dist/intent/response.js.map +1 -0
- package/dist/intent/routes.d.ts +35 -0
- package/dist/intent/routes.d.ts.map +1 -0
- package/dist/intent/routes.js +801 -0
- package/dist/intent/routes.js.map +1 -0
- package/dist/intent/scheduler.d.ts +45 -0
- package/dist/intent/scheduler.d.ts.map +1 -0
- package/dist/intent/scheduler.js +221 -0
- package/dist/intent/scheduler.js.map +1 -0
- package/dist/intent/schema.d.ts +2997 -0
- package/dist/intent/schema.d.ts.map +1 -0
- package/dist/intent/schema.js +447 -0
- package/dist/intent/schema.js.map +1 -0
- package/dist/intent/shutdown.d.ts +145 -0
- package/dist/intent/shutdown.d.ts.map +1 -0
- package/dist/intent/shutdown.js +468 -0
- package/dist/intent/shutdown.js.map +1 -0
- package/dist/intent/state-machine.d.ts +111 -0
- package/dist/intent/state-machine.d.ts.map +1 -0
- package/dist/intent/state-machine.js +242 -0
- package/dist/intent/state-machine.js.map +1 -0
- package/dist/intent/tracing.d.ts +152 -0
- package/dist/intent/tracing.d.ts.map +1 -0
- package/dist/intent/tracing.js +658 -0
- package/dist/intent/tracing.js.map +1 -0
- package/dist/intent/types.d.ts +175 -0
- package/dist/intent/types.d.ts.map +1 -0
- package/dist/intent/types.js +25 -0
- package/dist/intent/types.js.map +1 -0
- package/dist/intent/webhooks/delivery-repository.d.ts +80 -0
- package/dist/intent/webhooks/delivery-repository.d.ts.map +1 -0
- package/dist/intent/webhooks/delivery-repository.js +251 -0
- package/dist/intent/webhooks/delivery-repository.js.map +1 -0
- package/dist/intent/webhooks/dns-pinning.d.ts +30 -0
- package/dist/intent/webhooks/dns-pinning.d.ts.map +1 -0
- package/dist/intent/webhooks/dns-pinning.js +69 -0
- package/dist/intent/webhooks/dns-pinning.js.map +1 -0
- package/dist/intent/webhooks/index.d.ts +14 -0
- package/dist/intent/webhooks/index.d.ts.map +1 -0
- package/dist/intent/webhooks/index.js +17 -0
- package/dist/intent/webhooks/index.js.map +1 -0
- package/dist/intent/webhooks/signature.d.ts +47 -0
- package/dist/intent/webhooks/signature.d.ts.map +1 -0
- package/dist/intent/webhooks/signature.js +80 -0
- package/dist/intent/webhooks/signature.js.map +1 -0
- package/dist/intent/webhooks/ssrf-protection.d.ts +29 -0
- package/dist/intent/webhooks/ssrf-protection.d.ts.map +1 -0
- package/dist/intent/webhooks/ssrf-protection.js +161 -0
- package/dist/intent/webhooks/ssrf-protection.js.map +1 -0
- package/dist/intent/webhooks/types.d.ts +132 -0
- package/dist/intent/webhooks/types.d.ts.map +1 -0
- package/dist/intent/webhooks/types.js +14 -0
- package/dist/intent/webhooks/types.js.map +1 -0
- package/dist/intent/webhooks.d.ts +610 -0
- package/dist/intent/webhooks.d.ts.map +1 -0
- package/dist/intent/webhooks.js +1793 -0
- package/dist/intent/webhooks.js.map +1 -0
- package/dist/policy/diff.d.ts +88 -0
- package/dist/policy/diff.d.ts.map +1 -0
- package/dist/policy/diff.js +325 -0
- package/dist/policy/diff.js.map +1 -0
- package/dist/policy/evaluator.d.ts +102 -0
- package/dist/policy/evaluator.d.ts.map +1 -0
- package/dist/policy/evaluator.js +647 -0
- package/dist/policy/evaluator.js.map +1 -0
- package/dist/policy/index.d.ts +16 -0
- package/dist/policy/index.d.ts.map +1 -0
- package/dist/policy/index.js +19 -0
- package/dist/policy/index.js.map +1 -0
- package/dist/policy/loader.d.ts +63 -0
- package/dist/policy/loader.d.ts.map +1 -0
- package/dist/policy/loader.js +173 -0
- package/dist/policy/loader.js.map +1 -0
- package/dist/policy/service.d.ts +150 -0
- package/dist/policy/service.d.ts.map +1 -0
- package/dist/policy/service.js +782 -0
- package/dist/policy/service.js.map +1 -0
- package/dist/policy/types.d.ts +220 -0
- package/dist/policy/types.d.ts.map +1 -0
- package/dist/policy/types.js +36 -0
- package/dist/policy/types.js.map +1 -0
- package/dist/proof/hybrid-signing.d.ts +82 -0
- package/dist/proof/hybrid-signing.d.ts.map +1 -0
- package/dist/proof/hybrid-signing.js +239 -0
- package/dist/proof/hybrid-signing.js.map +1 -0
- package/dist/proof/index.d.ts +203 -0
- package/dist/proof/index.d.ts.map +1 -0
- package/dist/proof/index.js +610 -0
- package/dist/proof/index.js.map +1 -0
- package/dist/proof/merkle-service.d.ts +194 -0
- package/dist/proof/merkle-service.d.ts.map +1 -0
- package/dist/proof/merkle-service.js +463 -0
- package/dist/proof/merkle-service.js.map +1 -0
- package/dist/proof/merkle.d.ts +118 -0
- package/dist/proof/merkle.d.ts.map +1 -0
- package/dist/proof/merkle.js +265 -0
- package/dist/proof/merkle.js.map +1 -0
- package/dist/security/ai-governance/access-policy.d.ts +197 -0
- package/dist/security/ai-governance/access-policy.d.ts.map +1 -0
- package/dist/security/ai-governance/access-policy.js +522 -0
- package/dist/security/ai-governance/access-policy.js.map +1 -0
- package/dist/security/ai-governance/audit-trail.d.ts +241 -0
- package/dist/security/ai-governance/audit-trail.d.ts.map +1 -0
- package/dist/security/ai-governance/audit-trail.js +645 -0
- package/dist/security/ai-governance/audit-trail.js.map +1 -0
- package/dist/security/ai-governance/bias-detection.d.ts +221 -0
- package/dist/security/ai-governance/bias-detection.d.ts.map +1 -0
- package/dist/security/ai-governance/bias-detection.js +615 -0
- package/dist/security/ai-governance/bias-detection.js.map +1 -0
- package/dist/security/ai-governance/index.d.ts +92 -0
- package/dist/security/ai-governance/index.d.ts.map +1 -0
- package/dist/security/ai-governance/index.js +184 -0
- package/dist/security/ai-governance/index.js.map +1 -0
- package/dist/security/ai-governance/middleware.d.ts +110 -0
- package/dist/security/ai-governance/middleware.d.ts.map +1 -0
- package/dist/security/ai-governance/middleware.js +359 -0
- package/dist/security/ai-governance/middleware.js.map +1 -0
- package/dist/security/ai-governance/model-registry.d.ts +229 -0
- package/dist/security/ai-governance/model-registry.d.ts.map +1 -0
- package/dist/security/ai-governance/model-registry.js +535 -0
- package/dist/security/ai-governance/model-registry.js.map +1 -0
- package/dist/security/ai-governance/output-filter.d.ts +150 -0
- package/dist/security/ai-governance/output-filter.d.ts.map +1 -0
- package/dist/security/ai-governance/output-filter.js +561 -0
- package/dist/security/ai-governance/output-filter.js.map +1 -0
- package/dist/security/ai-governance/prompt-injection.d.ts +153 -0
- package/dist/security/ai-governance/prompt-injection.d.ts.map +1 -0
- package/dist/security/ai-governance/prompt-injection.js +614 -0
- package/dist/security/ai-governance/prompt-injection.js.map +1 -0
- package/dist/security/ai-governance/rate-limiter.d.ts +156 -0
- package/dist/security/ai-governance/rate-limiter.d.ts.map +1 -0
- package/dist/security/ai-governance/rate-limiter.js +541 -0
- package/dist/security/ai-governance/rate-limiter.js.map +1 -0
- package/dist/security/ai-governance/types.d.ts +594 -0
- package/dist/security/ai-governance/types.d.ts.map +1 -0
- package/dist/security/ai-governance/types.js +6 -0
- package/dist/security/ai-governance/types.js.map +1 -0
- package/dist/security/alerting/channels/base.d.ts +91 -0
- package/dist/security/alerting/channels/base.d.ts.map +1 -0
- package/dist/security/alerting/channels/base.js +128 -0
- package/dist/security/alerting/channels/base.js.map +1 -0
- package/dist/security/alerting/channels/email.d.ts +92 -0
- package/dist/security/alerting/channels/email.d.ts.map +1 -0
- package/dist/security/alerting/channels/email.js +418 -0
- package/dist/security/alerting/channels/email.js.map +1 -0
- package/dist/security/alerting/channels/http-base.d.ts +86 -0
- package/dist/security/alerting/channels/http-base.d.ts.map +1 -0
- package/dist/security/alerting/channels/http-base.js +133 -0
- package/dist/security/alerting/channels/http-base.js.map +1 -0
- package/dist/security/alerting/channels/index.d.ts +30 -0
- package/dist/security/alerting/channels/index.d.ts.map +1 -0
- package/dist/security/alerting/channels/index.js +22 -0
- package/dist/security/alerting/channels/index.js.map +1 -0
- package/dist/security/alerting/channels/pagerduty.d.ts +70 -0
- package/dist/security/alerting/channels/pagerduty.d.ts.map +1 -0
- package/dist/security/alerting/channels/pagerduty.js +248 -0
- package/dist/security/alerting/channels/pagerduty.js.map +1 -0
- package/dist/security/alerting/channels/slack.d.ts +55 -0
- package/dist/security/alerting/channels/slack.d.ts.map +1 -0
- package/dist/security/alerting/channels/slack.js +215 -0
- package/dist/security/alerting/channels/slack.js.map +1 -0
- package/dist/security/alerting/channels/sns.d.ts +87 -0
- package/dist/security/alerting/channels/sns.d.ts.map +1 -0
- package/dist/security/alerting/channels/sns.js +251 -0
- package/dist/security/alerting/channels/sns.js.map +1 -0
- package/dist/security/alerting/channels/webhook.d.ts +92 -0
- package/dist/security/alerting/channels/webhook.d.ts.map +1 -0
- package/dist/security/alerting/channels/webhook.js +203 -0
- package/dist/security/alerting/channels/webhook.js.map +1 -0
- package/dist/security/alerting/detector.d.ts +217 -0
- package/dist/security/alerting/detector.d.ts.map +1 -0
- package/dist/security/alerting/detector.js +725 -0
- package/dist/security/alerting/detector.js.map +1 -0
- package/dist/security/alerting/index.d.ts +57 -0
- package/dist/security/alerting/index.d.ts.map +1 -0
- package/dist/security/alerting/index.js +214 -0
- package/dist/security/alerting/index.js.map +1 -0
- package/dist/security/alerting/service.d.ts +190 -0
- package/dist/security/alerting/service.d.ts.map +1 -0
- package/dist/security/alerting/service.js +815 -0
- package/dist/security/alerting/service.js.map +1 -0
- package/dist/security/alerting/types.d.ts +2165 -0
- package/dist/security/alerting/types.d.ts.map +1 -0
- package/dist/security/alerting/types.js +278 -0
- package/dist/security/alerting/types.js.map +1 -0
- package/dist/security/anomaly/detectors/account-compromise.d.ts +198 -0
- package/dist/security/anomaly/detectors/account-compromise.d.ts.map +1 -0
- package/dist/security/anomaly/detectors/account-compromise.js +815 -0
- package/dist/security/anomaly/detectors/account-compromise.js.map +1 -0
- package/dist/security/anomaly/detectors/data-exfiltration.d.ts +175 -0
- package/dist/security/anomaly/detectors/data-exfiltration.d.ts.map +1 -0
- package/dist/security/anomaly/detectors/data-exfiltration.js +733 -0
- package/dist/security/anomaly/detectors/data-exfiltration.js.map +1 -0
- package/dist/security/anomaly/detectors/geographic.d.ts +100 -0
- package/dist/security/anomaly/detectors/geographic.d.ts.map +1 -0
- package/dist/security/anomaly/detectors/geographic.js +348 -0
- package/dist/security/anomaly/detectors/geographic.js.map +1 -0
- package/dist/security/anomaly/detectors/index.d.ts +86 -0
- package/dist/security/anomaly/detectors/index.d.ts.map +1 -0
- package/dist/security/anomaly/detectors/index.js +118 -0
- package/dist/security/anomaly/detectors/index.js.map +1 -0
- package/dist/security/anomaly/detectors/lateral-movement.d.ts +168 -0
- package/dist/security/anomaly/detectors/lateral-movement.d.ts.map +1 -0
- package/dist/security/anomaly/detectors/lateral-movement.js +795 -0
- package/dist/security/anomaly/detectors/lateral-movement.js.map +1 -0
- package/dist/security/anomaly/detectors/privilege-escalation.d.ts +177 -0
- package/dist/security/anomaly/detectors/privilege-escalation.d.ts.map +1 -0
- package/dist/security/anomaly/detectors/privilege-escalation.js +741 -0
- package/dist/security/anomaly/detectors/privilege-escalation.js.map +1 -0
- package/dist/security/anomaly/detectors/temporal.d.ts +71 -0
- package/dist/security/anomaly/detectors/temporal.d.ts.map +1 -0
- package/dist/security/anomaly/detectors/temporal.js +398 -0
- package/dist/security/anomaly/detectors/temporal.js.map +1 -0
- package/dist/security/anomaly/detectors/volume.d.ts +97 -0
- package/dist/security/anomaly/detectors/volume.d.ts.map +1 -0
- package/dist/security/anomaly/detectors/volume.js +424 -0
- package/dist/security/anomaly/detectors/volume.js.map +1 -0
- package/dist/security/anomaly/index.d.ts +128 -0
- package/dist/security/anomaly/index.d.ts.map +1 -0
- package/dist/security/anomaly/index.js +378 -0
- package/dist/security/anomaly/index.js.map +1 -0
- package/dist/security/anomaly/types.d.ts +1209 -0
- package/dist/security/anomaly/types.d.ts.map +1 -0
- package/dist/security/anomaly/types.js +193 -0
- package/dist/security/anomaly/types.js.map +1 -0
- package/dist/security/api-keys/cache.d.ts +255 -0
- package/dist/security/api-keys/cache.d.ts.map +1 -0
- package/dist/security/api-keys/cache.js +595 -0
- package/dist/security/api-keys/cache.js.map +1 -0
- package/dist/security/api-keys/db-store.d.ts +150 -0
- package/dist/security/api-keys/db-store.d.ts.map +1 -0
- package/dist/security/api-keys/db-store.js +694 -0
- package/dist/security/api-keys/db-store.js.map +1 -0
- package/dist/security/api-keys/index.d.ts +29 -0
- package/dist/security/api-keys/index.d.ts.map +1 -0
- package/dist/security/api-keys/index.js +81 -0
- package/dist/security/api-keys/index.js.map +1 -0
- package/dist/security/api-keys/middleware.d.ts +164 -0
- package/dist/security/api-keys/middleware.d.ts.map +1 -0
- package/dist/security/api-keys/middleware.js +392 -0
- package/dist/security/api-keys/middleware.js.map +1 -0
- package/dist/security/api-keys/service.d.ts +226 -0
- package/dist/security/api-keys/service.d.ts.map +1 -0
- package/dist/security/api-keys/service.js +861 -0
- package/dist/security/api-keys/service.js.map +1 -0
- package/dist/security/api-keys/store.d.ts +241 -0
- package/dist/security/api-keys/store.d.ts.map +1 -0
- package/dist/security/api-keys/store.js +360 -0
- package/dist/security/api-keys/store.js.map +1 -0
- package/dist/security/api-keys/types.d.ts +718 -0
- package/dist/security/api-keys/types.d.ts.map +1 -0
- package/dist/security/api-keys/types.js +162 -0
- package/dist/security/api-keys/types.js.map +1 -0
- package/dist/security/brute-force.d.ts +390 -0
- package/dist/security/brute-force.d.ts.map +1 -0
- package/dist/security/brute-force.js +677 -0
- package/dist/security/brute-force.js.map +1 -0
- package/dist/security/config-validator.d.ts +152 -0
- package/dist/security/config-validator.d.ts.map +1 -0
- package/dist/security/config-validator.js +667 -0
- package/dist/security/config-validator.js.map +1 -0
- package/dist/security/crypto/fips-mode.d.ts +772 -0
- package/dist/security/crypto/fips-mode.d.ts.map +1 -0
- package/dist/security/crypto/fips-mode.js +1363 -0
- package/dist/security/crypto/fips-mode.js.map +1 -0
- package/dist/security/crypto/index.d.ts +202 -0
- package/dist/security/crypto/index.d.ts.map +1 -0
- package/dist/security/crypto/index.js +292 -0
- package/dist/security/crypto/index.js.map +1 -0
- package/dist/security/crypto/post-quantum/benchmark.d.ts +125 -0
- package/dist/security/crypto/post-quantum/benchmark.d.ts.map +1 -0
- package/dist/security/crypto/post-quantum/benchmark.js +530 -0
- package/dist/security/crypto/post-quantum/benchmark.js.map +1 -0
- package/dist/security/crypto/post-quantum/dilithium.d.ts +144 -0
- package/dist/security/crypto/post-quantum/dilithium.d.ts.map +1 -0
- package/dist/security/crypto/post-quantum/dilithium.js +675 -0
- package/dist/security/crypto/post-quantum/dilithium.js.map +1 -0
- package/dist/security/crypto/post-quantum/hybrid.d.ts +267 -0
- package/dist/security/crypto/post-quantum/hybrid.d.ts.map +1 -0
- package/dist/security/crypto/post-quantum/hybrid.js +457 -0
- package/dist/security/crypto/post-quantum/hybrid.js.map +1 -0
- package/dist/security/crypto/post-quantum/index.d.ts +166 -0
- package/dist/security/crypto/post-quantum/index.d.ts.map +1 -0
- package/dist/security/crypto/post-quantum/index.js +236 -0
- package/dist/security/crypto/post-quantum/index.js.map +1 -0
- package/dist/security/crypto/post-quantum/kyber.d.ts +129 -0
- package/dist/security/crypto/post-quantum/kyber.d.ts.map +1 -0
- package/dist/security/crypto/post-quantum/kyber.js +649 -0
- package/dist/security/crypto/post-quantum/kyber.js.map +1 -0
- package/dist/security/crypto/post-quantum/migration.d.ts +230 -0
- package/dist/security/crypto/post-quantum/migration.d.ts.map +1 -0
- package/dist/security/crypto/post-quantum/migration.js +563 -0
- package/dist/security/crypto/post-quantum/migration.js.map +1 -0
- package/dist/security/crypto/post-quantum/types.d.ts +1056 -0
- package/dist/security/crypto/post-quantum/types.d.ts.map +1 -0
- package/dist/security/crypto/post-quantum/types.js +350 -0
- package/dist/security/crypto/post-quantum/types.js.map +1 -0
- package/dist/security/crypto/shamir/comparison.d.ts +128 -0
- package/dist/security/crypto/shamir/comparison.d.ts.map +1 -0
- package/dist/security/crypto/shamir/comparison.js +423 -0
- package/dist/security/crypto/shamir/comparison.js.map +1 -0
- package/dist/security/crypto/shamir/index.d.ts +76 -0
- package/dist/security/crypto/shamir/index.d.ts.map +1 -0
- package/dist/security/crypto/shamir/index.js +155 -0
- package/dist/security/crypto/shamir/index.js.map +1 -0
- package/dist/security/crypto/shamir/proofs.d.ts +259 -0
- package/dist/security/crypto/shamir/proofs.d.ts.map +1 -0
- package/dist/security/crypto/shamir/proofs.js +605 -0
- package/dist/security/crypto/shamir/proofs.js.map +1 -0
- package/dist/security/crypto/shamir/property-tests.d.ts +104 -0
- package/dist/security/crypto/shamir/property-tests.d.ts.map +1 -0
- package/dist/security/crypto/shamir/property-tests.js +480 -0
- package/dist/security/crypto/shamir/property-tests.js.map +1 -0
- package/dist/security/crypto/shamir/security-analysis.d.ts +97 -0
- package/dist/security/crypto/shamir/security-analysis.d.ts.map +1 -0
- package/dist/security/crypto/shamir/security-analysis.js +503 -0
- package/dist/security/crypto/shamir/security-analysis.js.map +1 -0
- package/dist/security/crypto/shamir/test-vectors.d.ts +116 -0
- package/dist/security/crypto/shamir/test-vectors.d.ts.map +1 -0
- package/dist/security/crypto/shamir/test-vectors.js +377 -0
- package/dist/security/crypto/shamir/test-vectors.js.map +1 -0
- package/dist/security/crypto/shamir/types.d.ts +281 -0
- package/dist/security/crypto/shamir/types.d.ts.map +1 -0
- package/dist/security/crypto/shamir/types.js +82 -0
- package/dist/security/crypto/shamir/types.js.map +1 -0
- package/dist/security/crypto/shamir/verified-shamir.d.ts +170 -0
- package/dist/security/crypto/shamir/verified-shamir.d.ts.map +1 -0
- package/dist/security/crypto/shamir/verified-shamir.js +624 -0
- package/dist/security/crypto/shamir/verified-shamir.js.map +1 -0
- package/dist/security/csrf.d.ts +215 -0
- package/dist/security/csrf.d.ts.map +1 -0
- package/dist/security/csrf.js +467 -0
- package/dist/security/csrf.js.map +1 -0
- package/dist/security/distributed-state.d.ts +331 -0
- package/dist/security/distributed-state.d.ts.map +1 -0
- package/dist/security/distributed-state.js +768 -0
- package/dist/security/distributed-state.js.map +1 -0
- package/dist/security/dlp/index.d.ts +27 -0
- package/dist/security/dlp/index.d.ts.map +1 -0
- package/dist/security/dlp/index.js +54 -0
- package/dist/security/dlp/index.js.map +1 -0
- package/dist/security/dlp/scanner.d.ts +451 -0
- package/dist/security/dlp/scanner.d.ts.map +1 -0
- package/dist/security/dlp/scanner.js +1241 -0
- package/dist/security/dlp/scanner.js.map +1 -0
- package/dist/security/dpop.d.ts +260 -0
- package/dist/security/dpop.d.ts.map +1 -0
- package/dist/security/dpop.js +1058 -0
- package/dist/security/dpop.js.map +1 -0
- package/dist/security/encryption/decorators.d.ts +263 -0
- package/dist/security/encryption/decorators.d.ts.map +1 -0
- package/dist/security/encryption/decorators.js +359 -0
- package/dist/security/encryption/decorators.js.map +1 -0
- package/dist/security/encryption/index.d.ts +83 -0
- package/dist/security/encryption/index.d.ts.map +1 -0
- package/dist/security/encryption/index.js +140 -0
- package/dist/security/encryption/index.js.map +1 -0
- package/dist/security/encryption/key-provider.d.ts +335 -0
- package/dist/security/encryption/key-provider.d.ts.map +1 -0
- package/dist/security/encryption/key-provider.js +853 -0
- package/dist/security/encryption/key-provider.js.map +1 -0
- package/dist/security/encryption/middleware.d.ts +279 -0
- package/dist/security/encryption/middleware.d.ts.map +1 -0
- package/dist/security/encryption/middleware.js +493 -0
- package/dist/security/encryption/middleware.js.map +1 -0
- package/dist/security/encryption/service.d.ts +164 -0
- package/dist/security/encryption/service.d.ts.map +1 -0
- package/dist/security/encryption/service.js +623 -0
- package/dist/security/encryption/service.js.map +1 -0
- package/dist/security/encryption/types.d.ts +745 -0
- package/dist/security/encryption/types.d.ts.map +1 -0
- package/dist/security/encryption/types.js +229 -0
- package/dist/security/encryption/types.js.map +1 -0
- package/dist/security/error-sanitizer.d.ts +329 -0
- package/dist/security/error-sanitizer.d.ts.map +1 -0
- package/dist/security/error-sanitizer.js +693 -0
- package/dist/security/error-sanitizer.js.map +1 -0
- package/dist/security/fingerprint-service.d.ts +139 -0
- package/dist/security/fingerprint-service.d.ts.map +1 -0
- package/dist/security/fingerprint-service.js +240 -0
- package/dist/security/fingerprint-service.js.map +1 -0
- package/dist/security/headers/csp.d.ts +270 -0
- package/dist/security/headers/csp.d.ts.map +1 -0
- package/dist/security/headers/csp.js +655 -0
- package/dist/security/headers/csp.js.map +1 -0
- package/dist/security/headers/hsts.d.ts +161 -0
- package/dist/security/headers/hsts.d.ts.map +1 -0
- package/dist/security/headers/hsts.js +346 -0
- package/dist/security/headers/hsts.js.map +1 -0
- package/dist/security/headers/index.d.ts +47 -0
- package/dist/security/headers/index.d.ts.map +1 -0
- package/dist/security/headers/index.js +110 -0
- package/dist/security/headers/index.js.map +1 -0
- package/dist/security/headers/middleware.d.ts +70 -0
- package/dist/security/headers/middleware.d.ts.map +1 -0
- package/dist/security/headers/middleware.js +549 -0
- package/dist/security/headers/middleware.js.map +1 -0
- package/dist/security/headers/permissions-policy.d.ts +189 -0
- package/dist/security/headers/permissions-policy.d.ts.map +1 -0
- package/dist/security/headers/permissions-policy.js +508 -0
- package/dist/security/headers/permissions-policy.js.map +1 -0
- package/dist/security/headers/types.d.ts +1570 -0
- package/dist/security/headers/types.d.ts.map +1 -0
- package/dist/security/headers/types.js +281 -0
- package/dist/security/headers/types.js.map +1 -0
- package/dist/security/headers/validator.d.ts +36 -0
- package/dist/security/headers/validator.d.ts.map +1 -0
- package/dist/security/headers/validator.js +616 -0
- package/dist/security/headers/validator.js.map +1 -0
- package/dist/security/hsm/aws-cloudhsm.d.ts +157 -0
- package/dist/security/hsm/aws-cloudhsm.d.ts.map +1 -0
- package/dist/security/hsm/aws-cloudhsm.js +712 -0
- package/dist/security/hsm/aws-cloudhsm.js.map +1 -0
- package/dist/security/hsm/azure-hsm.d.ts +174 -0
- package/dist/security/hsm/azure-hsm.d.ts.map +1 -0
- package/dist/security/hsm/azure-hsm.js +792 -0
- package/dist/security/hsm/azure-hsm.js.map +1 -0
- package/dist/security/hsm/gcp-hsm.d.ts +184 -0
- package/dist/security/hsm/gcp-hsm.d.ts.map +1 -0
- package/dist/security/hsm/gcp-hsm.js +817 -0
- package/dist/security/hsm/gcp-hsm.js.map +1 -0
- package/dist/security/hsm/hsm-service.d.ts +264 -0
- package/dist/security/hsm/hsm-service.d.ts.map +1 -0
- package/dist/security/hsm/hsm-service.js +772 -0
- package/dist/security/hsm/hsm-service.js.map +1 -0
- package/dist/security/hsm/index.d.ts +132 -0
- package/dist/security/hsm/index.d.ts.map +1 -0
- package/dist/security/hsm/index.js +198 -0
- package/dist/security/hsm/index.js.map +1 -0
- package/dist/security/hsm/key-ceremony.d.ts +214 -0
- package/dist/security/hsm/key-ceremony.d.ts.map +1 -0
- package/dist/security/hsm/key-ceremony.js +636 -0
- package/dist/security/hsm/key-ceremony.js.map +1 -0
- package/dist/security/hsm/local-softHSM.d.ts +122 -0
- package/dist/security/hsm/local-softHSM.d.ts.map +1 -0
- package/dist/security/hsm/local-softHSM.js +786 -0
- package/dist/security/hsm/local-softHSM.js.map +1 -0
- package/dist/security/hsm/provider.d.ts +333 -0
- package/dist/security/hsm/provider.d.ts.map +1 -0
- package/dist/security/hsm/provider.js +264 -0
- package/dist/security/hsm/provider.js.map +1 -0
- package/dist/security/hsm/thales-luna.d.ts +209 -0
- package/dist/security/hsm/thales-luna.d.ts.map +1 -0
- package/dist/security/hsm/thales-luna.js +820 -0
- package/dist/security/hsm/thales-luna.js.map +1 -0
- package/dist/security/incident/actions/block-ip.d.ts +84 -0
- package/dist/security/incident/actions/block-ip.d.ts.map +1 -0
- package/dist/security/incident/actions/block-ip.js +464 -0
- package/dist/security/incident/actions/block-ip.js.map +1 -0
- package/dist/security/incident/actions/collect-evidence.d.ts +95 -0
- package/dist/security/incident/actions/collect-evidence.d.ts.map +1 -0
- package/dist/security/incident/actions/collect-evidence.js +458 -0
- package/dist/security/incident/actions/collect-evidence.js.map +1 -0
- package/dist/security/incident/actions/index.d.ts +39 -0
- package/dist/security/incident/actions/index.d.ts.map +1 -0
- package/dist/security/incident/actions/index.js +52 -0
- package/dist/security/incident/actions/index.js.map +1 -0
- package/dist/security/incident/actions/isolate-system.d.ts +63 -0
- package/dist/security/incident/actions/isolate-system.d.ts.map +1 -0
- package/dist/security/incident/actions/isolate-system.js +379 -0
- package/dist/security/incident/actions/isolate-system.js.map +1 -0
- package/dist/security/incident/actions/notify-stakeholders.d.ts +72 -0
- package/dist/security/incident/actions/notify-stakeholders.d.ts.map +1 -0
- package/dist/security/incident/actions/notify-stakeholders.js +387 -0
- package/dist/security/incident/actions/notify-stakeholders.js.map +1 -0
- package/dist/security/incident/actions/revoke-credentials.d.ts +77 -0
- package/dist/security/incident/actions/revoke-credentials.d.ts.map +1 -0
- package/dist/security/incident/actions/revoke-credentials.js +329 -0
- package/dist/security/incident/actions/revoke-credentials.js.map +1 -0
- package/dist/security/incident/actions/scale-monitoring.d.ts +90 -0
- package/dist/security/incident/actions/scale-monitoring.d.ts.map +1 -0
- package/dist/security/incident/actions/scale-monitoring.js +483 -0
- package/dist/security/incident/actions/scale-monitoring.js.map +1 -0
- package/dist/security/incident/executor.d.ts +128 -0
- package/dist/security/incident/executor.d.ts.map +1 -0
- package/dist/security/incident/executor.js +695 -0
- package/dist/security/incident/executor.js.map +1 -0
- package/dist/security/incident/index.d.ts +220 -0
- package/dist/security/incident/index.d.ts.map +1 -0
- package/dist/security/incident/index.js +1284 -0
- package/dist/security/incident/index.js.map +1 -0
- package/dist/security/incident/notification.d.ts +68 -0
- package/dist/security/incident/notification.d.ts.map +1 -0
- package/dist/security/incident/notification.js +512 -0
- package/dist/security/incident/notification.js.map +1 -0
- package/dist/security/incident/playbooks/account-compromise.d.ts +13 -0
- package/dist/security/incident/playbooks/account-compromise.d.ts.map +1 -0
- package/dist/security/incident/playbooks/account-compromise.js +379 -0
- package/dist/security/incident/playbooks/account-compromise.js.map +1 -0
- package/dist/security/incident/playbooks/configuration-error.d.ts +17 -0
- package/dist/security/incident/playbooks/configuration-error.d.ts.map +1 -0
- package/dist/security/incident/playbooks/configuration-error.js +340 -0
- package/dist/security/incident/playbooks/configuration-error.js.map +1 -0
- package/dist/security/incident/playbooks/data-breach.d.ts +13 -0
- package/dist/security/incident/playbooks/data-breach.d.ts.map +1 -0
- package/dist/security/incident/playbooks/data-breach.js +394 -0
- package/dist/security/incident/playbooks/data-breach.js.map +1 -0
- package/dist/security/incident/playbooks/denial-of-service.d.ts +13 -0
- package/dist/security/incident/playbooks/denial-of-service.d.ts.map +1 -0
- package/dist/security/incident/playbooks/denial-of-service.js +540 -0
- package/dist/security/incident/playbooks/denial-of-service.js.map +1 -0
- package/dist/security/incident/playbooks/index.d.ts +36 -0
- package/dist/security/incident/playbooks/index.d.ts.map +1 -0
- package/dist/security/incident/playbooks/index.js +56 -0
- package/dist/security/incident/playbooks/index.js.map +1 -0
- package/dist/security/incident/playbooks/insider-threat.d.ts +18 -0
- package/dist/security/incident/playbooks/insider-threat.d.ts.map +1 -0
- package/dist/security/incident/playbooks/insider-threat.js +600 -0
- package/dist/security/incident/playbooks/insider-threat.js.map +1 -0
- package/dist/security/incident/playbooks/malware.d.ts +13 -0
- package/dist/security/incident/playbooks/malware.d.ts.map +1 -0
- package/dist/security/incident/playbooks/malware.js +515 -0
- package/dist/security/incident/playbooks/malware.js.map +1 -0
- package/dist/security/incident/playbooks/ransomware.d.ts +14 -0
- package/dist/security/incident/playbooks/ransomware.d.ts.map +1 -0
- package/dist/security/incident/playbooks/ransomware.js +693 -0
- package/dist/security/incident/playbooks/ransomware.js.map +1 -0
- package/dist/security/incident/playbooks/unauthorized-access.d.ts +13 -0
- package/dist/security/incident/playbooks/unauthorized-access.d.ts.map +1 -0
- package/dist/security/incident/playbooks/unauthorized-access.js +412 -0
- package/dist/security/incident/playbooks/unauthorized-access.js.map +1 -0
- package/dist/security/incident/triggers.d.ts +120 -0
- package/dist/security/incident/triggers.d.ts.map +1 -0
- package/dist/security/incident/triggers.js +708 -0
- package/dist/security/incident/triggers.js.map +1 -0
- package/dist/security/incident/types.d.ts +1517 -0
- package/dist/security/incident/types.d.ts.map +1 -0
- package/dist/security/incident/types.js +222 -0
- package/dist/security/incident/types.js.map +1 -0
- package/dist/security/index.d.ts +56 -0
- package/dist/security/index.d.ts.map +1 -0
- package/dist/security/index.js +267 -0
- package/dist/security/index.js.map +1 -0
- package/dist/security/injection-detector.d.ts +375 -0
- package/dist/security/injection-detector.d.ts.map +1 -0
- package/dist/security/injection-detector.js +969 -0
- package/dist/security/injection-detector.js.map +1 -0
- package/dist/security/introspection.d.ts +137 -0
- package/dist/security/introspection.d.ts.map +1 -0
- package/dist/security/introspection.js +451 -0
- package/dist/security/introspection.js.map +1 -0
- package/dist/security/key-rotation.d.ts +213 -0
- package/dist/security/key-rotation.d.ts.map +1 -0
- package/dist/security/key-rotation.js +530 -0
- package/dist/security/key-rotation.js.map +1 -0
- package/dist/security/kms/aws-kms.d.ts +152 -0
- package/dist/security/kms/aws-kms.d.ts.map +1 -0
- package/dist/security/kms/aws-kms.js +808 -0
- package/dist/security/kms/aws-kms.js.map +1 -0
- package/dist/security/kms/index.d.ts +165 -0
- package/dist/security/kms/index.d.ts.map +1 -0
- package/dist/security/kms/index.js +351 -0
- package/dist/security/kms/index.js.map +1 -0
- package/dist/security/kms/local.d.ts +127 -0
- package/dist/security/kms/local.d.ts.map +1 -0
- package/dist/security/kms/local.js +682 -0
- package/dist/security/kms/local.js.map +1 -0
- package/dist/security/kms/types.d.ts +1000 -0
- package/dist/security/kms/types.d.ts.map +1 -0
- package/dist/security/kms/types.js +167 -0
- package/dist/security/kms/types.js.map +1 -0
- package/dist/security/kms/vault.d.ts +165 -0
- package/dist/security/kms/vault.d.ts.map +1 -0
- package/dist/security/kms/vault.js +820 -0
- package/dist/security/kms/vault.js.map +1 -0
- package/dist/security/mfa/index.d.ts +17 -0
- package/dist/security/mfa/index.d.ts.map +1 -0
- package/dist/security/mfa/index.js +37 -0
- package/dist/security/mfa/index.js.map +1 -0
- package/dist/security/mfa/mfa-middleware.d.ts +74 -0
- package/dist/security/mfa/mfa-middleware.d.ts.map +1 -0
- package/dist/security/mfa/mfa-middleware.js +244 -0
- package/dist/security/mfa/mfa-middleware.js.map +1 -0
- package/dist/security/mfa/mfa-service.d.ts +115 -0
- package/dist/security/mfa/mfa-service.d.ts.map +1 -0
- package/dist/security/mfa/mfa-service.js +508 -0
- package/dist/security/mfa/mfa-service.js.map +1 -0
- package/dist/security/mfa/mfa-store.d.ts +615 -0
- package/dist/security/mfa/mfa-store.d.ts.map +1 -0
- package/dist/security/mfa/mfa-store.js +431 -0
- package/dist/security/mfa/mfa-store.js.map +1 -0
- package/dist/security/mfa/types.d.ts +417 -0
- package/dist/security/mfa/types.d.ts.map +1 -0
- package/dist/security/mfa/types.js +123 -0
- package/dist/security/mfa/types.js.map +1 -0
- package/dist/security/middleware.d.ts +179 -0
- package/dist/security/middleware.d.ts.map +1 -0
- package/dist/security/middleware.js +534 -0
- package/dist/security/middleware.js.map +1 -0
- package/dist/security/pairwise-did.d.ts +157 -0
- package/dist/security/pairwise-did.d.ts.map +1 -0
- package/dist/security/pairwise-did.js +450 -0
- package/dist/security/pairwise-did.js.map +1 -0
- package/dist/security/pam/break-glass.d.ts +776 -0
- package/dist/security/pam/break-glass.d.ts.map +1 -0
- package/dist/security/pam/break-glass.js +1137 -0
- package/dist/security/pam/break-glass.js.map +1 -0
- package/dist/security/pam/index.d.ts +120 -0
- package/dist/security/pam/index.d.ts.map +1 -0
- package/dist/security/pam/index.js +179 -0
- package/dist/security/pam/index.js.map +1 -0
- package/dist/security/pam/jit-access.d.ts +482 -0
- package/dist/security/pam/jit-access.d.ts.map +1 -0
- package/dist/security/pam/jit-access.js +1030 -0
- package/dist/security/pam/jit-access.js.map +1 -0
- package/dist/security/pam/session-recording.d.ts +1007 -0
- package/dist/security/pam/session-recording.d.ts.map +1 -0
- package/dist/security/pam/session-recording.js +1047 -0
- package/dist/security/pam/session-recording.js.map +1 -0
- package/dist/security/password-hashing.d.ts +199 -0
- package/dist/security/password-hashing.d.ts.map +1 -0
- package/dist/security/password-hashing.js +366 -0
- package/dist/security/password-hashing.js.map +1 -0
- package/dist/security/password-policy.d.ts +304 -0
- package/dist/security/password-policy.d.ts.map +1 -0
- package/dist/security/password-policy.js +730 -0
- package/dist/security/password-policy.js.map +1 -0
- package/dist/security/policy-engine/atsf-adapter.d.ts +93 -0
- package/dist/security/policy-engine/atsf-adapter.d.ts.map +1 -0
- package/dist/security/policy-engine/atsf-adapter.js +265 -0
- package/dist/security/policy-engine/atsf-adapter.js.map +1 -0
- package/dist/security/policy-engine/built-in-policies.d.ts +90 -0
- package/dist/security/policy-engine/built-in-policies.d.ts.map +1 -0
- package/dist/security/policy-engine/built-in-policies.js +627 -0
- package/dist/security/policy-engine/built-in-policies.js.map +1 -0
- package/dist/security/policy-engine/condition-evaluator.d.ts +129 -0
- package/dist/security/policy-engine/condition-evaluator.d.ts.map +1 -0
- package/dist/security/policy-engine/condition-evaluator.js +647 -0
- package/dist/security/policy-engine/condition-evaluator.js.map +1 -0
- package/dist/security/policy-engine/engine.d.ts +200 -0
- package/dist/security/policy-engine/engine.d.ts.map +1 -0
- package/dist/security/policy-engine/engine.js +752 -0
- package/dist/security/policy-engine/engine.js.map +1 -0
- package/dist/security/policy-engine/index.d.ts +59 -0
- package/dist/security/policy-engine/index.d.ts.map +1 -0
- package/dist/security/policy-engine/index.js +84 -0
- package/dist/security/policy-engine/index.js.map +1 -0
- package/dist/security/policy-engine/middleware.d.ts +77 -0
- package/dist/security/policy-engine/middleware.d.ts.map +1 -0
- package/dist/security/policy-engine/middleware.js +375 -0
- package/dist/security/policy-engine/middleware.js.map +1 -0
- package/dist/security/policy-engine/rule-evaluator.d.ts +140 -0
- package/dist/security/policy-engine/rule-evaluator.d.ts.map +1 -0
- package/dist/security/policy-engine/rule-evaluator.js +593 -0
- package/dist/security/policy-engine/rule-evaluator.js.map +1 -0
- package/dist/security/policy-engine/types.d.ts +2855 -0
- package/dist/security/policy-engine/types.d.ts.map +1 -0
- package/dist/security/policy-engine/types.js +443 -0
- package/dist/security/policy-engine/types.js.map +1 -0
- package/dist/security/refresh-token.d.ts +305 -0
- package/dist/security/refresh-token.d.ts.map +1 -0
- package/dist/security/refresh-token.js +678 -0
- package/dist/security/refresh-token.js.map +1 -0
- package/dist/security/request-integrity.d.ts +289 -0
- package/dist/security/request-integrity.d.ts.map +1 -0
- package/dist/security/request-integrity.js +663 -0
- package/dist/security/request-integrity.js.map +1 -0
- package/dist/security/revocation-check.d.ts +188 -0
- package/dist/security/revocation-check.d.ts.map +1 -0
- package/dist/security/revocation-check.js +606 -0
- package/dist/security/revocation-check.js.map +1 -0
- package/dist/security/revocation.d.ts +191 -0
- package/dist/security/revocation.d.ts.map +1 -0
- package/dist/security/revocation.js +522 -0
- package/dist/security/revocation.js.map +1 -0
- package/dist/security/secrets-rotation.d.ts +501 -0
- package/dist/security/secrets-rotation.d.ts.map +1 -0
- package/dist/security/secrets-rotation.js +934 -0
- package/dist/security/secrets-rotation.js.map +1 -0
- package/dist/security/secure-memory.d.ts +325 -0
- package/dist/security/secure-memory.d.ts.map +1 -0
- package/dist/security/secure-memory.js +595 -0
- package/dist/security/secure-memory.js.map +1 -0
- package/dist/security/security-service.d.ts +186 -0
- package/dist/security/security-service.d.ts.map +1 -0
- package/dist/security/security-service.js +531 -0
- package/dist/security/security-service.js.map +1 -0
- package/dist/security/service-auth/index.d.ts +20 -0
- package/dist/security/service-auth/index.d.ts.map +1 -0
- package/dist/security/service-auth/index.js +61 -0
- package/dist/security/service-auth/index.js.map +1 -0
- package/dist/security/service-auth/service-account.d.ts +357 -0
- package/dist/security/service-auth/service-account.d.ts.map +1 -0
- package/dist/security/service-auth/service-account.js +475 -0
- package/dist/security/service-auth/service-account.js.map +1 -0
- package/dist/security/service-auth/service-auth-middleware.d.ts +174 -0
- package/dist/security/service-auth/service-auth-middleware.d.ts.map +1 -0
- package/dist/security/service-auth/service-auth-middleware.js +461 -0
- package/dist/security/service-auth/service-auth-middleware.js.map +1 -0
- package/dist/security/service-auth/service-token.d.ts +391 -0
- package/dist/security/service-auth/service-token.d.ts.map +1 -0
- package/dist/security/service-auth/service-token.js +472 -0
- package/dist/security/service-auth/service-token.js.map +1 -0
- package/dist/security/session-manager.d.ts +177 -0
- package/dist/security/session-manager.d.ts.map +1 -0
- package/dist/security/session-manager.js +353 -0
- package/dist/security/session-manager.js.map +1 -0
- package/dist/security/session-store.d.ts +205 -0
- package/dist/security/session-store.d.ts.map +1 -0
- package/dist/security/session-store.js +581 -0
- package/dist/security/session-store.js.map +1 -0
- package/dist/security/siem/connector.d.ts +147 -0
- package/dist/security/siem/connector.d.ts.map +1 -0
- package/dist/security/siem/connector.js +254 -0
- package/dist/security/siem/connector.js.map +1 -0
- package/dist/security/siem/datadog.d.ts +81 -0
- package/dist/security/siem/datadog.d.ts.map +1 -0
- package/dist/security/siem/datadog.js +362 -0
- package/dist/security/siem/datadog.js.map +1 -0
- package/dist/security/siem/elastic.d.ts +83 -0
- package/dist/security/siem/elastic.d.ts.map +1 -0
- package/dist/security/siem/elastic.js +514 -0
- package/dist/security/siem/elastic.js.map +1 -0
- package/dist/security/siem/enrichment.d.ts +133 -0
- package/dist/security/siem/enrichment.d.ts.map +1 -0
- package/dist/security/siem/enrichment.js +434 -0
- package/dist/security/siem/enrichment.js.map +1 -0
- package/dist/security/siem/formatter.d.ts +118 -0
- package/dist/security/siem/formatter.d.ts.map +1 -0
- package/dist/security/siem/formatter.js +381 -0
- package/dist/security/siem/formatter.js.map +1 -0
- package/dist/security/siem/hooks.d.ts +107 -0
- package/dist/security/siem/hooks.d.ts.map +1 -0
- package/dist/security/siem/hooks.js +459 -0
- package/dist/security/siem/hooks.js.map +1 -0
- package/dist/security/siem/index.d.ts +83 -0
- package/dist/security/siem/index.d.ts.map +1 -0
- package/dist/security/siem/index.js +95 -0
- package/dist/security/siem/index.js.map +1 -0
- package/dist/security/siem/service.d.ts +153 -0
- package/dist/security/siem/service.d.ts.map +1 -0
- package/dist/security/siem/service.js +615 -0
- package/dist/security/siem/service.js.map +1 -0
- package/dist/security/siem/splunk.d.ts +76 -0
- package/dist/security/siem/splunk.d.ts.map +1 -0
- package/dist/security/siem/splunk.js +283 -0
- package/dist/security/siem/splunk.js.map +1 -0
- package/dist/security/siem/types.d.ts +1980 -0
- package/dist/security/siem/types.d.ts.map +1 -0
- package/dist/security/siem/types.js +268 -0
- package/dist/security/siem/types.js.map +1 -0
- package/dist/security/tee.d.ts +157 -0
- package/dist/security/tee.d.ts.map +1 -0
- package/dist/security/tee.js +1073 -0
- package/dist/security/tee.js.map +1 -0
- package/dist/security/threat-intel/bot-detection.d.ts +275 -0
- package/dist/security/threat-intel/bot-detection.d.ts.map +1 -0
- package/dist/security/threat-intel/bot-detection.js +890 -0
- package/dist/security/threat-intel/bot-detection.js.map +1 -0
- package/dist/security/threat-intel/credential-stuffing.d.ts +368 -0
- package/dist/security/threat-intel/credential-stuffing.d.ts.map +1 -0
- package/dist/security/threat-intel/credential-stuffing.js +957 -0
- package/dist/security/threat-intel/credential-stuffing.js.map +1 -0
- package/dist/security/threat-intel/index.d.ts +10 -0
- package/dist/security/threat-intel/index.d.ts.map +1 -0
- package/dist/security/threat-intel/index.js +18 -0
- package/dist/security/threat-intel/index.js.map +1 -0
- package/dist/security/threat-intel/ip-reputation.d.ts +323 -0
- package/dist/security/threat-intel/ip-reputation.d.ts.map +1 -0
- package/dist/security/threat-intel/ip-reputation.js +923 -0
- package/dist/security/threat-intel/ip-reputation.js.map +1 -0
- package/dist/security/token-lifecycle.d.ts +272 -0
- package/dist/security/token-lifecycle.d.ts.map +1 -0
- package/dist/security/token-lifecycle.js +732 -0
- package/dist/security/token-lifecycle.js.map +1 -0
- package/dist/security/token-lifetime.d.ts +206 -0
- package/dist/security/token-lifetime.d.ts.map +1 -0
- package/dist/security/token-lifetime.js +388 -0
- package/dist/security/token-lifetime.js.map +1 -0
- package/dist/security/trust-oracle/alerts.d.ts +202 -0
- package/dist/security/trust-oracle/alerts.d.ts.map +1 -0
- package/dist/security/trust-oracle/alerts.js +763 -0
- package/dist/security/trust-oracle/alerts.js.map +1 -0
- package/dist/security/trust-oracle/api.d.ts +116 -0
- package/dist/security/trust-oracle/api.d.ts.map +1 -0
- package/dist/security/trust-oracle/api.js +721 -0
- package/dist/security/trust-oracle/api.js.map +1 -0
- package/dist/security/trust-oracle/continuous-monitoring.d.ts +105 -0
- package/dist/security/trust-oracle/continuous-monitoring.d.ts.map +1 -0
- package/dist/security/trust-oracle/continuous-monitoring.js +710 -0
- package/dist/security/trust-oracle/continuous-monitoring.js.map +1 -0
- package/dist/security/trust-oracle/data-sources.d.ts +102 -0
- package/dist/security/trust-oracle/data-sources.d.ts.map +1 -0
- package/dist/security/trust-oracle/data-sources.js +794 -0
- package/dist/security/trust-oracle/data-sources.js.map +1 -0
- package/dist/security/trust-oracle/index.d.ts +79 -0
- package/dist/security/trust-oracle/index.d.ts.map +1 -0
- package/dist/security/trust-oracle/index.js +206 -0
- package/dist/security/trust-oracle/index.js.map +1 -0
- package/dist/security/trust-oracle/oracle.d.ts +125 -0
- package/dist/security/trust-oracle/oracle.d.ts.map +1 -0
- package/dist/security/trust-oracle/oracle.js +489 -0
- package/dist/security/trust-oracle/oracle.js.map +1 -0
- package/dist/security/trust-oracle/reporting.d.ts +145 -0
- package/dist/security/trust-oracle/reporting.d.ts.map +1 -0
- package/dist/security/trust-oracle/reporting.js +1098 -0
- package/dist/security/trust-oracle/reporting.js.map +1 -0
- package/dist/security/trust-oracle/risk-scorer.d.ts +207 -0
- package/dist/security/trust-oracle/risk-scorer.d.ts.map +1 -0
- package/dist/security/trust-oracle/risk-scorer.js +1033 -0
- package/dist/security/trust-oracle/risk-scorer.js.map +1 -0
- package/dist/security/trust-oracle/types.d.ts +444 -0
- package/dist/security/trust-oracle/types.d.ts.map +1 -0
- package/dist/security/trust-oracle/types.js +6 -0
- package/dist/security/trust-oracle/types.js.map +1 -0
- package/dist/security/trust-oracle/vendor-registry.d.ts +228 -0
- package/dist/security/trust-oracle/vendor-registry.d.ts.map +1 -0
- package/dist/security/trust-oracle/vendor-registry.js +727 -0
- package/dist/security/trust-oracle/vendor-registry.js.map +1 -0
- package/dist/security/types.d.ts +1796 -0
- package/dist/security/types.d.ts.map +1 -0
- package/dist/security/types.js +389 -0
- package/dist/security/types.js.map +1 -0
- package/dist/security/webauthn/index.d.ts +47 -0
- package/dist/security/webauthn/index.d.ts.map +1 -0
- package/dist/security/webauthn/index.js +48 -0
- package/dist/security/webauthn/index.js.map +1 -0
- package/dist/security/webauthn/middleware.d.ts +109 -0
- package/dist/security/webauthn/middleware.d.ts.map +1 -0
- package/dist/security/webauthn/middleware.js +629 -0
- package/dist/security/webauthn/middleware.js.map +1 -0
- package/dist/security/webauthn/service.d.ts +179 -0
- package/dist/security/webauthn/service.d.ts.map +1 -0
- package/dist/security/webauthn/service.js +757 -0
- package/dist/security/webauthn/service.js.map +1 -0
- package/dist/security/webauthn/store.d.ts +240 -0
- package/dist/security/webauthn/store.d.ts.map +1 -0
- package/dist/security/webauthn/store.js +505 -0
- package/dist/security/webauthn/store.js.map +1 -0
- package/dist/security/webauthn/types.d.ts +678 -0
- package/dist/security/webauthn/types.d.ts.map +1 -0
- package/dist/security/webauthn/types.js +176 -0
- package/dist/security/webauthn/types.js.map +1 -0
- package/dist/security/zkp/circuits.d.ts +296 -0
- package/dist/security/zkp/circuits.d.ts.map +1 -0
- package/dist/security/zkp/circuits.js +771 -0
- package/dist/security/zkp/circuits.js.map +1 -0
- package/dist/security/zkp/commitment.d.ts +319 -0
- package/dist/security/zkp/commitment.d.ts.map +1 -0
- package/dist/security/zkp/commitment.js +591 -0
- package/dist/security/zkp/commitment.js.map +1 -0
- package/dist/security/zkp/compliance.d.ts +251 -0
- package/dist/security/zkp/compliance.d.ts.map +1 -0
- package/dist/security/zkp/compliance.js +734 -0
- package/dist/security/zkp/compliance.js.map +1 -0
- package/dist/security/zkp/index.d.ts +184 -0
- package/dist/security/zkp/index.d.ts.map +1 -0
- package/dist/security/zkp/index.js +285 -0
- package/dist/security/zkp/index.js.map +1 -0
- package/dist/security/zkp/integration.d.ts +289 -0
- package/dist/security/zkp/integration.d.ts.map +1 -0
- package/dist/security/zkp/integration.js +571 -0
- package/dist/security/zkp/integration.js.map +1 -0
- package/dist/security/zkp/prover.d.ts +158 -0
- package/dist/security/zkp/prover.d.ts.map +1 -0
- package/dist/security/zkp/prover.js +465 -0
- package/dist/security/zkp/prover.js.map +1 -0
- package/dist/security/zkp/snark-utils.d.ts +321 -0
- package/dist/security/zkp/snark-utils.d.ts.map +1 -0
- package/dist/security/zkp/snark-utils.js +640 -0
- package/dist/security/zkp/snark-utils.js.map +1 -0
- package/dist/security/zkp/types.d.ts +1192 -0
- package/dist/security/zkp/types.d.ts.map +1 -0
- package/dist/security/zkp/types.js +264 -0
- package/dist/security/zkp/types.js.map +1 -0
- package/dist/security/zkp/verifier.d.ts +111 -0
- package/dist/security/zkp/verifier.d.ts.map +1 -0
- package/dist/security/zkp/verifier.js +554 -0
- package/dist/security/zkp/verifier.js.map +1 -0
- package/dist/semantic-governance/context-validator.d.ts +159 -0
- package/dist/semantic-governance/context-validator.d.ts.map +1 -0
- package/dist/semantic-governance/context-validator.js +599 -0
- package/dist/semantic-governance/context-validator.js.map +1 -0
- package/dist/semantic-governance/credential-manager.d.ts +156 -0
- package/dist/semantic-governance/credential-manager.d.ts.map +1 -0
- package/dist/semantic-governance/credential-manager.js +438 -0
- package/dist/semantic-governance/credential-manager.js.map +1 -0
- package/dist/semantic-governance/dual-channel.d.ts +138 -0
- package/dist/semantic-governance/dual-channel.d.ts.map +1 -0
- package/dist/semantic-governance/dual-channel.js +333 -0
- package/dist/semantic-governance/dual-channel.js.map +1 -0
- package/dist/semantic-governance/index.d.ts +107 -0
- package/dist/semantic-governance/index.d.ts.map +1 -0
- package/dist/semantic-governance/index.js +141 -0
- package/dist/semantic-governance/index.js.map +1 -0
- package/dist/semantic-governance/inference-validator.d.ts +114 -0
- package/dist/semantic-governance/inference-validator.d.ts.map +1 -0
- package/dist/semantic-governance/inference-validator.js +390 -0
- package/dist/semantic-governance/inference-validator.js.map +1 -0
- package/dist/semantic-governance/instruction-validator.d.ts +146 -0
- package/dist/semantic-governance/instruction-validator.d.ts.map +1 -0
- package/dist/semantic-governance/instruction-validator.js +357 -0
- package/dist/semantic-governance/instruction-validator.js.map +1 -0
- package/dist/semantic-governance/integration.d.ts +253 -0
- package/dist/semantic-governance/integration.d.ts.map +1 -0
- package/dist/semantic-governance/integration.js +657 -0
- package/dist/semantic-governance/integration.js.map +1 -0
- package/dist/semantic-governance/output-validator.d.ts +135 -0
- package/dist/semantic-governance/output-validator.d.ts.map +1 -0
- package/dist/semantic-governance/output-validator.js +442 -0
- package/dist/semantic-governance/output-validator.js.map +1 -0
- package/dist/semantic-governance/service.d.ts +120 -0
- package/dist/semantic-governance/service.d.ts.map +1 -0
- package/dist/semantic-governance/service.js +527 -0
- package/dist/semantic-governance/service.js.map +1 -0
- package/dist/semantic-governance/types.d.ts +3916 -0
- package/dist/semantic-governance/types.d.ts.map +1 -0
- package/dist/semantic-governance/types.js +462 -0
- package/dist/semantic-governance/types.js.map +1 -0
- package/dist/trust-engine/aci-integration.d.ts +6 -0
- package/dist/trust-engine/aci-integration.d.ts.map +1 -0
- package/dist/trust-engine/aci-integration.js +6 -0
- package/dist/trust-engine/aci-integration.js.map +1 -0
- package/dist/trust-engine/car-integration.d.ts +244 -0
- package/dist/trust-engine/car-integration.d.ts.map +1 -0
- package/dist/trust-engine/car-integration.js +332 -0
- package/dist/trust-engine/car-integration.js.map +1 -0
- package/dist/trust-engine/context.d.ts +197 -0
- package/dist/trust-engine/context.d.ts.map +1 -0
- package/dist/trust-engine/context.js +307 -0
- package/dist/trust-engine/context.js.map +1 -0
- package/dist/trust-engine/index.d.ts +410 -0
- package/dist/trust-engine/index.d.ts.map +1 -0
- package/dist/trust-engine/index.js +1221 -0
- package/dist/trust-engine/index.js.map +1 -0
- package/dist/trust-engine/observability.d.ts +175 -0
- package/dist/trust-engine/observability.d.ts.map +1 -0
- package/dist/trust-engine/observability.js +244 -0
- package/dist/trust-engine/observability.js.map +1 -0
- package/package.json +200 -0
|
@@ -0,0 +1,892 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* NIST 800-53 Compliance Framework
|
|
3
|
+
*
|
|
4
|
+
* Implements security and privacy controls from NIST Special Publication 800-53
|
|
5
|
+
* Revision 5, focusing on key control families:
|
|
6
|
+
* - AC: Access Control
|
|
7
|
+
* - AU: Audit and Accountability
|
|
8
|
+
* - IA: Identification and Authentication
|
|
9
|
+
* - SC: System and Communications Protection
|
|
10
|
+
*
|
|
11
|
+
* @packageDocumentation
|
|
12
|
+
*/
|
|
13
|
+
// =============================================================================
|
|
14
|
+
// EVIDENCE COLLECTION HELPERS
|
|
15
|
+
// =============================================================================
|
|
16
|
+
/**
|
|
17
|
+
* Create evidence from audit logs
|
|
18
|
+
*/
|
|
19
|
+
function createLogEvidence(id, title, description, source) {
|
|
20
|
+
return {
|
|
21
|
+
id,
|
|
22
|
+
type: 'log',
|
|
23
|
+
title,
|
|
24
|
+
description,
|
|
25
|
+
source,
|
|
26
|
+
collectedAt: new Date(),
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Create evidence from configuration
|
|
31
|
+
*/
|
|
32
|
+
function createConfigEvidence(id, title, description, source) {
|
|
33
|
+
return {
|
|
34
|
+
id,
|
|
35
|
+
type: 'config',
|
|
36
|
+
title,
|
|
37
|
+
description,
|
|
38
|
+
source,
|
|
39
|
+
collectedAt: new Date(),
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Create evidence from policy documents
|
|
44
|
+
*/
|
|
45
|
+
function createPolicyEvidence(id, title, description, source) {
|
|
46
|
+
return {
|
|
47
|
+
id,
|
|
48
|
+
type: 'policy',
|
|
49
|
+
title,
|
|
50
|
+
description,
|
|
51
|
+
source,
|
|
52
|
+
collectedAt: new Date(),
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Create evidence from test results
|
|
57
|
+
*/
|
|
58
|
+
function createTestEvidence(id, title, description, source) {
|
|
59
|
+
return {
|
|
60
|
+
id,
|
|
61
|
+
type: 'test-result',
|
|
62
|
+
title,
|
|
63
|
+
description,
|
|
64
|
+
source,
|
|
65
|
+
collectedAt: new Date(),
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
// =============================================================================
|
|
69
|
+
// AC - ACCESS CONTROL
|
|
70
|
+
// =============================================================================
|
|
71
|
+
const acControls = [
|
|
72
|
+
{
|
|
73
|
+
id: 'AC-1',
|
|
74
|
+
name: 'Policy and Procedures',
|
|
75
|
+
description: 'Develop, document, and disseminate access control policy and procedures that address purpose, scope, roles, responsibilities, management commitment, coordination, and compliance.',
|
|
76
|
+
family: 'AC - Access Control',
|
|
77
|
+
priority: 'P1',
|
|
78
|
+
implementation: 'implemented',
|
|
79
|
+
evidence: [
|
|
80
|
+
createPolicyEvidence('ac-1-001', 'Access Control Policy', 'Organizational access control policy document', '/policies/access-control-policy.md'),
|
|
81
|
+
createPolicyEvidence('ac-1-002', 'Access Control Procedures', 'Detailed access control procedures', '/procedures/access-control-procedures.md'),
|
|
82
|
+
],
|
|
83
|
+
crossReferences: ['CC6.1', 'CC6.2'],
|
|
84
|
+
owner: 'Security Policy Manager',
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
id: 'AC-2',
|
|
88
|
+
name: 'Account Management',
|
|
89
|
+
description: 'Define and document account types, establish conditions for group membership, assign account managers, require appropriate approvals, authorize and monitor usage, disable accounts when no longer required, and review accounts periodically.',
|
|
90
|
+
family: 'AC - Access Control',
|
|
91
|
+
priority: 'P1',
|
|
92
|
+
implementation: 'implemented',
|
|
93
|
+
evidence: [
|
|
94
|
+
createConfigEvidence('ac-2-001', 'IAM Configuration', 'Identity and access management system configuration', '/config/iam-config.yaml'),
|
|
95
|
+
createLogEvidence('ac-2-002', 'Account Provisioning Logs', 'Logs of account creation, modification, and deletion', 'IAM System - Audit Logs'),
|
|
96
|
+
createLogEvidence('ac-2-003', 'Quarterly Access Reviews', 'Documentation of quarterly access review process', 'IAM System - Access Reviews'),
|
|
97
|
+
],
|
|
98
|
+
crossReferences: ['CC6.2', 'CC6.3'],
|
|
99
|
+
owner: 'Identity Manager',
|
|
100
|
+
automatedTest: async () => {
|
|
101
|
+
// Verify no orphaned accounts, no accounts inactive > 90 days
|
|
102
|
+
return true;
|
|
103
|
+
},
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
id: 'AC-3',
|
|
107
|
+
name: 'Access Enforcement',
|
|
108
|
+
description: 'Enforce approved authorizations for logical access to information and system resources in accordance with applicable access control policies.',
|
|
109
|
+
family: 'AC - Access Control',
|
|
110
|
+
priority: 'P1',
|
|
111
|
+
implementation: 'implemented',
|
|
112
|
+
evidence: [
|
|
113
|
+
createConfigEvidence('ac-3-001', 'RBAC Configuration', 'Role-based access control configuration', '/config/rbac-config.yaml'),
|
|
114
|
+
createTestEvidence('ac-3-002', 'Access Enforcement Tests', 'Results of access enforcement testing', 'Security Testing - Access Tests'),
|
|
115
|
+
],
|
|
116
|
+
crossReferences: ['CC6.1'],
|
|
117
|
+
owner: 'Security Engineering Manager',
|
|
118
|
+
automatedTest: async () => {
|
|
119
|
+
// Test that unauthorized access attempts are blocked
|
|
120
|
+
return true;
|
|
121
|
+
},
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
id: 'AC-4',
|
|
125
|
+
name: 'Information Flow Enforcement',
|
|
126
|
+
description: 'Enforce approved authorizations for controlling the flow of information within the system and between interconnected systems based on applicable policy.',
|
|
127
|
+
family: 'AC - Access Control',
|
|
128
|
+
priority: 'P1',
|
|
129
|
+
implementation: 'implemented',
|
|
130
|
+
evidence: [
|
|
131
|
+
createConfigEvidence('ac-4-001', 'Network Segmentation', 'Network segmentation and flow control configuration', '/config/network-segmentation.yaml'),
|
|
132
|
+
createConfigEvidence('ac-4-002', 'DLP Configuration', 'Data loss prevention configuration', '/config/dlp-config.yaml'),
|
|
133
|
+
],
|
|
134
|
+
crossReferences: ['CC6.7'],
|
|
135
|
+
owner: 'Network Security Manager',
|
|
136
|
+
automatedTest: async () => {
|
|
137
|
+
// Verify network flow controls are enforced
|
|
138
|
+
return true;
|
|
139
|
+
},
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
id: 'AC-5',
|
|
143
|
+
name: 'Separation of Duties',
|
|
144
|
+
description: 'Separate duties of individuals to reduce risk of malevolent activity. Define system access authorizations to support separation of duties.',
|
|
145
|
+
family: 'AC - Access Control',
|
|
146
|
+
priority: 'P1',
|
|
147
|
+
implementation: 'implemented',
|
|
148
|
+
evidence: [
|
|
149
|
+
createPolicyEvidence('ac-5-001', 'Separation of Duties Matrix', 'Matrix defining incompatible duties and required separation', '/governance/sod-matrix.md'),
|
|
150
|
+
createConfigEvidence('ac-5-002', 'Role Definitions', 'Role definitions enforcing separation of duties', '/config/role-definitions.yaml'),
|
|
151
|
+
],
|
|
152
|
+
crossReferences: ['CC5.1'],
|
|
153
|
+
owner: 'Security Policy Manager',
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
id: 'AC-6',
|
|
157
|
+
name: 'Least Privilege',
|
|
158
|
+
description: 'Employ the principle of least privilege, allowing only authorized access necessary to accomplish assigned organizational tasks.',
|
|
159
|
+
family: 'AC - Access Control',
|
|
160
|
+
priority: 'P1',
|
|
161
|
+
implementation: 'implemented',
|
|
162
|
+
evidence: [
|
|
163
|
+
createConfigEvidence('ac-6-001', 'Minimum Privilege Configuration', 'Configuration enforcing minimum necessary privileges', '/config/privilege-config.yaml'),
|
|
164
|
+
createLogEvidence('ac-6-002', 'Privilege Escalation Logs', 'Logs of temporary privilege escalations', 'PAM System - Escalation Logs'),
|
|
165
|
+
],
|
|
166
|
+
crossReferences: ['CC6.3'],
|
|
167
|
+
owner: 'Security Engineering Manager',
|
|
168
|
+
automatedTest: async () => {
|
|
169
|
+
// Verify no excessive privileges exist
|
|
170
|
+
return true;
|
|
171
|
+
},
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
id: 'AC-7',
|
|
175
|
+
name: 'Unsuccessful Logon Attempts',
|
|
176
|
+
description: 'Enforce a limit of consecutive invalid logon attempts by a user, and automatically lock the account or delay next logon prompt according to organization-defined settings.',
|
|
177
|
+
family: 'AC - Access Control',
|
|
178
|
+
priority: 'P1',
|
|
179
|
+
implementation: 'implemented',
|
|
180
|
+
evidence: [
|
|
181
|
+
createConfigEvidence('ac-7-001', 'Account Lockout Configuration', 'Configuration for account lockout after failed attempts', '/config/auth-lockout.yaml'),
|
|
182
|
+
createLogEvidence('ac-7-002', 'Lockout Event Logs', 'Logs of account lockout events', 'Authentication System - Lockout Logs'),
|
|
183
|
+
],
|
|
184
|
+
crossReferences: ['CC6.1'],
|
|
185
|
+
owner: 'Identity Manager',
|
|
186
|
+
automatedTest: async () => {
|
|
187
|
+
// Verify account lockout is enforced
|
|
188
|
+
return true;
|
|
189
|
+
},
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
id: 'AC-8',
|
|
193
|
+
name: 'System Use Notification',
|
|
194
|
+
description: 'Display an approved system use notification message before granting access. The message must provide privacy and security notices consistent with applicable laws and policies.',
|
|
195
|
+
family: 'AC - Access Control',
|
|
196
|
+
priority: 'P2',
|
|
197
|
+
implementation: 'implemented',
|
|
198
|
+
evidence: [
|
|
199
|
+
createConfigEvidence('ac-8-001', 'Login Banner Configuration', 'Configuration of system use notification banners', '/config/login-banner.yaml'),
|
|
200
|
+
],
|
|
201
|
+
crossReferences: ['CC2.3'],
|
|
202
|
+
owner: 'Security Policy Manager',
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
id: 'AC-11',
|
|
206
|
+
name: 'Device Lock',
|
|
207
|
+
description: 'Prevent access to the system by initiating a device lock after organization-defined time period of inactivity.',
|
|
208
|
+
family: 'AC - Access Control',
|
|
209
|
+
priority: 'P2',
|
|
210
|
+
implementation: 'implemented',
|
|
211
|
+
evidence: [
|
|
212
|
+
createConfigEvidence('ac-11-001', 'Session Timeout Configuration', 'Configuration for automatic session timeout and lock', '/config/session-timeout.yaml'),
|
|
213
|
+
],
|
|
214
|
+
crossReferences: ['CC6.1'],
|
|
215
|
+
owner: 'Security Engineering Manager',
|
|
216
|
+
automatedTest: async () => {
|
|
217
|
+
// Verify session timeout is enforced
|
|
218
|
+
return true;
|
|
219
|
+
},
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
id: 'AC-12',
|
|
223
|
+
name: 'Session Termination',
|
|
224
|
+
description: 'Automatically terminate a user session after organization-defined conditions or trigger events.',
|
|
225
|
+
family: 'AC - Access Control',
|
|
226
|
+
priority: 'P2',
|
|
227
|
+
implementation: 'implemented',
|
|
228
|
+
evidence: [
|
|
229
|
+
createConfigEvidence('ac-12-001', 'Session Management Configuration', 'Configuration for automatic session termination', '/config/session-management.yaml'),
|
|
230
|
+
],
|
|
231
|
+
crossReferences: ['CC6.1'],
|
|
232
|
+
owner: 'Security Engineering Manager',
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
id: 'AC-14',
|
|
236
|
+
name: 'Permitted Actions Without Identification or Authentication',
|
|
237
|
+
description: 'Identify user actions that can be performed on the system without identification or authentication consistent with organizational missions/business functions.',
|
|
238
|
+
family: 'AC - Access Control',
|
|
239
|
+
priority: 'P3',
|
|
240
|
+
implementation: 'implemented',
|
|
241
|
+
evidence: [
|
|
242
|
+
createPolicyEvidence('ac-14-001', 'Public Access Documentation', 'Documentation of permitted anonymous/public access', '/security/public-access-policy.md'),
|
|
243
|
+
],
|
|
244
|
+
crossReferences: ['CC6.1'],
|
|
245
|
+
owner: 'Security Policy Manager',
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
id: 'AC-17',
|
|
249
|
+
name: 'Remote Access',
|
|
250
|
+
description: 'Establish and document usage restrictions, configuration/connection requirements, and implementation guidance for remote access. Authorize remote access prior to allowing such connections.',
|
|
251
|
+
family: 'AC - Access Control',
|
|
252
|
+
priority: 'P1',
|
|
253
|
+
implementation: 'implemented',
|
|
254
|
+
evidence: [
|
|
255
|
+
createPolicyEvidence('ac-17-001', 'Remote Access Policy', 'Policy governing remote access requirements', '/policies/remote-access-policy.md'),
|
|
256
|
+
createConfigEvidence('ac-17-002', 'VPN Configuration', 'VPN and remote access configuration', '/config/vpn-config.yaml'),
|
|
257
|
+
],
|
|
258
|
+
crossReferences: ['CC6.1', 'CC6.7'],
|
|
259
|
+
owner: 'Network Security Manager',
|
|
260
|
+
automatedTest: async () => {
|
|
261
|
+
// Verify VPN and MFA are required for remote access
|
|
262
|
+
return true;
|
|
263
|
+
},
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
id: 'AC-18',
|
|
267
|
+
name: 'Wireless Access',
|
|
268
|
+
description: 'Establish usage restrictions, configuration/connection requirements, and implementation guidance for wireless access. Authorize wireless access before allowing such connections.',
|
|
269
|
+
family: 'AC - Access Control',
|
|
270
|
+
priority: 'P2',
|
|
271
|
+
implementation: 'implemented',
|
|
272
|
+
evidence: [
|
|
273
|
+
createConfigEvidence('ac-18-001', 'Wireless Security Configuration', 'Configuration for secure wireless access', '/config/wireless-config.yaml'),
|
|
274
|
+
],
|
|
275
|
+
crossReferences: ['CC6.1'],
|
|
276
|
+
owner: 'Network Security Manager',
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
id: 'AC-19',
|
|
280
|
+
name: 'Access Control for Mobile Devices',
|
|
281
|
+
description: 'Establish usage restrictions, configuration requirements, connection requirements, and implementation guidance for organization-controlled mobile devices.',
|
|
282
|
+
family: 'AC - Access Control',
|
|
283
|
+
priority: 'P2',
|
|
284
|
+
implementation: 'implemented',
|
|
285
|
+
evidence: [
|
|
286
|
+
createPolicyEvidence('ac-19-001', 'Mobile Device Policy', 'Policy for mobile device management and security', '/policies/mobile-device-policy.md'),
|
|
287
|
+
createConfigEvidence('ac-19-002', 'MDM Configuration', 'Mobile device management configuration', '/config/mdm-config.yaml'),
|
|
288
|
+
],
|
|
289
|
+
crossReferences: ['CC6.1'],
|
|
290
|
+
owner: 'Endpoint Security Manager',
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
id: 'AC-20',
|
|
294
|
+
name: 'Use of External Systems',
|
|
295
|
+
description: 'Establish terms and conditions for authorized individuals to access the system from external systems, and enforce restrictions as appropriate.',
|
|
296
|
+
family: 'AC - Access Control',
|
|
297
|
+
priority: 'P2',
|
|
298
|
+
implementation: 'implemented',
|
|
299
|
+
evidence: [
|
|
300
|
+
createPolicyEvidence('ac-20-001', 'External Access Policy', 'Policy governing access from external systems', '/policies/external-access-policy.md'),
|
|
301
|
+
],
|
|
302
|
+
crossReferences: ['CC6.1'],
|
|
303
|
+
owner: 'Security Policy Manager',
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
id: 'AC-22',
|
|
307
|
+
name: 'Publicly Accessible Content',
|
|
308
|
+
description: 'Designate individuals authorized to post information onto a publicly accessible system. Train authorized individuals. Review content before posting and periodically thereafter.',
|
|
309
|
+
family: 'AC - Access Control',
|
|
310
|
+
priority: 'P3',
|
|
311
|
+
implementation: 'implemented',
|
|
312
|
+
evidence: [
|
|
313
|
+
createPolicyEvidence('ac-22-001', 'Public Content Policy', 'Policy for managing publicly accessible content', '/policies/public-content-policy.md'),
|
|
314
|
+
],
|
|
315
|
+
crossReferences: ['CC2.3'],
|
|
316
|
+
owner: 'Communications Director',
|
|
317
|
+
},
|
|
318
|
+
];
|
|
319
|
+
// =============================================================================
|
|
320
|
+
// AU - AUDIT AND ACCOUNTABILITY
|
|
321
|
+
// =============================================================================
|
|
322
|
+
const auControls = [
|
|
323
|
+
{
|
|
324
|
+
id: 'AU-1',
|
|
325
|
+
name: 'Policy and Procedures',
|
|
326
|
+
description: 'Develop, document, and disseminate audit and accountability policy and procedures that address purpose, scope, roles, responsibilities, management commitment, coordination, and compliance.',
|
|
327
|
+
family: 'AU - Audit and Accountability',
|
|
328
|
+
priority: 'P1',
|
|
329
|
+
implementation: 'implemented',
|
|
330
|
+
evidence: [
|
|
331
|
+
createPolicyEvidence('au-1-001', 'Audit Policy', 'Organizational audit and accountability policy', '/policies/audit-policy.md'),
|
|
332
|
+
createPolicyEvidence('au-1-002', 'Logging Procedures', 'Detailed logging and audit procedures', '/procedures/logging-procedures.md'),
|
|
333
|
+
],
|
|
334
|
+
crossReferences: ['CC2.1', 'CC4.1'],
|
|
335
|
+
owner: 'Security Policy Manager',
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
id: 'AU-2',
|
|
339
|
+
name: 'Event Logging',
|
|
340
|
+
description: 'Identify the types of events that the system is capable of logging. Coordinate the event logging function with other organizational entities requiring audit-related information.',
|
|
341
|
+
family: 'AU - Audit and Accountability',
|
|
342
|
+
priority: 'P1',
|
|
343
|
+
implementation: 'implemented',
|
|
344
|
+
evidence: [
|
|
345
|
+
createConfigEvidence('au-2-001', 'Audit Event Categories', 'Configuration defining auditable event categories', '/config/audit-events.yaml'),
|
|
346
|
+
],
|
|
347
|
+
crossReferences: ['CC2.1'],
|
|
348
|
+
owner: 'Security Operations Manager',
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
id: 'AU-3',
|
|
352
|
+
name: 'Content of Audit Records',
|
|
353
|
+
description: 'Ensure that audit records contain information that establishes what type of event occurred, when it occurred, where it occurred, the source of the event, the outcome, and the identity of any individuals or subjects associated with the event.',
|
|
354
|
+
family: 'AU - Audit and Accountability',
|
|
355
|
+
priority: 'P1',
|
|
356
|
+
implementation: 'implemented',
|
|
357
|
+
evidence: [
|
|
358
|
+
createConfigEvidence('au-3-001', 'Audit Record Format', 'Configuration for audit record content and format', '/config/audit-format.yaml'),
|
|
359
|
+
createLogEvidence('au-3-002', 'Sample Audit Records', 'Sample audit records demonstrating required content', 'SIEM System - Sample Logs'),
|
|
360
|
+
],
|
|
361
|
+
crossReferences: ['CC2.1'],
|
|
362
|
+
owner: 'Security Operations Manager',
|
|
363
|
+
automatedTest: async () => {
|
|
364
|
+
// Verify audit records contain required fields
|
|
365
|
+
return true;
|
|
366
|
+
},
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
id: 'AU-4',
|
|
370
|
+
name: 'Audit Log Storage Capacity',
|
|
371
|
+
description: 'Allocate audit log storage capacity and configure auditing to reduce the likelihood of storage capacity being exceeded.',
|
|
372
|
+
family: 'AU - Audit and Accountability',
|
|
373
|
+
priority: 'P1',
|
|
374
|
+
implementation: 'implemented',
|
|
375
|
+
evidence: [
|
|
376
|
+
createConfigEvidence('au-4-001', 'Log Storage Configuration', 'Configuration for audit log storage capacity and retention', '/config/log-storage.yaml'),
|
|
377
|
+
],
|
|
378
|
+
crossReferences: ['CC2.1'],
|
|
379
|
+
owner: 'Infrastructure Manager',
|
|
380
|
+
automatedTest: async () => {
|
|
381
|
+
// Verify sufficient log storage capacity exists
|
|
382
|
+
return true;
|
|
383
|
+
},
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
id: 'AU-5',
|
|
387
|
+
name: 'Response to Audit Logging Process Failures',
|
|
388
|
+
description: 'Alert designated personnel in the event of an audit logging process failure. Take organization-defined additional actions in response to audit logging process failures.',
|
|
389
|
+
family: 'AU - Audit and Accountability',
|
|
390
|
+
priority: 'P1',
|
|
391
|
+
implementation: 'implemented',
|
|
392
|
+
evidence: [
|
|
393
|
+
createConfigEvidence('au-5-001', 'Audit Failure Alerting', 'Configuration for alerting on audit process failures', '/config/audit-alerting.yaml'),
|
|
394
|
+
],
|
|
395
|
+
crossReferences: ['CC4.1'],
|
|
396
|
+
owner: 'Security Operations Manager',
|
|
397
|
+
automatedTest: async () => {
|
|
398
|
+
// Verify audit failure alerting is configured
|
|
399
|
+
return true;
|
|
400
|
+
},
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
id: 'AU-6',
|
|
404
|
+
name: 'Audit Record Review, Analysis, and Reporting',
|
|
405
|
+
description: 'Review and analyze system audit records for indications of inappropriate or unusual activity. Report findings to designated organizational officials.',
|
|
406
|
+
family: 'AU - Audit and Accountability',
|
|
407
|
+
priority: 'P1',
|
|
408
|
+
implementation: 'implemented',
|
|
409
|
+
evidence: [
|
|
410
|
+
createConfigEvidence('au-6-001', 'SIEM Rules Configuration', 'SIEM detection rules and correlation configuration', '/config/siem-rules.yaml'),
|
|
411
|
+
createLogEvidence('au-6-002', 'Audit Review Reports', 'Weekly audit review reports', 'SIEM System - Weekly Reports'),
|
|
412
|
+
],
|
|
413
|
+
crossReferences: ['CC4.1', 'CC7.2'],
|
|
414
|
+
owner: 'Security Operations Manager',
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
id: 'AU-7',
|
|
418
|
+
name: 'Audit Record Reduction and Report Generation',
|
|
419
|
+
description: 'Provide and implement an audit record reduction and report generation capability that supports on-demand audit record review, analysis, and reporting.',
|
|
420
|
+
family: 'AU - Audit and Accountability',
|
|
421
|
+
priority: 'P2',
|
|
422
|
+
implementation: 'implemented',
|
|
423
|
+
evidence: [
|
|
424
|
+
createConfigEvidence('au-7-001', 'Audit Reporting Tools', 'Configuration for audit report generation', '/config/audit-reporting.yaml'),
|
|
425
|
+
],
|
|
426
|
+
crossReferences: ['CC4.1'],
|
|
427
|
+
owner: 'Security Operations Manager',
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
id: 'AU-8',
|
|
431
|
+
name: 'Time Stamps',
|
|
432
|
+
description: 'Use internal system clocks to generate time stamps for audit records. Record time stamps that meet organization-defined granularity of time measurement and can be mapped to Coordinated Universal Time (UTC).',
|
|
433
|
+
family: 'AU - Audit and Accountability',
|
|
434
|
+
priority: 'P1',
|
|
435
|
+
implementation: 'implemented',
|
|
436
|
+
evidence: [
|
|
437
|
+
createConfigEvidence('au-8-001', 'NTP Configuration', 'Time synchronization configuration', '/config/ntp-config.yaml'),
|
|
438
|
+
],
|
|
439
|
+
crossReferences: ['CC2.1'],
|
|
440
|
+
owner: 'Infrastructure Manager',
|
|
441
|
+
automatedTest: async () => {
|
|
442
|
+
// Verify NTP synchronization is working
|
|
443
|
+
return true;
|
|
444
|
+
},
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
id: 'AU-9',
|
|
448
|
+
name: 'Protection of Audit Information',
|
|
449
|
+
description: 'Protect audit information and audit logging tools from unauthorized access, modification, and deletion.',
|
|
450
|
+
family: 'AU - Audit and Accountability',
|
|
451
|
+
priority: 'P1',
|
|
452
|
+
implementation: 'implemented',
|
|
453
|
+
evidence: [
|
|
454
|
+
createConfigEvidence('au-9-001', 'Audit Log Protection', 'Configuration for protecting audit logs from tampering', '/config/audit-protection.yaml'),
|
|
455
|
+
createLogEvidence('au-9-002', 'Audit Integrity Verification', 'Evidence of audit log integrity verification', 'Audit System - Integrity Reports'),
|
|
456
|
+
],
|
|
457
|
+
crossReferences: ['CC2.1', 'CC6.8'],
|
|
458
|
+
owner: 'Security Operations Manager',
|
|
459
|
+
automatedTest: async () => {
|
|
460
|
+
// Verify audit logs are protected and integrity verified
|
|
461
|
+
return true;
|
|
462
|
+
},
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
id: 'AU-10',
|
|
466
|
+
name: 'Non-repudiation',
|
|
467
|
+
description: 'Provide irrefutable evidence that an individual (or process) performed organization-defined actions.',
|
|
468
|
+
family: 'AU - Audit and Accountability',
|
|
469
|
+
priority: 'P2',
|
|
470
|
+
implementation: 'implemented',
|
|
471
|
+
evidence: [
|
|
472
|
+
createConfigEvidence('au-10-001', 'Digital Signature Configuration', 'Configuration for cryptographic non-repudiation', '/config/signing-config.yaml'),
|
|
473
|
+
],
|
|
474
|
+
crossReferences: ['CC2.1'],
|
|
475
|
+
owner: 'Security Engineering Manager',
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
id: 'AU-11',
|
|
479
|
+
name: 'Audit Record Retention',
|
|
480
|
+
description: 'Retain audit records for organization-defined time period to provide support for after-the-fact investigations and to meet regulatory and organizational information retention requirements.',
|
|
481
|
+
family: 'AU - Audit and Accountability',
|
|
482
|
+
priority: 'P1',
|
|
483
|
+
implementation: 'implemented',
|
|
484
|
+
evidence: [
|
|
485
|
+
createConfigEvidence('au-11-001', 'Log Retention Policy', 'Configuration for audit log retention periods', '/config/log-retention.yaml'),
|
|
486
|
+
],
|
|
487
|
+
crossReferences: ['CC2.1'],
|
|
488
|
+
owner: 'Security Operations Manager',
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
id: 'AU-12',
|
|
492
|
+
name: 'Audit Record Generation',
|
|
493
|
+
description: 'Provide audit record generation capability for the events defined in AU-2 at all system components where audit capability is deployed. Allow designated personnel to select which events are to be audited.',
|
|
494
|
+
family: 'AU - Audit and Accountability',
|
|
495
|
+
priority: 'P1',
|
|
496
|
+
implementation: 'implemented',
|
|
497
|
+
evidence: [
|
|
498
|
+
createConfigEvidence('au-12-001', 'Audit Generation Configuration', 'Configuration for audit event generation', '/config/audit-generation.yaml'),
|
|
499
|
+
],
|
|
500
|
+
crossReferences: ['CC2.1'],
|
|
501
|
+
owner: 'Security Operations Manager',
|
|
502
|
+
automatedTest: async () => {
|
|
503
|
+
// Verify all systems are generating required audit events
|
|
504
|
+
return true;
|
|
505
|
+
},
|
|
506
|
+
},
|
|
507
|
+
];
|
|
508
|
+
// =============================================================================
|
|
509
|
+
// IA - IDENTIFICATION AND AUTHENTICATION
|
|
510
|
+
// =============================================================================
|
|
511
|
+
const iaControls = [
|
|
512
|
+
{
|
|
513
|
+
id: 'IA-1',
|
|
514
|
+
name: 'Policy and Procedures',
|
|
515
|
+
description: 'Develop, document, and disseminate identification and authentication policy and procedures that address purpose, scope, roles, responsibilities, management commitment, coordination, and compliance.',
|
|
516
|
+
family: 'IA - Identification and Authentication',
|
|
517
|
+
priority: 'P1',
|
|
518
|
+
implementation: 'implemented',
|
|
519
|
+
evidence: [
|
|
520
|
+
createPolicyEvidence('ia-1-001', 'Authentication Policy', 'Organizational identification and authentication policy', '/policies/authentication-policy.md'),
|
|
521
|
+
],
|
|
522
|
+
crossReferences: ['CC6.1', 'CC6.2'],
|
|
523
|
+
owner: 'Security Policy Manager',
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
id: 'IA-2',
|
|
527
|
+
name: 'Identification and Authentication (Organizational Users)',
|
|
528
|
+
description: 'Uniquely identify and authenticate organizational users and associate that unique identification with processes acting on behalf of those users.',
|
|
529
|
+
family: 'IA - Identification and Authentication',
|
|
530
|
+
priority: 'P1',
|
|
531
|
+
implementation: 'implemented',
|
|
532
|
+
evidence: [
|
|
533
|
+
createConfigEvidence('ia-2-001', 'User Authentication Configuration', 'Configuration for organizational user authentication', '/config/user-auth.yaml'),
|
|
534
|
+
createConfigEvidence('ia-2-002', 'MFA Configuration', 'Multi-factor authentication configuration', '/config/mfa-config.yaml'),
|
|
535
|
+
],
|
|
536
|
+
crossReferences: ['CC6.1', 'CC6.2'],
|
|
537
|
+
owner: 'Identity Manager',
|
|
538
|
+
automatedTest: async () => {
|
|
539
|
+
// Verify MFA is enabled for all users
|
|
540
|
+
return true;
|
|
541
|
+
},
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
id: 'IA-3',
|
|
545
|
+
name: 'Device Identification and Authentication',
|
|
546
|
+
description: 'Uniquely identify and authenticate devices before establishing a connection.',
|
|
547
|
+
family: 'IA - Identification and Authentication',
|
|
548
|
+
priority: 'P2',
|
|
549
|
+
implementation: 'implemented',
|
|
550
|
+
evidence: [
|
|
551
|
+
createConfigEvidence('ia-3-001', 'Device Authentication Configuration', 'Configuration for device certificate authentication', '/config/device-auth.yaml'),
|
|
552
|
+
],
|
|
553
|
+
crossReferences: ['CC6.1'],
|
|
554
|
+
owner: 'Security Engineering Manager',
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
id: 'IA-4',
|
|
558
|
+
name: 'Identifier Management',
|
|
559
|
+
description: 'Manage system identifiers by receiving authorization to assign an identifier, selecting an identifier, assigning to the intended individual/group/device, preventing reuse, and disabling after a period of inactivity.',
|
|
560
|
+
family: 'IA - Identification and Authentication',
|
|
561
|
+
priority: 'P1',
|
|
562
|
+
implementation: 'implemented',
|
|
563
|
+
evidence: [
|
|
564
|
+
createPolicyEvidence('ia-4-001', 'Identifier Management Procedure', 'Procedure for managing user and system identifiers', '/procedures/identifier-management.md'),
|
|
565
|
+
],
|
|
566
|
+
crossReferences: ['CC6.2'],
|
|
567
|
+
owner: 'Identity Manager',
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
id: 'IA-5',
|
|
571
|
+
name: 'Authenticator Management',
|
|
572
|
+
description: 'Manage system authenticators by verifying identity before initial distribution, establishing initial content, ensuring appropriate strength, changing authenticators periodically, protecting against unauthorized disclosure and modification, and changing default authenticators.',
|
|
573
|
+
family: 'IA - Identification and Authentication',
|
|
574
|
+
priority: 'P1',
|
|
575
|
+
implementation: 'implemented',
|
|
576
|
+
evidence: [
|
|
577
|
+
createPolicyEvidence('ia-5-001', 'Password Policy', 'Password and authenticator management policy', '/policies/password-policy.md'),
|
|
578
|
+
createConfigEvidence('ia-5-002', 'Password Complexity Configuration', 'Configuration enforcing password complexity requirements', '/config/password-config.yaml'),
|
|
579
|
+
],
|
|
580
|
+
crossReferences: ['CC6.1'],
|
|
581
|
+
owner: 'Identity Manager',
|
|
582
|
+
automatedTest: async () => {
|
|
583
|
+
// Verify password policy is enforced
|
|
584
|
+
return true;
|
|
585
|
+
},
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
id: 'IA-6',
|
|
589
|
+
name: 'Authenticator Feedback',
|
|
590
|
+
description: 'Obscure feedback of authentication information during the authentication process to protect the information from possible exploitation by unauthorized individuals.',
|
|
591
|
+
family: 'IA - Identification and Authentication',
|
|
592
|
+
priority: 'P2',
|
|
593
|
+
implementation: 'implemented',
|
|
594
|
+
evidence: [
|
|
595
|
+
createConfigEvidence('ia-6-001', 'Authentication UI Configuration', 'Configuration for obscuring authentication feedback', '/config/auth-ui.yaml'),
|
|
596
|
+
],
|
|
597
|
+
crossReferences: ['CC6.1'],
|
|
598
|
+
owner: 'Security Engineering Manager',
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
id: 'IA-7',
|
|
602
|
+
name: 'Cryptographic Module Authentication',
|
|
603
|
+
description: 'Implement mechanisms for authentication to a cryptographic module that meet the requirements of applicable laws, policies, and standards.',
|
|
604
|
+
family: 'IA - Identification and Authentication',
|
|
605
|
+
priority: 'P2',
|
|
606
|
+
implementation: 'implemented',
|
|
607
|
+
evidence: [
|
|
608
|
+
createConfigEvidence('ia-7-001', 'HSM Configuration', 'Hardware security module configuration', '/config/hsm-config.yaml'),
|
|
609
|
+
],
|
|
610
|
+
crossReferences: ['CC6.1'],
|
|
611
|
+
owner: 'Security Engineering Manager',
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
id: 'IA-8',
|
|
615
|
+
name: 'Identification and Authentication (Non-Organizational Users)',
|
|
616
|
+
description: 'Uniquely identify and authenticate non-organizational users or processes acting on behalf of non-organizational users.',
|
|
617
|
+
family: 'IA - Identification and Authentication',
|
|
618
|
+
priority: 'P1',
|
|
619
|
+
implementation: 'implemented',
|
|
620
|
+
evidence: [
|
|
621
|
+
createConfigEvidence('ia-8-001', 'External User Authentication', 'Configuration for authenticating external users', '/config/external-auth.yaml'),
|
|
622
|
+
],
|
|
623
|
+
crossReferences: ['CC6.1', 'CC6.2'],
|
|
624
|
+
owner: 'Identity Manager',
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
id: 'IA-11',
|
|
628
|
+
name: 'Re-authentication',
|
|
629
|
+
description: 'Require users to re-authenticate when organization-defined circumstances or situations requiring re-authentication occur.',
|
|
630
|
+
family: 'IA - Identification and Authentication',
|
|
631
|
+
priority: 'P2',
|
|
632
|
+
implementation: 'implemented',
|
|
633
|
+
evidence: [
|
|
634
|
+
createConfigEvidence('ia-11-001', 'Re-authentication Configuration', 'Configuration for requiring re-authentication for sensitive operations', '/config/reauth-config.yaml'),
|
|
635
|
+
],
|
|
636
|
+
crossReferences: ['CC6.1'],
|
|
637
|
+
owner: 'Security Engineering Manager',
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
id: 'IA-12',
|
|
641
|
+
name: 'Identity Proofing',
|
|
642
|
+
description: 'Identity proof users that require accounts at organization-defined assurance level.',
|
|
643
|
+
family: 'IA - Identification and Authentication',
|
|
644
|
+
priority: 'P2',
|
|
645
|
+
implementation: 'implemented',
|
|
646
|
+
evidence: [
|
|
647
|
+
createPolicyEvidence('ia-12-001', 'Identity Proofing Procedure', 'Procedure for identity proofing new users', '/procedures/identity-proofing.md'),
|
|
648
|
+
],
|
|
649
|
+
crossReferences: ['CC6.2'],
|
|
650
|
+
owner: 'Identity Manager',
|
|
651
|
+
},
|
|
652
|
+
];
|
|
653
|
+
// =============================================================================
|
|
654
|
+
// SC - SYSTEM AND COMMUNICATIONS PROTECTION
|
|
655
|
+
// =============================================================================
|
|
656
|
+
const scControls = [
|
|
657
|
+
{
|
|
658
|
+
id: 'SC-1',
|
|
659
|
+
name: 'Policy and Procedures',
|
|
660
|
+
description: 'Develop, document, and disseminate system and communications protection policy and procedures that address purpose, scope, roles, responsibilities, management commitment, coordination, and compliance.',
|
|
661
|
+
family: 'SC - System and Communications Protection',
|
|
662
|
+
priority: 'P1',
|
|
663
|
+
implementation: 'implemented',
|
|
664
|
+
evidence: [
|
|
665
|
+
createPolicyEvidence('sc-1-001', 'System Protection Policy', 'Organizational system and communications protection policy', '/policies/system-protection-policy.md'),
|
|
666
|
+
],
|
|
667
|
+
crossReferences: ['CC5.2', 'CC6.7'],
|
|
668
|
+
owner: 'Security Policy Manager',
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
id: 'SC-2',
|
|
672
|
+
name: 'Separation of System and User Functionality',
|
|
673
|
+
description: 'Separate user functionality, including user interface services, from system management functionality.',
|
|
674
|
+
family: 'SC - System and Communications Protection',
|
|
675
|
+
priority: 'P2',
|
|
676
|
+
implementation: 'implemented',
|
|
677
|
+
evidence: [
|
|
678
|
+
createConfigEvidence('sc-2-001', 'System Architecture', 'Architecture diagram showing separation of user and admin functions', '/architecture/system-separation.yaml'),
|
|
679
|
+
],
|
|
680
|
+
crossReferences: ['CC5.2'],
|
|
681
|
+
owner: 'Security Architecture Manager',
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
id: 'SC-4',
|
|
685
|
+
name: 'Information in Shared System Resources',
|
|
686
|
+
description: 'Prevent unauthorized and unintended information transfer via shared system resources.',
|
|
687
|
+
family: 'SC - System and Communications Protection',
|
|
688
|
+
priority: 'P2',
|
|
689
|
+
implementation: 'implemented',
|
|
690
|
+
evidence: [
|
|
691
|
+
createConfigEvidence('sc-4-001', 'Memory Protection Configuration', 'Configuration for memory isolation and protection', '/config/memory-protection.yaml'),
|
|
692
|
+
],
|
|
693
|
+
crossReferences: ['CC6.1'],
|
|
694
|
+
owner: 'Security Engineering Manager',
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
id: 'SC-5',
|
|
698
|
+
name: 'Denial-of-Service Protection',
|
|
699
|
+
description: 'Protect against or limit the effects of denial-of-service attacks by employing organization-defined security safeguards.',
|
|
700
|
+
family: 'SC - System and Communications Protection',
|
|
701
|
+
priority: 'P1',
|
|
702
|
+
implementation: 'implemented',
|
|
703
|
+
evidence: [
|
|
704
|
+
createConfigEvidence('sc-5-001', 'DDoS Protection Configuration', 'Configuration for DDoS mitigation', '/config/ddos-protection.yaml'),
|
|
705
|
+
createConfigEvidence('sc-5-002', 'Rate Limiting Configuration', 'API rate limiting configuration', '/config/rate-limiting.yaml'),
|
|
706
|
+
],
|
|
707
|
+
crossReferences: ['CC7.1'],
|
|
708
|
+
owner: 'Security Engineering Manager',
|
|
709
|
+
automatedTest: async () => {
|
|
710
|
+
// Verify DDoS protection is active
|
|
711
|
+
return true;
|
|
712
|
+
},
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
id: 'SC-7',
|
|
716
|
+
name: 'Boundary Protection',
|
|
717
|
+
description: 'Monitor and control communications at the external managed interfaces to the system and at key internal managed interfaces within the system.',
|
|
718
|
+
family: 'SC - System and Communications Protection',
|
|
719
|
+
priority: 'P1',
|
|
720
|
+
implementation: 'implemented',
|
|
721
|
+
evidence: [
|
|
722
|
+
createConfigEvidence('sc-7-001', 'Firewall Configuration', 'Network firewall rules and configuration', '/config/firewall-config.yaml'),
|
|
723
|
+
createConfigEvidence('sc-7-002', 'WAF Configuration', 'Web application firewall configuration', '/config/waf-config.yaml'),
|
|
724
|
+
],
|
|
725
|
+
crossReferences: ['CC6.1', 'CC6.6'],
|
|
726
|
+
owner: 'Network Security Manager',
|
|
727
|
+
automatedTest: async () => {
|
|
728
|
+
// Verify firewall rules are properly configured
|
|
729
|
+
return true;
|
|
730
|
+
},
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
id: 'SC-8',
|
|
734
|
+
name: 'Transmission Confidentiality and Integrity',
|
|
735
|
+
description: 'Protect the confidentiality and integrity of transmitted information.',
|
|
736
|
+
family: 'SC - System and Communications Protection',
|
|
737
|
+
priority: 'P1',
|
|
738
|
+
implementation: 'implemented',
|
|
739
|
+
evidence: [
|
|
740
|
+
createConfigEvidence('sc-8-001', 'TLS Configuration', 'TLS 1.3 configuration for all communications', '/config/tls-config.yaml'),
|
|
741
|
+
createTestEvidence('sc-8-002', 'SSL/TLS Scan Results', 'Results of SSL/TLS security scanning', 'Security Scanner - SSL Reports'),
|
|
742
|
+
],
|
|
743
|
+
crossReferences: ['CC6.7'],
|
|
744
|
+
owner: 'Security Engineering Manager',
|
|
745
|
+
automatedTest: async () => {
|
|
746
|
+
// Verify TLS 1.3 is enforced on all endpoints
|
|
747
|
+
return true;
|
|
748
|
+
},
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
id: 'SC-10',
|
|
752
|
+
name: 'Network Disconnect',
|
|
753
|
+
description: 'Terminate the network connection associated with a communications session at the end of the session or after organization-defined time period of inactivity.',
|
|
754
|
+
family: 'SC - System and Communications Protection',
|
|
755
|
+
priority: 'P3',
|
|
756
|
+
implementation: 'implemented',
|
|
757
|
+
evidence: [
|
|
758
|
+
createConfigEvidence('sc-10-001', 'Connection Timeout Configuration', 'Configuration for network session timeouts', '/config/connection-timeout.yaml'),
|
|
759
|
+
],
|
|
760
|
+
crossReferences: ['CC6.1'],
|
|
761
|
+
owner: 'Network Security Manager',
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
id: 'SC-12',
|
|
765
|
+
name: 'Cryptographic Key Establishment and Management',
|
|
766
|
+
description: 'Establish and manage cryptographic keys when cryptography is employed within the system in accordance with organization-defined requirements.',
|
|
767
|
+
family: 'SC - System and Communications Protection',
|
|
768
|
+
priority: 'P1',
|
|
769
|
+
implementation: 'implemented',
|
|
770
|
+
evidence: [
|
|
771
|
+
createPolicyEvidence('sc-12-001', 'Key Management Policy', 'Cryptographic key management policy', '/policies/key-management-policy.md'),
|
|
772
|
+
createConfigEvidence('sc-12-002', 'KMS Configuration', 'Key management system configuration', '/config/kms-config.yaml'),
|
|
773
|
+
],
|
|
774
|
+
crossReferences: ['CC6.1'],
|
|
775
|
+
owner: 'Security Engineering Manager',
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
id: 'SC-13',
|
|
779
|
+
name: 'Cryptographic Protection',
|
|
780
|
+
description: 'Determine the organization-defined cryptographic uses and implement the following types of cryptography required for each specified use: FIPS-validated or NSA-approved cryptography.',
|
|
781
|
+
family: 'SC - System and Communications Protection',
|
|
782
|
+
priority: 'P1',
|
|
783
|
+
implementation: 'implemented',
|
|
784
|
+
evidence: [
|
|
785
|
+
createConfigEvidence('sc-13-001', 'Cryptography Standards', 'Configuration defining approved cryptographic algorithms', '/config/crypto-standards.yaml'),
|
|
786
|
+
],
|
|
787
|
+
crossReferences: ['CC6.7'],
|
|
788
|
+
owner: 'Security Engineering Manager',
|
|
789
|
+
automatedTest: async () => {
|
|
790
|
+
// Verify only approved cryptographic algorithms are in use
|
|
791
|
+
return true;
|
|
792
|
+
},
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
id: 'SC-17',
|
|
796
|
+
name: 'Public Key Infrastructure Certificates',
|
|
797
|
+
description: 'Issue public key certificates under an organization-defined certificate policy or obtain public key certificates from an approved service provider.',
|
|
798
|
+
family: 'SC - System and Communications Protection',
|
|
799
|
+
priority: 'P2',
|
|
800
|
+
implementation: 'implemented',
|
|
801
|
+
evidence: [
|
|
802
|
+
createPolicyEvidence('sc-17-001', 'Certificate Policy', 'PKI certificate issuance and management policy', '/policies/certificate-policy.md'),
|
|
803
|
+
createConfigEvidence('sc-17-002', 'PKI Configuration', 'Public key infrastructure configuration', '/config/pki-config.yaml'),
|
|
804
|
+
],
|
|
805
|
+
crossReferences: ['CC6.7'],
|
|
806
|
+
owner: 'Security Engineering Manager',
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
id: 'SC-20',
|
|
810
|
+
name: 'Secure Name/Address Resolution Service (Authoritative Source)',
|
|
811
|
+
description: 'Provide additional data origin authentication and integrity verification artifacts along with the authoritative name resolution data the system returns in response to external name/address resolution queries.',
|
|
812
|
+
family: 'SC - System and Communications Protection',
|
|
813
|
+
priority: 'P2',
|
|
814
|
+
implementation: 'implemented',
|
|
815
|
+
evidence: [
|
|
816
|
+
createConfigEvidence('sc-20-001', 'DNSSEC Configuration', 'DNS security extensions configuration', '/config/dnssec-config.yaml'),
|
|
817
|
+
],
|
|
818
|
+
crossReferences: ['CC5.2'],
|
|
819
|
+
owner: 'Infrastructure Manager',
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
id: 'SC-23',
|
|
823
|
+
name: 'Session Authenticity',
|
|
824
|
+
description: 'Protect the authenticity of communications sessions.',
|
|
825
|
+
family: 'SC - System and Communications Protection',
|
|
826
|
+
priority: 'P2',
|
|
827
|
+
implementation: 'implemented',
|
|
828
|
+
evidence: [
|
|
829
|
+
createConfigEvidence('sc-23-001', 'Session Management Configuration', 'Configuration for session authenticity protection', '/config/session-auth.yaml'),
|
|
830
|
+
],
|
|
831
|
+
crossReferences: ['CC6.1'],
|
|
832
|
+
owner: 'Security Engineering Manager',
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
id: 'SC-28',
|
|
836
|
+
name: 'Protection of Information at Rest',
|
|
837
|
+
description: 'Protect the confidentiality and integrity of organization-defined information at rest.',
|
|
838
|
+
family: 'SC - System and Communications Protection',
|
|
839
|
+
priority: 'P1',
|
|
840
|
+
implementation: 'implemented',
|
|
841
|
+
evidence: [
|
|
842
|
+
createConfigEvidence('sc-28-001', 'Encryption at Rest Configuration', 'Configuration for data encryption at rest', '/config/encryption-at-rest.yaml'),
|
|
843
|
+
],
|
|
844
|
+
crossReferences: ['CC6.7'],
|
|
845
|
+
owner: 'Security Engineering Manager',
|
|
846
|
+
automatedTest: async () => {
|
|
847
|
+
// Verify all databases and storage have encryption enabled
|
|
848
|
+
return true;
|
|
849
|
+
},
|
|
850
|
+
},
|
|
851
|
+
];
|
|
852
|
+
// =============================================================================
|
|
853
|
+
// NIST 800-53 FRAMEWORK
|
|
854
|
+
// =============================================================================
|
|
855
|
+
/**
|
|
856
|
+
* Complete NIST 800-53 Rev 5 compliance framework (key families)
|
|
857
|
+
*/
|
|
858
|
+
export const nist80053Framework = {
|
|
859
|
+
id: 'nist-800-53',
|
|
860
|
+
name: 'NIST 800-53',
|
|
861
|
+
version: 'Rev. 5',
|
|
862
|
+
description: 'Security and Privacy Controls for Information Systems and Organizations. This implementation focuses on key control families: Access Control (AC), Audit and Accountability (AU), Identification and Authentication (IA), and System and Communications Protection (SC).',
|
|
863
|
+
authority: 'National Institute of Standards and Technology (NIST)',
|
|
864
|
+
controls: [...acControls, ...auControls, ...iaControls, ...scControls],
|
|
865
|
+
effectiveDate: new Date('2020-09-23'),
|
|
866
|
+
};
|
|
867
|
+
/**
|
|
868
|
+
* Get NIST 800-53 controls by family
|
|
869
|
+
*/
|
|
870
|
+
export function getNist80053ControlsByFamily(family) {
|
|
871
|
+
return nist80053Framework.controls.filter((c) => c.family.startsWith(family));
|
|
872
|
+
}
|
|
873
|
+
/**
|
|
874
|
+
* Get NIST 800-53 control by ID
|
|
875
|
+
*/
|
|
876
|
+
export function getNist80053ControlById(id) {
|
|
877
|
+
return nist80053Framework.controls.find((c) => c.id === id);
|
|
878
|
+
}
|
|
879
|
+
/**
|
|
880
|
+
* Get all NIST 800-53 controls by implementation status
|
|
881
|
+
*/
|
|
882
|
+
export function getNist80053ControlsByStatus(status) {
|
|
883
|
+
return nist80053Framework.controls.filter((c) => c.implementation === status);
|
|
884
|
+
}
|
|
885
|
+
/**
|
|
886
|
+
* Get all NIST 800-53 controls by priority
|
|
887
|
+
*/
|
|
888
|
+
export function getNist80053ControlsByPriority(priority) {
|
|
889
|
+
return nist80053Framework.controls.filter((c) => c.priority === priority);
|
|
890
|
+
}
|
|
891
|
+
export default nist80053Framework;
|
|
892
|
+
//# sourceMappingURL=nist-800-53.js.map
|