python寫乙個incaseformat檢測工具

2021-10-16 09:39:27 字數 1071 閱讀 7741

1.13日爆發的incaseformat病毒會在對應的系統時間觸發攻擊行為,能在短時間內刪除除了系統盤之外的所有檔案。據研究人員稱該病毒會在1.23再次爆發,小r根據該病毒生成特點製作了乙個簡單的檢測工具。

程式設計環境:python3.7

from tkinter import

*import os.path

win=tk(

)win.title(

'incaseformat_chacker'

)win.geometry(

'450x50'

)l = label()t=

''def

check()

: virus_file1=os.path.exists(

'c:\windows\\tsay.exe'

) virus_file2 = os.path.exists(

'c:\windows\\ttry.exe')if

(virus_file1)

: t=

'存在tsay.exe,建議使用防毒軟體進行全盤查殺。'

elif

(virus_file2)

: t=

'存在tsay.exe,建議使用防毒軟體進行全盤查殺。'

else

: t=

'未檢測出疑似檔案。'

l = label(text=t)

l.place(x=

160, y=13)

btn=button(win,text=

'click me'

,command=check)

btn.place(x=

10,y=10)

l1=label(text=

'檢測結果:'

)l1.place(x=

100,y=13)

mainloop(

)

提取碼:scp3

若檢測到incaseformat感染特徵,應及時進行查殺,切勿未查殺重啟系統,可能觸發病毒的攻擊行為。

python寫乙個服務 Python寫乙個服務

coding utf 8 import json from urllib.parse import parse qs from wsgiref.server import make server 定義函式,引數是函式的兩個引數,都是python本身定義的,預設就行了。定義檔案請求的型別和當前請求成功...

Python 寫乙個Web服務

寫乙個簡單的python服務,可以通過http請求訪問該服務。coding utf 8 import socket 匯入socket包 multiprocessing包是python中的多程序管理包 在 multiprocessing 中,通過建立 process 物件然後呼叫其 start 方法來...

用python寫乙個restful API

coding utf 8 package.module python實現的圖書的乙個restful api.restful api 一般模式 get select 從伺服器取出資源 一項或多項 post create 在伺服器新建乙個資源。put update 在伺服器更新資源 客戶端提供改變後的完...