Windows Manage Local NBD Server for Remote Disks - Metasploit


This page contains detailed information about how to use the post/windows/manage/nbd_server metasploit module. For list of all metasploit modules, visit the Metasploit Module Library.

Module Overview


Name: Windows Manage Local NBD Server for Remote Disks
Module: post/windows/manage/nbd_server
Source code: modules/post/windows/manage/nbd_server.rb
Disclosure date: -
Last modification time: 2021-10-06 13:43:31 +0000
Supported architecture(s): -
Supported platform(s): Windows
Target service / protocol: -
Target network port(s): -
List of CVEs: -

Maps remote disks and logical volumes to a local Network Block Device server. Allows for forensic tools to be executed on the remote disk directly.

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


There are two ways to execute this post module.

From the Meterpreter prompt

The first is by using the "run" command at the Meterpreter prompt. It allows you to run the post module against that specific session:

meterpreter > run post/windows/manage/nbd_server

From the msf prompt

The second is by using the "use" command at the msf prompt. You will have to figure out which session ID to set manually. To list all session IDs, you can use the "sessions" command.

msf > use post/windows/manage/nbd_server
msf post(nbd_server) > show options
    ... show and set options ...
msf post(nbd_server) > set SESSION session-id
msf post(nbd_server) > exploit

If you wish to run the post against all sessions from framework, here is how:

1 - Create the following resource script:


framework.sessions.each_pair do |sid, session|
  run_single("use post/windows/manage/nbd_server")
  run_single("set SESSION #{sid}")
  run_single("run")
end

2 - At the msf prompt, execute the above resource script:

msf > resource path-to-resource-script

Required Options


  • SESSION: The session to run this module on.

  • DEVICE: Device to map (use enum_drives for possible names)

Go back to menu.

Msfconsole Usage


Here is how the windows/manage/nbd_server post exploitation module looks in the msfconsole:

msf6 > use post/windows/manage/nbd_server

msf6 post(windows/manage/nbd_server) > show info

       Name: Windows Manage Local NBD Server for Remote Disks
     Module: post/windows/manage/nbd_server
   Platform: Windows
       Arch: 
       Rank: Normal

Provided by:
  Wesley McGrew <[email protected]>

Compatible session types:
  Meterpreter

Basic options:
  Name     Current Setting  Required  Description
  ----     ---------------  --------  -----------
  DEVICE                    yes       Device to map (use enum_drives for possible names)
  NBDIP    0.0.0.0          no        IP address for NBD server
  NBDPORT  10005            no        TCP port for NBD server
  SESSION                   yes       The session to run this module on.

Description:
  Maps remote disks and logical volumes to a local Network Block 
  Device server. Allows for forensic tools to be executed on the 
  remote disk directly.

Module Options


This is a complete list of options available in the windows/manage/nbd_server post exploitation module:

msf6 post(windows/manage/nbd_server) > show options

Module options (post/windows/manage/nbd_server):

   Name     Current Setting  Required  Description
   ----     ---------------  --------  -----------
   DEVICE                    yes       Device to map (use enum_drives for possible names)
   NBDIP    0.0.0.0          no        IP address for NBD server
   NBDPORT  10005            no        TCP port for NBD server
   SESSION                   yes       The session to run this module on.

Advanced Options


Here is a complete list of advanced options supported by the windows/manage/nbd_server post exploitation module:

msf6 post(windows/manage/nbd_server) > show advanced

Module advanced options (post/windows/manage/nbd_server):

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

Post Actions


This is a list of all post exploitation actions which the windows/manage/nbd_server module can do:

msf6 post(windows/manage/nbd_server) > show actions

Post actions:

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

Evasion Options


Here is the full list of possible evasion options supported by the windows/manage/nbd_server post exploitation module in order to evade defenses (e.g. Antivirus, EDR, Firewall, NIDS etc.):

msf6 post(windows/manage/nbd_server) > 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.

GetLastError


Here is a relevant code snippet related to the "GetLastError" error message:

53:	                                            0x3, nil, "OPEN_EXISTING", "FILE_ATTRIBUTE_READONLY", 0)
54:	    handle = r['return']
55:	    r = client.railgun.kernel32.DeviceIoControl(handle, fsctl_allow_extended_dasd_io, nil, 0, 0, 0, 4, nil)
56:	    ioctl = client.railgun.kernel32.DeviceIoControl(handle, ioctl_disk_get_drive_geometry_ex,
57:	                                                    "", 0, 200, 200, 4, "")
58:	    if ioctl['GetLastError'] == 6
59:	      ioctl = client.railgun.kernel32.DeviceIoControl(handle, ioctl_disk_get_drive_geometry_ex,
60:	                                                      "", 0, 200, 200, 4, "")
61:	    end
62:	    geometry = ioctl['lpOutBuffer']
63:	    disk_size = geometry[24, 31].unpack('Q')[0]

No data received


Here is a relevant code snippet related to the "No data received" error message:

79:	
80:	    while true
81:	      request = rsock.read(28)
82:	
83:	      unless request
84:	        print_error("No data received")
85:	        break
86:	      end
87:	
88:	      magic, request, nbd_handle, offset_n, length = request.unpack("NNa8a8N")
89:	

Wrong magic number


Here is a relevant code snippet related to the "Wrong magic number" error message:

86:	      end
87:	
88:	      magic, request, nbd_handle, offset_n, length = request.unpack("NNa8a8N")
89:	
90:	      if magic != 0x25609513
91:	        print_error("Wrong magic number")
92:	        break
93:	      end
94:	      if request == 2
95:	        break
96:	      end

Attempted write on a read-only nbd


Here is a relevant code snippet related to the "Attempted write on a read-only nbd" error message:

94:	      if request == 2
95:	        break
96:	      end
97:	
98:	      if request == 1
99:	        print_error("Attempted write on a read-only nbd")
100:	        break
101:	      end
102:	      if request == 0
103:	        client.railgun.kernel32.SetFilePointer(handle, offset_n[4, 7].unpack('N')[0],
104:	                                               offset_n[0, 4].unpack('N')[0], 0)

Go back to menu.


Go back to menu.

See Also


Check also the following modules related to this module:

Authors


  • Wesley McGrew <wesley[at]mcgrewsecurity.com>

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.