Forum Discussion
Grandiser
Nimbostratus
Feb 08, 2024I need an ASM i-rule that drops the connection upon the occurrence of a violation.
Hi; I need an ASM i-rule that drops the connection upon the occurance of a violation. I don't want to present the default "Blocking response page" to the user, but rather drop the TCP connection....
Jeff_Granieri
Employee
Feb 12, 2024something like this might work.
when ASM_REQUEST_VIOLATION {
# When a request violation occurs, drop the TCP connection
drop
}
when ASM_RESPONSE_VIOLATION {
# When a response violation occurs, drop the TCP connection
drop
}