rapid7/ruby_smb

View on GitHub
lib/ruby_smb/dcerpc/svcctl/open_sc_manager_w_response.rb

Summary

Maintainability
A
0 mins
Test Coverage
module RubySMB
  module Dcerpc
    module Svcctl

      # [3.1.4.15 ROpenSCManagerW (Opnum 15)](https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-scmr/dc84adb3-d51d-48eb-820d-ba1c6ca5faf2)
      class OpenSCManagerWResponse < BinData::Record
        attr_reader :opnum

        endian :little

        sc_rpc_handle :lp_sc_handle
        ndr_uint32    :error_status

        def initialize_instance
          super
          @opnum = OPEN_SC_MANAGER_W
        end

      end

    end
  end
end