1 . write all the suspect words in a text file, each word on a single line
suspect_words.txt
error_reporting(0)
http_response_code(
Darknet
xploit
Mamank
@copy
base64_
eval(
ip()
POST\[
_halt_
2. run the following command
grep -rnw '.' -f ./suspect_words.txt
or extended solution to output yout results to a file
grep -rnwi '.' -f ./suspect_words.txt --exclude=*temp.txt | cut -c -400 >./temp.txt