allow
3 TopicsBIG-IP 17.0 ASM Cookie based allow requests
Is it possible to allow requests through the ASM if the client sending the request has a unique cookie with a particular value? I want to whitelist these requests based on this cookie. If this is possible would someone please share with me how this is accomplished?Solved1.2KViews0likes1CommentiRule to selectively allow limited access by client IP
I have an application which is internet accessible but the application team has asked me to limit access to specific URIs based upon client ip. I just cannot seem to get the logic right. I am using the default data group private_net and a second string data group called allowed-uri-list which lists the allowed URIs for Internet users. when HTTP_REQUEST { if { {[class match [IP::client_addr] eq private_net ]} } { # allow access }elseif { {[class match [HTTP::uri] equals allowed-uri-list ]}} { #allow access } else { HTTP::respond 404 } } I keep getting http errors for no response and the tcl engine doesn't like my first if. What am I doing wrong?318Views0likes2CommentsGeoblock exception based on user agent
Hi, We have Geo-blocking enabled for one of our apps and want to allow access from a third party tool that has a very specific user agent. Is it possible to allow requests from a geo blocked location when the user agent matches a particular string? Thank you.317Views0likes1Comment