Check Recently Modified Files in Server Login to server through SSH, run the below commands to find out which scripts have been uploaded recently $ cd /home/public_html/$ find ./ -type f -mtime -15 (this code checks all files that has been uploaded / modified in last 15 days) $ find /etc -type f -printf ‘%TY-%Tm-%Td […]