| Reporter | Title | Published | Views | Family All 6 |
|---|---|---|---|---|
| CVE-2011-0650 | 28 Jan 201115:00 | – | cve | |
| CVE-2011-0650 | 28 Jan 201115:00 | – | cvelist | |
| EUVD-2011-0668 | 7 Oct 202500:30 | – | euvd | |
| CVE-2011-0650 | 28 Jan 201116:00 | – | nvd | |
| Greenbone Security Assistant < 2.0.0 CSRF Vulnerability | 13 Apr 201100:00 | – | openvas | |
| Cross site request forgery (csrf) | 28 Jan 201116:00 | – | prion |
| Source | Link |
|---|---|
| securityfocus | www.securityfocus.com/archive/1/archive/1/515971/100/0/threaded |
| openvas | www.openvas.org/OVSA20110118.html |
| secunia | www.secunia.com/advisories/43092 |
| xforce | www.xforce.iss.net/xforce/xfdb/65012 |
###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_greenbone_gsa_csrf_vuln.nasl 3112 2016-04-19 08:52:10Z antu123 $
#
# Greenbone Security Assistant Cross-Site Request Forgery Vulnerability
#
# Authors:
# Antu Sanadi <[email protected]>
#
# Copyright (c) 2011 Greenbone Networks GmbH, http://www.greenbone.net
#
# 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 attacker to conduct cross-site
request forgery attacks.";
tag_affected = "Greenbone Security Assistant version 1.0.3 and prior.";
tag_insight = "The application allows users to perform certain actions via HTTP
requests without performing any validity checks to verify the requests. This
can be exploited to execute arbitrary commands in OpenVAS Manager by tricking
a logged in administrative user into visiting a malicious web site.";
tag_solution = "Apply the patch from the below link or upgrade to latest version,
http://wald.intevation.org/frs/download.php/829/openvas-manager-1.0.4.tar.gz,
For updates refer to http://www.openvas.org";
tag_summary = "This host is installed with Greenbone Security Assistant and is
prone to cross-site request forgery vulnerability.";
if(description)
{
script_id(801919);
script_version("$Revision: 3112 $");
script_tag(name:"last_modification", value:"$Date: 2016-04-19 10:52:10 +0200 (Tue, 19 Apr 2016) $");
script_tag(name:"creation_date", value:"2011-04-13 15:50:09 +0200 (Wed, 13 Apr 2011)");
script_cve_id("CVE-2011-0650");
script_tag(name:"cvss_base", value:"6.8");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:P/I:P/A:P");
script_name("Greenbone Security Assistant Cross-Site Request Forgery Vulnerability");
script_xref(name : "URL" , value : "http://secunia.com/advisories/43092");
script_xref(name : "URL" , value : "http://xforce.iss.net/xforce/xfdb/65012");
script_xref(name : "URL" , value : "http://www.openvas.org/OVSA20110118.html");
script_xref(name : "URL" , value : "http://www.securityfocus.com/archive/1/archive/1/515971/100/0/threaded");
script_tag(name:"qod_type", value:"executable_version");
script_summary("Check for the version of Greenbone Security Assistant");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (c) 2011 Greenbone Networks GmbH");
script_family("General");
script_mandatory_keys("login/SSH/success");
script_dependencies("gather-package-list.nasl");
script_tag(name : "impact" , value : tag_impact);
script_tag(name : "affected" , value : tag_affected);
script_tag(name : "insight" , value : tag_insight);
script_tag(name : "solution" , value : tag_solution);
script_tag(name : "summary" , value : tag_summary);
exit(0);
}
include("ssh_func.inc");
include("version_func.inc");
## Confirm Linux, as SSH can be instslled on Windows as well
result = get_kb_item( "ssh/login/uname" );
if("Linux" >!< result){
exit(0);
}
sock = ssh_login_or_reuse_connection();
if(!sock){
exit(0);
}
## Check for the possible paaths
paths = find_bin(prog_name:"gsad", sock:sock);
foreach stardictbin (paths)
{
## Get the version by executing the command gsad
gsadVer = get_bin_version(full_prog_name:chomp(stardictbin),
sock:sock, version_argv:"--version",
ver_pattern:"Greenbone Security Assistant ([0-9.]+)");
if(gsadVer[1] != NULL)
{
# Grep for version 1.0.3 or prior
if(version_is_less_equal(version:gsadVer[1], test_version:"1.0.3")){
security_message(0);
}
close(sock);
exit(0);
}
}
close(sock);
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