[Python][自己写的杀病毒脚本]

电脑里的HTML都插入了一段VB病毒代码..只能自己手动清除了..发现Python确实好用

import os
import re;

Root = ["H:"];
for root in Root:
    for rt, dirs, files in os.walk(root):
        for f in files:
            fname = os.path.splitext(f)
            if fname[1]=='.html' : 

                fileString=rt+'\\'+f
                print(fileString)
                htmlfile=open(fileString,"r+");
                Filecontent=htmlfile.read();
                Filecontent=str(Filecontent);
                NewFilecontent=re.sub("<SCRIPT Language=VBScript>[\s\S]*","",Filecontent);
                htmlfile.close();
                htmlfile=open(fileString,"w+");
                htmlfile.write(NewFilecontent);
                htmlfile.close();

posted on 2016-04-02 16:43  DDUPzy  阅读(476)  评论(0编辑  收藏  举报

导航