iRule Security 101 - #01 - HTTP Version
When looking at securing up your web application, there are a set of fairly standard attack patterns that application firewalls make use of to protect against those bad guys out there who are tryin...
Published Aug 13, 2007
Version 1.0KC_1054
Nimbostratus
May 31, 2012We've had issues applying this on v11 systems.
01070151:3: Rule [/Common/Lab6aa] error: Unable to find value_list (http) referenced at line 5: [matchclass [HTTP::version] equals $::http]
with this iRule
when RULE_INIT {
set value [list "0.9" "1.0" "1.1" ]
}
when HTTP_REQUEST {
if { ! [matchclass [HTTP::version] equals $::value ] } {
reject
}
}