updated alibaba rule

This commit is contained in:
Mick Grove 2026-02-01 22:32:00 -08:00
commit 32be18bef0

View file

@ -632,13 +632,12 @@ impl DetailsReporter {
(None, None)
} else {
// Try to find AKID from captures (for AWS)
let akid_from_captures: Option<String> = rm
.m
.groups
.captures
.iter()
.find(|c| c.name == Some("AKID") || c.name == Some("akid"))
.map(|c| c.raw_value().to_string());
let akid_from_captures: Option<String> =
rm.m.groups
.captures
.iter()
.find(|c| c.name == Some("AKID") || c.name == Some("akid"))
.map(|c| c.raw_value().to_string());
// Try to extract AKID from validation response body (fallback for AWS)
let akid_from_body = extract_akid_from_validation_body(&rm.validation_response_body);