-
Notifications
You must be signed in to change notification settings - Fork 732
Command substitution backquoted version support #896
Conversation
That is, rule 932130 should now match `foo` as well.
|
I purposely left the backquote out of this rule because of a lot of false positives in my test data (it seems that many people use it as quotes, but this was also due to Markdown syntax usage) and would recommend including it only in a higher paranoia level, maybe PL3 or PL2? |
|
Right, didn't think about Markdown 😞 |
|
My gut feeling would say PL3, since it is quite strong (will block any request that contains two or more ` chars which is not that rare) but let's wait for other opinions! |
|
if we did ARGS_GET instead of ARGS i feel like this would be a really strong rule |
I was thinking around those lines - exclude the body but run it everywhere else. |
|
I like the idea of scanning |
|
OK, I will work on that and update this PR. Thanks for the input. |
|
Any progress here @fgsch? |
|
@dune73 I'm afraid not, been busy. I will get back to this next week. |
|
There is now a conflict in this PR. Likely due to merging older v3.0 commits with 3.1. |
|
Any progress here @fgsch? |
|
We are still ready to accept this, if the PR is unconflicted (or started again) and only scans |
|
I do plan to work on this over xmas but if someone has more bandwidth by all means! |
|
This has been pending for quite some time, @fgsch? Any plans to return to it? |
|
Yes, keep planning to, sorry. RL is keeping me busy. |
That is, rule 932130 should now match
fooas well.