Vulnerabilities > CVE-2004-1666 - Remote Buffer Overflow vulnerability in Cerulean Studios Trillian 0.74I

047910
CVSS 7.5 - HIGH
Attack vector
NETWORK
Attack complexity
LOW
Privileges required
NONE
Confidentiality impact
PARTIAL
Integrity impact
PARTIAL
Availability impact
PARTIAL
network
low complexity
cerulean-studios
nessus
exploit available

Summary

Buffer overflow in the MSN module in Trillian 0.74i allows remote MSN servers to execute arbitrary code via a long string that ends in a newline character.

Vulnerable Configurations

Part Description Count
Application
Cerulean_Studios
1

Exploit-Db

descriptionTrillian 0.74i Remote Buffer Overflow Exploit (MSN Module Bug). CVE-2004-1666. Remote exploit for windows platform
idEDB-ID:435
last seen2016-01-31
modified2004-09-08
published2004-09-08
reporterKomrade
sourcehttps://www.exploit-db.com/download/435/
titleTrillian 0.74i Remote Buffer Overflow Exploit MSN Module Bug

Nessus

NASL familyWindows
NASL idTRILLIAN_MSN_OVERFLOW.NASL
descriptionTrillian is a Peer2Peer client that allows users to chat and share files with other users across the world. A bug has been reported in the MSN portion of Trillian. A remote attacker, exploiting this flaw, would be potentially able to execute code on the client system running Trillian.
last seen2020-06-01
modified2020-06-02
plugin id14686
published2004-09-08
reporterThis script is Copyright (C) 2004-2018 Tenable Network Security, Inc.
sourcehttps://www.tenable.com/plugins/nessus/14686
titleTrillian MSN Overflow
code
#
# (C) Tenable Network Security, Inc.
#

include("compat.inc");

if(description)
{
 script_id(14686);
 script_version("1.13");

 script_cve_id("CVE-2004-1666");
 script_bugtraq_id(11142);

 name["english"] = "Trillian MSN Overflow";
 script_name(english:name["english"]);
 
 script_set_attribute(attribute:"synopsis", value:
"The remote host has an application that is affected by a 
buffer overflow vulnerability." );
 script_set_attribute(attribute:"description", value:
"Trillian is a Peer2Peer client that allows users to chat and 
share files with other users across the world.  A bug has been 
reported in the MSN portion of Trillian.  

A remote attacker, exploiting this flaw, would be potentially 
able to execute code on the client system running Trillian." );
 script_set_attribute(attribute:"solution", value:
"Upgrade to Trillian 0.74 patch J (or higher)." );
 script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P");
 script_set_cvss_temporal_vector("CVSS2#E:POC/RL:OF/RC:C");
 script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
 script_set_attribute(attribute:"exploit_available", value:"true");
 script_set_attribute(attribute:"plugin_publication_date", value: "2004/09/08");
 script_set_attribute(attribute:"vuln_publication_date", value: "2004/09/08");
 script_cvs_date("Date: 2018/08/01 17:36:15");
 script_set_attribute(attribute:"plugin_type", value:"local");
 script_set_attribute(attribute:"cpe", value:"cpe:/a:trillian:trillian");
 script_end_attributes();
 
 summary["english"] = "Determines the version of Trillian.exe";
 script_summary(english:summary["english"]);
 
 script_category(ACT_GATHER_INFO);
 
 script_copyright(english:"This script is Copyright (C) 2004-2018 Tenable Network Security, Inc.");
 family["english"] = "Windows";
 script_family(english:family["english"]);
 
 script_dependencies("trillian_patchg.nasl");
 script_require_keys("Host/Windows/Trillian/Version");
 exit(0);
}


version = get_kb_item("Host/Windows/Trillian/Version");

if (egrep(string:version, pattern:"v0\.7[1-4].*")) {
    if (! egrep(string:version, pattern:"\(w/ Patch [J-Z]\)")) security_hole(get_kb_item("SMB/transport"));
}