Mar 27, 2026 - For details about updated CVE-2025-53521 (BIG-IP APM vulnerability), refer to K000156741.

Forum Discussion

ralph_ralf's avatar
ralph_ralf
Icon for Altostratus rankAltostratus
3 years ago
Solved

condition irule OR not working

Can somebody help on this. the first irule is working perfectly but when adding OR condition it is not (not working section) . this is working: ---------------------- when HTTP_REQUEST { if { (([...
  • Enes_Afsin_Al's avatar
    3 years ago

    Hi ralph_ralf,

    You should use "and" instead of "or" to block requests except these two uri.

    when HTTP_REQUEST {
    	if { [IP::client_addr] equals "172.16.37.16" && [HTTP::uri] ne "/evs/ent.msg.evs.ext.Notification_1.0" && [HTTP::uri] ne "/evs/ent.msg.evs.ext.Notification_1.0?wsdl" } {
    		reject
    	}
    }