Skip to content

Latest commit

 

History

History

linux-find-command

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Linux Find Command

Problem

During a routine security audit, the team identified an issue on the Nautilus App Server. Some malicious content was identified within the website code. After digging into the issue they found that there might be more infected files. Before doing a cleanup they would like to find all similar files and copy them to a safe location for further investigation. Accomplish the task as per the following requirements:

a. On App Server 3 at location /var/www/html/media find out all files (not directories) having .php extension.

b. Copy all those files along with their parent directory structure to location /media on same server.

c. Please make sure not to copy the entire /var/www/html/media directory content.

Debugging

Solution