/ Published in: Bash
In this example, find all files with a .js extension containing the text string "H3qqea3ur6p", the result of a nasty trojan infection.
Expand |
Embed | Plain Text
find / -name "*.js" -exec grep -Hn H3qqea3ur6p {} \;
You need to login to post a comment.
