Lucene search
+L

Qpopper Authentication Timing Response Account Enumeration

🗓️ 16 Jun 2004 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 17 Views

Qpopper server allows username enumeration due to outdated software version vulnerability.

Code
#
# This script is based on Thomas Reinke's qpopper2.nasl
# Modified by Scott Shebby [email protected]
#

# Changes by Tenable:
# - Revised plugin title, output formatting (8/6/09)


include("compat.inc");

if(description)
{
 script_id(12279);
 script_version ("1.19");
 script_bugtraq_id(7110);

 script_name(english:"Qpopper Authentication Timing Response Account Enumeration");

 script_set_attribute(attribute:"synopsis", value:
"The remote mail server is affected by an account enumeration
vulnerability." );
 script_set_attribute(attribute:"description", value:
"The remote server appears to be running a version of Qpopper that is
older than 4.0.6.

Versions older than 4.0.6 are vulnerable to a bug where remote 
attackers can enumerate valid usernames based on server responses 
during the authentication process." );
 script_set_attribute(attribute:"solution", value:
"There is no known solution at this time." );
 script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:N/A:N");
 script_set_cvss_temporal_vector("CVSS2#E:U/RL:U/RC:C");
 script_set_attribute(attribute:"exploitability_ease", value:"No exploit is required");
 script_set_attribute(attribute:"exploit_available", value:"true");

 script_set_attribute(attribute:"plugin_publication_date", value: "2004/06/16");
 script_set_attribute(attribute:"vuln_publication_date", value: "2003/06/18");
 script_cvs_date("Date: 2018/08/08 12:52:14");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_end_attributes();


 script_summary(english:"Qpopper Username Information Disclosure");
 script_category(ACT_GATHER_INFO);
 script_copyright(english:"This script is Copyright (C) 2004-2018 Scott Shebby");
 script_family(english:"Misc.");
 script_dependencie("find_service1.nasl");
 script_require_ports("Services/pop3", 110);
 exit(0);
}

#
# The script code starts here
#

port = get_kb_item("Services/pop3");
if(!port)port = 110;

banner = get_kb_item(string("pop3/banner/", port));
if(!banner){
    if(get_port_state(port)){
        soc = open_sock_tcp(port);
        if(!soc)exit(0);
        banner = recv_line(socket:soc, length:4096);
    }
}

if(banner){
    if(ereg(pattern:".*Qpopper.*version ([0-3]\..*|4\.0\.[0-5][^0-9]).*", string:banner, icase:TRUE)){
        security_warning(port);
    }
}

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

08 Aug 2018 12:52Current
5.5Medium risk
Vulners AI Score5.5
17