Tip: Find String in PHP Files

Helpful for finding strings in PHP files:

find . -type f -name '*.php' -print0 | xargs -0 grep 'shell_exec'