Skip to content

Instantly share code, notes, and snippets.

@Nav-Appaiya
Created February 15, 2022 23:28
Show Gist options
  • Select an option

  • Save Nav-Appaiya/249c74d0bc0930f1d5bc726b8af02fb5 to your computer and use it in GitHub Desktop.

Select an option

Save Nav-Appaiya/249c74d0bc0930f1d5bc726b8af02fb5 to your computer and use it in GitHub Desktop.
Search for newly created files of the last 3 days
3) Search for newly created files in your hosting account
If you have multiple sites residing in the same account, you better search the whole account instead just your hacked website directory.
You could try searching with find for files added in the last few days:
# This will search for files modified in the last 3 days.
find . -type f -mtime +3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment