RajivBansal-2486 hi thanks for posting this, man!
so ur seeing a ton of dns queries to certificate revocation list urls that don’t exist, and it’s tripping up sentinel thinking it’s some shady c2 traffic… sorry for that...
ok, these crl.ame.gbl urls are actually microsoft’s old-school cert revocation check endpoints. they’re used by windows components to verify if certs are revoked. but here’s the thing azure container apps (and the underlying infra) sometimes still try to hit them, even if they’re not really needed or even valid anymore. that’s why u get nxdomain those domains straight up don’t resolve.
why’s this happening? good question, at least for me ;) when ur container apps spin up or do their thing, some internal processes (like the k8s control plane or azure’s own services) might still have legacy code that tries to check cert revocation status. and since ur traffic’s going through azure firewall with dns proxy, every failed lookup gets logged… and ups sentinel freaks out ;)
So u have a few options fo fix it like just ignore it (if u can)). if this isn’t causing actual issues, u might just whitelist these urls in sentinel or tweak the alert rules. but i get it if security teams are breathing down ur neck, that might not fly. block the dns queries at the firewall. since these urls are dead anyway, u can create a dns rule in azure firewall to straight up drop requests to *.ame.gbl
and *.fx.internal.cloudapp.net
. here’s microsoft’s doc on azure firewall dns settings to help u out.
Disable cert revocation checks (careful with this one!). if ur apps don’t rely on strict cert checks, u could tweak the underlying nodes to skip crl lookups. but this is kinda nuclear only do it if u know what ur sacrificing security-wise. but fair warning, this might not apply cleanly to container apps.
check if ur workload profiles need updating. since ur using dedicated profiles, maybe there’s a config hiccup. peep the container apps networking docs to see if something’s misaligned.
honestly, blocking at firewall is the cleanest fix. those crl urls are ghosts of the past, and stopping the queries will shut sentinel up ;)) let me know if u hit snags.
Best regards,
Alex
and "yes" if you would follow me at Q&A - personaly thx.
P.S. If my answer help to you, please Accept my answer
PPS That is my Answer and not a Comment