Forum Moderators: phranque
My linux site site has been hacked through GoDaddy. I need to get rid of the malware files. What I'm trying to do is to see if I there is a program that could list all of the files that i have in my web directory, so i can sort by last modified date. In FTP this is difficult due to the multiple folders.
Any easy way to get this done.....?
Then try this:
->ls -r -I -t
just so you know what is happening
ls (list directory contents)
-r (recursively list sub-directories)
-I (give detailed listing)
-t (sort by last modified)
This should list everything.
Some linux versions have subtle differences, it might be uppercase R instead of lowercase, or the I could be an i
If you do this
->ls --help
It will list all the ls arguments that you pass in.
Post back if you have questions or get stuck.