27-Nov-2020 22:20
My BigIP device is running on v16.0.1
I setup an ASM Policy and mapping many Attack Signature Sets included Command Execution.
I try to test with some of testcases. Such as:
All of testcases are allowed access without blocking.
ASM Policy is blocking mode, All Attack Signature are Enforce (not stagging). I see just only Command Execution is not working, the other Signature Sets are running well.
Solved! Go to Solution.
29-Nov-2020
16:56
- last edited on
04-Jun-2023
21:10
by
JimmyPackets
Those won't trigger the relevant signatures - you either need some sort of escape character (` ; etc) to break the string handling or use a full path (/bin/ls, /sbin/ls)
https://mydomain.com/product?test=/bin/ls /var/log
https://mydomain.com/product?test=/sbin/pwd
https://mydomain.com/product?test=`tail /etc/passwd
29-Nov-2020
16:56
- last edited on
04-Jun-2023
21:10
by
JimmyPackets
Those won't trigger the relevant signatures - you either need some sort of escape character (` ; etc) to break the string handling or use a full path (/bin/ls, /sbin/ls)
https://mydomain.com/product?test=/bin/ls /var/log
https://mydomain.com/product?test=/sbin/pwd
https://mydomain.com/product?test=`tail /etc/passwd
29-Nov-2020 20:05
You are right.
Escape character ( ` ) make ASM recognize Command Execution Attack.
Thanks so much.