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.0nolipineda
Altostratus
Aug 27, 2015Here's an update for v11.
when RULE_INIT {
set sec_http_versions [list "0.9" "1.0" "1.1" ]
}
when HTTP_REQUEST {
if { ! [matchclass [HTTP::version] equals $::sec_http_versions ] } {
reject
}
}