D-Link i2eye Video Conference AutoAnswer (WDBRPC) - Metasploit


This page contains detailed information about how to use the auxiliary/admin/vxworks/dlink_i2eye_autoanswer metasploit module. For list of all metasploit modules, visit the Metasploit Module Library.

Module Overview


Name: D-Link i2eye Video Conference AutoAnswer (WDBRPC)
Module: auxiliary/admin/vxworks/dlink_i2eye_autoanswer
Source code: modules/auxiliary/admin/vxworks/dlink_i2eye_autoanswer.rb
Disclosure date: -
Last modification time: 2017-07-24 06:26:21 +0000
Supported architecture(s): -
Supported platform(s): -
Target service / protocol: -
Target network port(s): 17185
List of CVEs: -

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).

Module Ranking and Traits


Module Ranking:

  • normal: The exploit is otherwise reliable, but depends on a specific version and can't (or doesn't) reliably autodetect. More information about ranking can be found here.

Basic Usage


msf > use auxiliary/admin/vxworks/dlink_i2eye_autoanswer
msf auxiliary(dlink_i2eye_autoanswer) > show targets
    ... a list of targets ...
msf auxiliary(dlink_i2eye_autoanswer) > set TARGET target-id
msf auxiliary(dlink_i2eye_autoanswer) > show options
    ... show and set options ...
msf auxiliary(dlink_i2eye_autoanswer) > exploit

Required Options


  • RHOSTS: The target host(s), range CIDR identifier, or hosts file with syntax 'file:<path>'

Go back to menu.

Msfconsole Usage


Here is how the admin/vxworks/dlink_i2eye_autoanswer auxiliary module looks in the msfconsole:

msf6 > use auxiliary/admin/vxworks/dlink_i2eye_autoanswer

msf6 auxiliary(admin/vxworks/dlink_i2eye_autoanswer) > show info

       Name: D-Link i2eye Video Conference AutoAnswer (WDBRPC)
     Module: auxiliary/admin/vxworks/dlink_i2eye_autoanswer
    License: Metasploit Framework License (BSD)
       Rank: Normal

Provided by:
  hdm <[email protected]>

Check supported:
  No

Basic options:
  Name    Current Setting  Required  Description
  ----    ---------------  --------  -----------
  RHOSTS                   yes       The target host(s), range CIDR identifier, or hosts file with syntax 'file:<path>'
  RPORT   17185            yes       The target port

Description:
  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).

References:
  OSVDB (66842)
  http://blog.metasploit.com/2010/08/vxworks-vulnerabilities.html
  https://www.kb.cert.org/vuls/id/362332

Module Options


This is a complete list of options available in the admin/vxworks/dlink_i2eye_autoanswer auxiliary module:

msf6 auxiliary(admin/vxworks/dlink_i2eye_autoanswer) > show options

Module options (auxiliary/admin/vxworks/dlink_i2eye_autoanswer):

   Name    Current Setting  Required  Description
   ----    ---------------  --------  -----------
   RHOSTS                   yes       The target host(s), range CIDR identifier, or hosts file with syntax 'file:<path>'
   RPORT   17185            yes       The target port

Advanced Options


Here is a complete list of advanced options supported by the admin/vxworks/dlink_i2eye_autoanswer auxiliary module:

msf6 auxiliary(admin/vxworks/dlink_i2eye_autoanswer) > show advanced

Module advanced options (auxiliary/admin/vxworks/dlink_i2eye_autoanswer):

   Name       Current Setting  Required  Description
   ----       ---------------  --------  -----------
   VERBOSE    false            no        Enable detailed status messages
   WORKSPACE                   no        Specify the workspace for this module

Auxiliary Actions


This is a list of all auxiliary actions that the admin/vxworks/dlink_i2eye_autoanswer module can do:

msf6 auxiliary(admin/vxworks/dlink_i2eye_autoanswer) > show actions

Auxiliary actions:

   Name  Description
   ----  -----------

Evasion Options


Here is the full list of possible evasion options supported by the admin/vxworks/dlink_i2eye_autoanswer auxiliary module in order to evade defenses (e.g. Antivirus, EDR, Firewall, NIDS etc.):

msf6 auxiliary(admin/vxworks/dlink_i2eye_autoanswer) > show evasion

Module evasion options:

   Name  Current Setting  Required  Description
   ----  ---------------  --------  -----------

Go back to menu.

Error Messages


This module may fail with the following error messages:

Check for the possible causes from the code snippets below found in the module source code. This can often times help in identifying the root cause of the problem.

No response to connection request


Here is a relevant code snippet related to the "No response to connection request" error message:

45:	
46:	
47:	    wdbrpc_client_connect
48:	
49:	    if not @wdbrpc_info[:rt_vers]
50:	      print_error("No response to connection request")
51:	      return
52:	    end
53:	
54:	    membase = @wdbrpc_info[:rt_membase]
55:	

No target available for BSP <WDBRPC_INFO:RT_BSP_NAME>


Here is a relevant code snippet related to the "No target available for BSP <WDBRPC_INFO:RT_BSP_NAME>" error message:

53:	
54:	    membase = @wdbrpc_info[:rt_membase]
55:	
56:	    target = targets[@wdbrpc_info[:rt_bsp_name]]
57:	    if not target
58:	      print_error("No target available for BSP #{@wdbrpc_info[:rt_bsp_name]}")
59:	      wdbrpc_client_disconnect
60:	      return
61:	    end
62:	
63:	    target.each do |r|

The value at offset <VALUE> does not match this target (<VALUE>), skipping...


Here is a relevant code snippet related to the "The value at offset <VALUE> does not match this target (<VALUE>), skipping..." error message:

63:	    target.each do |r|
64:	      offset, oldval, newval = r
65:	
66:	      curr = wdbrpc_client_memread(membase + offset, 4).unpack("N")[0]
67:	      if curr != oldval and curr != newval
68:	        print_error("The value at offset #{"0x%.8x" % offset} does not match this target (#{"0x%.8x" % curr}), skipping...")
69:	        next
70:	      end
71:	
72:	      if curr == newval
73:	        print_good("The value at offset #{"0x%.8x" % offset} has already been set")

Go back to menu.


References


See Also


Check also the following modules related to this module:

Authors


  • hdm

Version


This page has been produced using Metasploit Framework version 6.1.24-dev. For more modules, visit the Metasploit Module Library.

Go back to menu.