Posts Tagged: virus clean

Cleaning Commands Linux CentOS
How To Check for Virus / Malware Script in Server / WordPress Site
May 25, 2020
0
,
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 […]