本文介绍了VB脚本代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述




如何使用VBScript编写逻辑炸弹?

仅用于教育目的.

谢谢 !! :doh::doh::doh:

Hay ,


How to write a logic bomb using VBScript ??

Only for education purposes .

Thanks !! :doh: :doh: :doh:

推荐答案

If Date = CDate("3/28/2011") Then MsgBox "Hey, fooled ya!"



现在,任何在2011年3月28日运行它的人都会看到该恶意消息.在所有其他日子里,这种巧妙的逻辑炸弹将绝对保持秘密.



Now anyone running it on March 28, 2011 will see that nefarious message. On all other days this ingenious logic bomb will remain absolutely clandestine.



public void GoBoom()
 {
     decimal x = 1.0M;
     decimal y = 0M;
     decimal z = x / y;
 }


这篇关于VB脚本代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-09 06:29