| Source | Link |
|---|---|
| nessus | www.nessus.org/u |
#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#
include('deprecated_nasl_level.inc');
include('compat.inc');
if (description)
{
script_id(55410);
script_version("1.12");
script_set_attribute(attribute:"plugin_modification_date", value:"2025/09/29");
script_bugtraq_id(48195);
script_name(english:"Movable Type User Registration Restriction Bypass");
script_set_attribute(attribute:"synopsis", value:
"A blog running on the remote web server has a restriction bypass
vulnerability.");
script_set_attribute(attribute:"description", value:
"The version of Movable Type running on the remote host has a
restriction bypass vulnerability. It is possible to create new user
accounts even when registration has been disabled in the blog
configuration.
A remote attacker could exploit this to register new accounts for
blogs that do not allow registration.
This version of Movable Type likely has other unspecified
vulnerabilities although Nessus has not checked for them.");
# https://movabletype.org/news/2011/06/movable_type_511_and_5051_4361_security_updates.html
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?2ebc223f");
script_set_attribute(attribute:"solution", value:
"Upgrade to Movable Type 4.361 / 5.051 / 5.11 or later.");
script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:N/I:P/A:N");
script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
script_set_attribute(attribute:"cvss_score_source", value:"manual");
script_set_attribute(attribute:"cvss_score_rationale", value:"No CVE available for this vulnerability.");
script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
script_set_attribute(attribute:"exploit_available", value:"false");
script_set_attribute(attribute:"vuln_publication_date", value:"2011/06/08");
script_set_attribute(attribute:"patch_publication_date", value:"2011/06/08");
script_set_attribute(attribute:"plugin_publication_date", value:"2011/06/23");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"cpe", value:"cpe:/a:sixapart:movable_type");
script_set_attribute(attribute:"thorough_tests", value:"true");
script_set_attribute(attribute:"enable_cgi_scanning", value:"true");
script_end_attributes();
script_category(ACT_ATTACK);
script_family(english:"CGI abuses");
script_copyright(english:"This script is Copyright (C) 2011-2025 Tenable Network Security, Inc.");
script_dependencies("movabletype_detect.nasl", "smtp_settings.nasl");
script_require_keys("www/movabletype");
script_require_ports("Services/www", 80);
exit(0);
}
include("http.inc");
include("webapp_func.inc");
include('torture_cgi.inc');
port = get_http_port(default:80);
install = get_install_from_kb(appname:'movabletype', port:port, exit_on_fail:TRUE);
email = get_kb_item('SMTP/headers/From');
if (!email) email = SCRIPT_NAME + '@example.com';
# send an invalid registration request that will fail, yet
# allow us to fingerprint the vulnerable behavior
postdata =
'__mode=do_signup' +
'&username=' + unixtime() +
'&nickname=' + unixtime() +
'&email=' + email;
url = install['dir'] + '/mt-comments.cgi';
res = http_send_recv3(
method:'POST',
item:url,
port:port,
content_type:'application/x-www-form-urlencoded',
data:postdata,
exit_on_fail:TRUE
);
install_url = build_url(qs:install['dir'],port:port);
# vulnerable installs will say we're missing data (user password)
# patched installs will say the entire request was invalid (blog id missing)
expected_output = 'User requires password';
if (expected_output >< res[2])
{
if (report_verbosity > 0)
{
report =
'\nNessus fingerprinted the vulnerability by making the following request :\n\n' +
crap(data:"-", length:30)+' snip '+ crap(data:"-", length:30)+'\n'+
http_last_sent_request() + '\n' +
crap(data:"-", length:30)+' snip '+ crap(data:"-", length:30)+'\n';
if (report_verbosity > 1)
{
report +=
'\nWhich resulted in the following error message :\n\n' +
crap(data:"-", length:30)+' snip '+ crap(data:"-", length:30)+'\n'+
extract_pattern_from_resp(string:res[2], pattern:'ST:' + expected_output) +
crap(data:"-", length:30)+' snip '+ crap(data:"-", length:30)+'\n';
}
security_warning(port:port, extra:report);
}
else security_warning(port);
exit(0);
}
else if ('Invalid request' >< res[2])
audit(AUDIT_WEB_APP_NOT_AFFECTED, "Movable Type", install_url);
else
exit(0, 'Unexpected response received from the Movable Type install at '+install_url+ ".");
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