Lucene search
K

Cybozu Office Authentication Bypass Vulnerability (Linux)

🗓️ 01 Jun 2010 00:00:00Reported by Copyright (C) 2010 SecPodType 
openvas
 openvas
🔗 plugins.openvas.org👁 28 Views

Cybozu Office Authentication Bypass Vulnerability (Linux) allows remote attackers to bypass authentication and obtain or modify sensitive information by using the unique ID of the 'user&qts' cell phone. Affected versions: Cybozu Office version before 8 (8.1.0.1). The flaw exists due to insufficient checks being performed when accessing the 'login' interface

Related
Refs
Code
###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_cybozu_office_auth_bypass_vuln_lin.nasl 7823 2017-11-20 08:54:04Z cfischer $
#
# Cybozu Office Authentication Bypass Vulnerability (Linux)
#
# Authors:
# Madhuri D <[email protected]>
#
# Copyright:
# Copyright (c) 2010 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_impact = "Successful exploitation will allow remote attackers to bypass authentication
  and obtain or modify sensitive information by using the unique ID of the
  'user&qts' cell phone.
  Impact Level: Application.";
tag_affected = "Cybozu Office version before 8 (8.1.0.1)";

tag_insight = "The flaw exists due to insufficient checks being performed when accessing
  the 'login' interface.";
tag_solution = "Cybozu Office 8 (8.1.0.1)
  For updates refer to http://products.cybozu.co.jp/office";
tag_summary = "This host is installed with Cybozu Office and is prone to
  authentication bypass vulnerability.";

if(description)
{
  script_id(902065);
  script_version("$Revision: 7823 $");
  script_tag(name:"last_modification", value:"$Date: 2017-11-20 09:54:04 +0100 (Mon, 20 Nov 2017) $");
  script_tag(name:"creation_date", value:"2010-06-01 15:40:11 +0200 (Tue, 01 Jun 2010)");
  script_cve_id("CVE-2010-2029");
  script_tag(name:"cvss_base", value:"5.8");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:P/I:P/A:N");
  script_name("Cybozu Office Authentication Bypass Vulnerability (Linux)");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/39508");
  script_xref(name : "URL" , value : "http://xforce.iss.net/xforce/xfdb/57976");
  script_xref(name : "URL" , value : "http://jvn.jp/en/jp/JVN87730223/index.html");
  script_xref(name : "URL" , value : "http://www.ipa.go.jp/security/english/vuln/201004_cybozu_en.html");

  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2010 SecPod");
  script_family("General");
  script_dependencies("gather-package-list.nasl");
  script_mandatory_keys("login/SSH/success");
  script_exclude_keys("ssh/no_linux_shell");

  script_tag(name : "insight" , value : tag_insight);
  script_tag(name : "solution" , value : tag_solution);
  script_tag(name : "summary" , value : tag_summary);
  script_tag(name : "impact" , value : tag_impact);
  script_tag(name : "affected" , value : tag_affected);
  script_tag(name:"qod_type", value:"executable_version");
  script_tag(name:"solution_type", value:"VendorFix");
  exit(0);
}


include("ssh_func.inc");
include("version_func.inc");

## Checking OS
sock = ssh_login_or_reuse_connection();
if(!sock){
  exit(0);
}

cbofName = find_file(file_name:"sched", file_path:"/", useregex:TRUE,
                     regexpar:"$", sock:sock);

foreach binaryName (cbofName)
{
  binaryName = chomp(binaryName);

  ## Grep for the version
  cbofVer = get_bin_version(full_prog_name:binaryName, sock:sock,
                           version_argv:"--version",
                           ver_pattern:"Cybozu_Scheduling_Service ([0-9.]+)");
  
  ## Check for the Cybozu office version <= 8 (8.1.0.1)
  if(cbofVer[1] != NULL)
  {
    ## Check for the Cybozu office version <= 8 (8.1.0.1)
    if(version_is_less(version:cbofVer[1], test_version:"8.1.0.1")){
      security_message(0);
    }
  }
}
close(sock);
ssh_close_connection();

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