Skip to content

Instantly share code, notes, and snippets.

@coolacid
Created September 14, 2013 00:32
Show Gist options
  • Save coolacid/6557708 to your computer and use it in GitHub Desktop.
Save coolacid/6557708 to your computer and use it in GitHub Desktop.
Remove eval(base64_decode in php files..
for file in $(grep eval\(base64_decode -lir www); do
sed -i 's/eval(base64_decode(.*));//' $file;
done;
@coolacid
Copy link
Author

Should change www to directory you want to look at

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment