2026-02-09 22:22:29 -08:00
|
|
|
/**
|
|
|
|
|
* Re-export barrel for security audit collector functions.
|
|
|
|
|
*
|
|
|
|
|
* Maintains backward compatibility with existing imports from audit-extra.
|
|
|
|
|
* Implementation split into:
|
|
|
|
|
* - audit-extra.sync.ts: Config-based checks (no I/O)
|
|
|
|
|
* - audit-extra.async.ts: Filesystem/plugin checks (async I/O)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// Sync collectors
|
|
|
|
|
export {
|
|
|
|
|
collectAttackSurfaceSummaryFindings,
|
|
|
|
|
collectExposureMatrixFindings,
|
2026-02-19 14:25:45 +01:00
|
|
|
collectGatewayHttpNoAuthFindings,
|
2026-02-14 06:32:17 -05:00
|
|
|
collectGatewayHttpSessionKeyOverrideFindings,
|
2026-02-09 22:22:29 -08:00
|
|
|
collectHooksHardeningFindings,
|
2026-02-24 14:03:04 +00:00
|
|
|
collectLikelyMultiUserSetupFindings,
|
2026-02-13 16:26:37 +01:00
|
|
|
collectMinimalProfileOverrideFindings,
|
2026-02-09 22:22:29 -08:00
|
|
|
collectModelHygieneFindings,
|
2026-02-22 08:44:12 +01:00
|
|
|
collectNodeDangerousAllowCommandFindings,
|
2026-02-13 16:26:37 +01:00
|
|
|
collectNodeDenyCommandPatternFindings,
|
2026-02-16 03:03:55 +01:00
|
|
|
collectSandboxDangerousConfigFindings,
|
2026-02-13 16:26:37 +01:00
|
|
|
collectSandboxDockerNoopFindings,
|
2026-02-09 22:22:29 -08:00
|
|
|
collectSecretsInConfigFindings,
|
|
|
|
|
collectSmallModelRiskFindings,
|
|
|
|
|
collectSyncedFolderFindings,
|
|
|
|
|
type SecurityAuditFinding,
|
|
|
|
|
} from "./audit-extra.sync.js";
|
|
|
|
|
|
|
|
|
|
// Async collectors
|
|
|
|
|
export {
|
2026-02-21 13:25:35 +01:00
|
|
|
collectSandboxBrowserHashLabelFindings,
|
2026-02-09 22:22:29 -08:00
|
|
|
collectIncludeFilePermFindings,
|
|
|
|
|
collectInstalledSkillsCodeSafetyFindings,
|
|
|
|
|
collectPluginsCodeSafetyFindings,
|
|
|
|
|
collectPluginsTrustFindings,
|
|
|
|
|
collectStateDeepFilesystemFindings,
|
|
|
|
|
readConfigSnapshotForAudit,
|
|
|
|
|
} from "./audit-extra.async.js";
|