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

Forum Discussion

4 Replies

  • oguzy's avatar
    oguzy
    Icon for Cirrostratus rankCirrostratus

    Hi Rodrigo,

    When you try to create this irule, you should get an error like [undefined procedure: HTTP][HTTP :: path]. The same issue happens also for HTTP :: redirect. You just discard the blanks after and before colons, then it should work.

    when HTTP_REQUEST {  
       if {[HTTP::path] eq "/"} {     
          HTTP::redirect "http://app1example.com/example/url.pl";   
       }
    }
    
  • Hi Rodrigo,

    When you try to create this irule, you should get an error like [undefined procedure: HTTP][HTTP :: path]. The same issue happens also for HTTP :: redirect. You just discard the blanks after and before colons, then it should work.

    when HTTP_REQUEST {  
       if {[HTTP::path] eq "/"} {     
          HTTP::redirect "http://app1example.com/example/url.pl";   
       }
    }