For more information regarding the security incident at F5, the actions we are taking to address it, and our ongoing efforts to protect our customers, click here.

Forum Discussion

3 Replies

  • You can always do a redirect to a page of your choice using an iRule. I would suggest to do it on the HTTP_RESPONSE event. You will need to look for the /vdesk/hangup.php3 page in the HTTP_REQUEST and set a flag for the response to send to a different page.

     

    Hope this helps you get in the right direction.

     

    Seth

     

  • Hi, Something like this might help you out.

    when HTTP_REQUEST {
      if {[HTTP::uri] contains "/vdesk/hangup.php3" }{
        set logoff 1
      } else {
        set logoff 0
      }
    }
    
    when HTTP_RESPONSE {
      if { $logoff == 1 }{
        HTTP::redirect https://new.redirect.com
      }
    }