Forum Discussion
Nik_67256
Nimbostratus
Feb 06, 2013Scan Vulnerabilities & irules
Hello All,
1) Is there a general consensus that specific types of application vulnerabilities identified through a scan can be patched/mitigated temporarily with the use of irules ...
What_Lies_Bene1
Cirrostratus
Feb 07, 2013There's quite a few, I've listed a few simple examples below. Is there something specific you have in mind?
Restrict HTTP Methods
when HTTP_REQUEST {
switch [HTTP::method] {
Exit if method is GET
"GET" { return }
Exit if method is POST
"POST" { return }
Reject any other request methods
default { reject }
}
}
Mitigate Code Red & Nimda
when HTTP_REQUEST {
set requri [string tolower [HTTP::uri]]
switch –glob $requri {
"*default.ida*" –
"*cmd.exe*" –
"*root.exe*" –
"*admin.dll*" {
Drop the request silently
drop }
}
}
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects