Forum Discussion
Aantat
Cirrus
Jan 13, 2023Send Attackers IP to another system via API
Hi experts! I'm newbie here and I need your help. I have a task to send Attackers IP to another system via API. For example I've a ASM and there are some triggered violation. I want to send that Att...
Josiah_39459
Mar 28, 2016Historic F5 Account
Yes, easily. Just add a conditional around this part:
log local0. $LogString
log local0. "[lindex $params 0] : [lindex $params 1]"
Like
if { [lindex $params 0] eq 'txtLogin' or [lindex $params 0] eq 'gpnEnviarPor' } {
log local0. $LogString
log local0. "[lindex $params 0] : [lindex $params 1]"
}
Rafael_255098
Nimbostratus
Mar 28, 2016Thanks Josiah, it works well, but I need to log all information (header and payload) in a single line. Do you know any way to do this?