I am trying to run a command (find) for example that would allow me to find all the php files in which content there are strings with more than 50 characters.
I have a base that looks like this, but I fail what to write in the grep:
sudo find . -name '.*php' -exec fgrep -q '..' {} \; -print
I assume that a thing that is not a character is a whitespace. Basically I am trying to find PHP files that might have been compromisde with huge chunks of encoded64 strings.