自己寫的一個殺system.dll和autorun的一個批處理

前幾天我的那個啥到朋友的機器copy了一點東西

回到俺的機器上以後發現我的盤下面有n個新文件..汗..

主要是那天忘了帶俺的本本 於是就動手寫了一個殺這個毒的小的批處理

還建立了一個免殺的文件夾

給大家說下里面的意思

 

第一句是把毒的文件 也就是這個毒的核心system.dll去掉那些原來的屬性 s 代表system

第二句就是把那個文件給k掉了 del刪除文件 /f 強制 /q

md建立一個文件夾 就是先佔了這個地兒

attrib system.dll -s -h -r
del system.dll /f /q
md "system.dll"
attrib "system.dll" +s +h +r
attrib autorun.inf -s -h -r
del autorun.inf /f /q
md "autorun.inf"
attrib "autorun.inf" +s +h +r
cd "autorun.inf"
md v
attrib v +s +h +r
md s
attrib s +s +h +r
md k
attrib k +s +h +r

echo this bat by vsk 殺毒免疫成功

pause

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章