Merge pull request #2726 from dcooper16/fix_has_uds_checks

Fix checks with HAS_UDS and HAS_UDS2
This commit is contained in:
Dirk Wetter 2025-04-02 21:47:41 +02:00 committed by GitHub
commit be9a85c1f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19668,7 +19668,7 @@ run_starttls_injection() {
outln "Need socat for this check"
return 1
fi
if [[ -z "$HAS_UDS2" ]] && [[ -z "$HAS_UDS" ]]; then
if ! "$HAS_UDS2" && ! "$HAS_UDS"; then
fileout "$jsonID" "WARN" "Need OpenSSL with Unix-domain socket s_client support for this check" "$cve" "$cwe" "$hint"
outln "Need an OpenSSL with Unix-domain socket s_client support for this check"
return 1