Created
September 23, 2014 01:56
-
-
Save dbspringer/916ecdf783f8e5087422 to your computer and use it in GitHub Desktop.
Recurse through directories looking for bad functions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
dir="." | |
if [ $1 ]; then dir=$1; fi | |
bad_funcs="exec system passthru shell_exec escapeshellarg escapeshellcmd proc_close proc_open dl popen show_source ini_set" | |
for func in $bad_funcs | |
do | |
grep -R --include=*.php $func $dir | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Takes in base path or assumes '.'