マルウェアの js コードを見つけて削除するための最初のサーバー スクリプトを作成していますが、既存のファイルを最後ではなく最初から書き換える簡単な方法が見つかりません。
# -*- coding: utf-8 -*-
import os
import re
import codecs
for dirname, dirnames, filenames in os.walk('.'):
for filename in filenames:
f = open(os.path.join(dirname, filename), 'r+b')
text=f.read()
if re.search('function g\(\).*\n.*\<script src=\"http://linkfooter.org/linkfooter.js\"></script>\'\);}', text) and os.path.join(filename) != "bezr.py":
print "starting with " + os.path.join(filename)
match = re.compile('function g\(\).*\n.*\<script src=\"http://linkfooter.org/linkfooter.js\"></script>\'\);}')
s = match.sub('', text)
f.write(s)
f.close()
#else:
#print "in " + os.path.join(dirname, filename) + " none"
#f.close()