| Source | Link |
|---|---|
| nessus | www.nessus.org/u |
| wpvulndb | www.wpvulndb.com/vulnerabilities/8924 |
| vulnerabilitycenter | www.vulnerabilitycenter.com/ |
#
# (C) Tenable Network Security, Inc.
#
include('compat.inc');
if (description)
{
script_id(105174);
script_version("1.6");
script_set_attribute(attribute:"plugin_modification_date", value:"2025/05/14");
script_name(english:"RegistrationMagic Plugin for WordPress < 3.7.9.3 PHP Object Injection");
script_set_attribute(attribute:"synopsis", value:
"The remote web server is running a PHP application that is affected
by a PHP object injection vulnerability.");
script_set_attribute(attribute:"description", value:
"According to its self-reported version, the RegistrationMagic Plugin
for WordPress running on the remote web server is prior to 3.7.9.3.
It is, therefore, affected by a PHP object injection vulnerability.
An unauthenticated, remote attacker can exploit this to inject PHP
objects, execute arbitrary code and execute SQL database queries.
Note that Nessus has not tested for this issue but has instead relied
only on the application's self-reported version number.");
# https://wordpress.org/plugins/custom-registration-form-builder-with-submission-manager/
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?009eaf15");
script_set_attribute(attribute:"see_also", value:"https://wpvulndb.com/vulnerabilities/8924");
script_set_attribute(attribute:"see_also", value:"https://www.vulnerabilitycenter.com/#!vul=76829");
script_set_attribute(attribute:"solution", value:
"Upgrade the RegistrationMagic Plugin for WordPress to version
3.7.9.3 or later.");
script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:P/I:P/A:P");
script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
script_set_cvss3_base_vector("CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:L");
script_set_cvss3_temporal_vector("CVSS:3.0/E:U/RL:O/RC:C");
script_set_attribute(attribute:"vuln_publication_date", value:"2017/10/02");
script_set_attribute(attribute:"patch_publication_date", value:"2017/09/20");
script_set_attribute(attribute:"plugin_publication_date", value:"2017/12/12");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"cpe", value:"cpe:/a:wordpress:wordpress");
script_set_attribute(attribute:"enable_cgi_scanning", value:"true");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"CGI abuses");
script_copyright(english:"This script is Copyright (C) 2017-2025 Tenable Network Security, Inc.");
script_dependencies("wordpress_detect.nasl");
script_require_keys("installed_sw/WordPress", "www/PHP");
script_require_ports("Services/www", 80);
exit(0);
}
include("audit.inc");
include("global_settings.inc");
include("http.inc");
include("url_func.inc");
include("webapp_func.inc");
include("misc_func.inc");
app = "WordPress";
get_install_count(app_name:app, exit_if_zero:TRUE);
port = get_http_port(default:80, php:TRUE);
install = get_single_install(
app_name : app,
port : port
);
dir = install['path'];
install_url = build_url(port:port, qs:dir);
plugin_url = install_url + "wp-content/plugins/custom-registration-form-builder-with-submission-manager/";
plugin = 'RegistrationMagic';
# Check KB first
installed = get_kb_item("www/"+port+"/webapp_ext/"+plugin+" under "+dir);
# if not found as installed from kb, check for regex in plugin dir
if (!installed)
{
# Check for the following string in the url indicated below
regexes[0] = make_list("rmFontColor", "rmHelpTextIn2");
checks[plugin_url + "public/js/rm_front_form.js"] = regexes;
# Ensure plugin is installed
installed = check_webapp_ext(
checks : checks,
dir : dir,
port : port,
ext : plugin
);
}
if (!installed)
audit(AUDIT_WEB_APP_EXT_NOT_INST, app, install_url, plugin + " plugin");
# Get version from readme.txt
res = http_send_recv3(
method : "GET",
port : port,
item : dir + plugin_url + "readme.txt",
exit_on_fail : TRUE
);
body = res[2];
if ("=== RegistrationMagic" >< body && "registrationmagic" >< body)
{
# Grab version
match = pregmatch(pattern:"\bStable tag: ([0-9\.]+|$)", string:body);
if (!empty_or_null(match)) version = match[1];
}
else
audit(AUDIT_UNKNOWN_WEB_APP_VER, plugin + " plugin included in the " + app + " install", plugin_url);
fix = '3.7.9.3';
# Compare version with fixed
if (ver_compare(ver:version, fix:fix, strict:FALSE) == -1)
{
report =
'\n WordPress URL : ' + install_url +
'\n Plugin URL : ' + plugin_url +
'\n Installed version : ' + version +
'\n Fixed version : ' + fix +
'\n';
security_report_v4(port:port, extra:report, severity:SECURITY_WARNING);
}
else audit(AUDIT_WEB_APP_EXT_NOT_AFFECTED, app, install_url, plugin + ' plugin', version);
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