Lucene search

K

CMailServer Version Detection

🗓️ 20 Aug 2009 00:00:00Reported by Copyright (C) 2009 SecPodType 
openvas
 openvas
🔗 plugins.openvas.org👁 4 Views

CMailServer Version Detection script detects the installed CMailServer version and sets the result in KB

Show more

AI Insights are available for you today

Leverage the power of AI to quickly understand vulnerabilities, impacts, and exploitability

Code
###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_cmailserver_detect.nasl 7076 2017-09-07 11:53:47Z teissa $
#
# CMailServer Version Detection
#
# Authors:
# Nikita MR <[email protected]>
#
# Copyright:
# Copyright (c) 2009 SecPod, http://www.secpod.com
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# (or any later version), as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
##############################################################################

tag_summary = "The script detects the installed version of CMailServer and sets
  the result in KB.";

if(description)
{
  script_id(900917);
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:N");
 script_version("$Revision: 7076 $");
  script_tag(name:"last_modification", value:"$Date: 2017-09-07 13:53:47 +0200 (Thu, 07 Sep 2017) $");
  script_tag(name:"creation_date", value:"2009-08-20 09:27:17 +0200 (Thu, 20 Aug 2009)");
  script_tag(name:"cvss_base", value:"0.0");
  script_name("CMailServer Version Detection");
  script_category(ACT_GATHER_INFO);
  script_tag(name:"qod_type", value:"remote_banner");
  script_copyright("Copyright (C) 2009 SecPod");
  script_family("Service detection");
  script_dependencies("find_service.nasl");
  script_require_ports("Services/smtp", 25);
  script_tag(name : "summary" , value : tag_summary);
  exit(0);
}


include("smtp_func.inc");
include("cpe.inc");
include("host_details.inc");

## Constant values
SCRIPT_OID  = "1.3.6.1.4.1.25623.1.0.900917";
SCRIPT_DESC = "CMailServer Version Detection";

smtpPort = get_kb_item("Services/smtp");
if(!smtpPort){
  smtpPort = 25;
}

imapPort = get_kb_item("Services/imap");
if(!imapPort){
  imapPort = 143;
}

popPort = get_kb_item("Services/pop3");
if(!popPort){
  popPort = 110;
}

foreach port (make_list(smtpPort, imapPort, popPort))
{
  banner = get_kb_item(string("Banner/", port));
  if((banner != NULL) && ("CMailServer" >< banner))
  {
    cmailVer = eregmatch(pattern:"CMailServer ([0-9.]+)", string:banner);
    if(cmailVer[1] != NULL)
    {
      set_kb_item(name:"CMailServer/Ver", value:cmailVer[1]);
      log_message(data:"CMailServer version " + cmailVer[1] +
                                               " was detected on the host");
    
      ## build cpe and store it as host_detail
      cpe = build_cpe(value:cmailVer[1], exp:"^([0-9.]+)", base:"cpe:/a:youngzsoft:cmailserver:");
      if(!isnull(cpe))
         register_host_detail(name:"App", value:cpe, nvt:SCRIPT_OID, desc:SCRIPT_DESC);

      exit(0);
    }
  }
}

Transform Your Security Services

Elevate your offerings with Vulners' advanced Vulnerability Intelligence. Contact us for a demo and discover the difference comprehensive, actionable intelligence can make in your security strategy.

Book a live demo
20 Aug 2009 00:00Current
0.2Low risk
Vulners AI Score0.2
4
.json
Report