python蠕虫实现

rc.py

from tkinter import messagebox
messagebox.showerror(“被蠕虫劫持”)

蠕虫.py

from threading import Thread as tt
from os import *
def rr():
system(“rc.py”)
for i in range(100):
exec(“x”+str(i)+"=tt(target=rr)")
exec(“x”+str(i)+".start()")

猜你喜欢

转载自blog.csdn.net/bianchengxueseng/article/details/120728157