File: //proc/thread-self/root/proc/self/root/usr/local/modsecurity-crs/regex-assembly/932231.ra
##! Please refer to the documentation at
##! https://coreruleset.org/docs/development/regex_assembly/.
##! Word list for rule 932231 (RCE Unix command injection part 3/4)
##!
##! To prevent some FP for a command, you can require command parameters
##! after a command. Only do this if the command regularly causes FP and if
##! allowing the bare command (without parameters) is not too dangerous.
##! (Note: due to \b following the regexp, a word boundary is also required
##! further on, so some letter/number is needed for a match). Example:
##!
##! diff+
##! Special regexp case for the '.' (source) command to prevent FP:
##!> assemble
##!> include unix-shell-evasion-prefix
\.\s.*\b
##!<