最近、Webサイトを見ただけで、マルウェアに感染するケースが流行ってますね。。
とりあえず、ヤバいと言われているURLへブラウザ(IE)でアクセスして調査してみよう。。URLが2000くらいあるから、Pythonで自動巡回。
import time
import win32com.client
ie=win32com.client.Dispatch("InternetExplorer.Application")
ie.Visible=1
f = open("maliciousurls.txt")
for line in f:
ie.Navigate(line)
time.sleep(10)