fix(iwooos): close Wazuh critical execution gate
All checks were successful
CD Pipeline / workflow-shape (push) Successful in 1s
CD Pipeline / cancel-stale-cd (push) Has been skipped
CD Pipeline / tests (push) Successful in 2m43s
CD Pipeline / build-and-deploy (push) Successful in 15m20s
CD Pipeline / post-deploy-checks (push) Successful in 3m15s
AWOOOI Harbor 110 Local Repair / workflow-shape (push) Successful in 1s
AWOOOI Harbor 110 Local Repair / harbor-110-local-repair (push) Successful in 16s
All checks were successful
CD Pipeline / workflow-shape (push) Successful in 1s
CD Pipeline / cancel-stale-cd (push) Has been skipped
CD Pipeline / tests (push) Successful in 2m43s
CD Pipeline / build-and-deploy (push) Successful in 15m20s
CD Pipeline / post-deploy-checks (push) Successful in 3m15s
AWOOOI Harbor 110 Local Repair / workflow-shape (push) Successful in 1s
AWOOOI Harbor 110 Local Repair / harbor-110-local-repair (push) Successful in 16s
This commit is contained in:
@@ -16701,6 +16701,7 @@ function IwoooSSecurityToolClosureBoard() {
|
||||
const dispatchCandidate = runtimeSummary?.dispatch_candidate_count ?? 0
|
||||
const checkModeFailed = runtimeSummary?.check_mode_failed_count ?? 0
|
||||
const controlledCapabilityPacket = runtimeSummary?.controlled_capability_repair_packet_count ?? 0
|
||||
const criticalSecretReferenceBoundary = runtimeData?.check_failure_class === 'wazuh_privileged_convergence_secret_reference_missing'
|
||||
const runtimeFailureKey = runtimeData?.check_failure_class === 'wazuh_privileged_convergence_secret_reference_missing'
|
||||
? controlledCapabilityPacket > 0
|
||||
? 'privilegedSecretReferencePacketQueued'
|
||||
@@ -16729,15 +16730,21 @@ function IwoooSSecurityToolClosureBoard() {
|
||||
},
|
||||
{
|
||||
key: 'packet',
|
||||
labelKey: runtimeFailureKey?.startsWith('privileged') ? 'capabilityPacket' : 'packet',
|
||||
labelKey: criticalSecretReferenceBoundary
|
||||
? 'criticalPacket'
|
||||
: runtimeFailureKey?.startsWith('privileged') ? 'capabilityPacket' : 'packet',
|
||||
icon: FileCheck2,
|
||||
value: runtimeFailureKey?.startsWith('privileged')
|
||||
? `${controlledCapabilityPacket}/1`
|
||||
: `${summary.wazuh_incident_response_closure_validator_available_count ?? 0}/1`,
|
||||
tone: runtimeFailureKey?.startsWith('privileged')
|
||||
tone: criticalSecretReferenceBoundary
|
||||
? 'locked' as const
|
||||
: runtimeFailureKey?.startsWith('privileged')
|
||||
? controlledCapabilityPacket > 0 ? 'warn' as const : 'locked' as const
|
||||
: (summary.wazuh_incident_response_closure_validator_available_count ?? 0) > 0 ? 'warn' as const : 'locked' as const,
|
||||
state: runtimeFailureKey?.startsWith('privileged')
|
||||
state: criticalSecretReferenceBoundary
|
||||
? 'blocked'
|
||||
: runtimeFailureKey?.startsWith('privileged')
|
||||
? controlledCapabilityPacket > 0 ? 'queued' : 'waiting'
|
||||
: (summary.wazuh_incident_response_closure_validator_available_count ?? 0) > 0 ? 'ready' : 'waiting',
|
||||
},
|
||||
@@ -16954,10 +16961,10 @@ function IwoooSSecurityToolClosureBoard() {
|
||||
data-testid="iwooos-wazuh-runtime-failure"
|
||||
role="status"
|
||||
style={{
|
||||
border: '0.5px solid #d8a96f',
|
||||
border: criticalSecretReferenceBoundary ? '0.5px solid #d68b8b' : '0.5px solid #d8a96f',
|
||||
borderRadius: 8,
|
||||
background: '#fff8ef',
|
||||
color: '#7c4618',
|
||||
background: criticalSecretReferenceBoundary ? '#fff4f3' : '#fff8ef',
|
||||
color: criticalSecretReferenceBoundary ? '#8b2525' : '#7c4618',
|
||||
padding: '9px 11px',
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
|
||||
Reference in New Issue
Block a user