简体   繁体   中英

Find and Replace Shell Commands

I have a wordpress installation that is infected.. Mostly theme files and plugin files..

I need 3 commands and i will be using putty:

1- inside root and recursive sub-directories folders change all 200 permissions to 644 (for some reason every time i change this manually it come back to 200 after a minute)

2- inside root and recursive sub-directories folders to replace content of index.php

with:

3- delete all php.ini files inside root and recursive sub-directories folders.

0 Backup!

1 If permission change every minute, probably you have a script that run every minute... in any case

 find . -type d -exec chmod 755 {} \; // for directories
 find . -type f -exec chmod 644 {} \; // for files

2 You have to use sed or somethings similar, according to string to replace.

3

 find . -iname "php.ini" -exec rm -fv {} \;

4 Call an expert and find how your wordpress installation has been hacked.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM