Sha256: d911c281e40703cf027c725e724d5f129410950d90fee4059313aa52d2bfd00b
Contents?: true
Size: 1.05 KB
Versions: 16
Compression:
Stored size: 1.05 KB
Contents
module RubySMB module Dcerpc # The Bind PDU as defined in # [The bind PDU](http://pubs.opengroup.org/onlinepubs/9629399/chap12.htm#tagcjh_17_06_04_03) class Bind < BinData::Record PTYPE = PTypes::BIND endian :little # PDU Header pdu_header :pdu_header, label: 'PDU header' ndr_uint16 :max_xmit_frag, label: 'Max transmit frag size', initial_value: RubySMB::Dcerpc::MAX_XMIT_FRAG ndr_uint16 :max_recv_frag, label: 'Max receive frag size', initial_value: RubySMB::Dcerpc::MAX_RECV_FRAG ndr_uint32 :assoc_group_id, label: 'Incarnation of client-server assoc group' p_cont_list_t :p_context_list, label: 'Presentation context list', endpoint: -> { endpoint } # Auth Verifier sec_trailer :sec_trailer, onlyif: -> { pdu_header.auth_length > 0 } string :auth_value, onlyif: -> { pdu_header.auth_length > 0 }, read_length: -> { pdu_header.auth_length } def initialize_instance super pdu_header.ptype = PTYPE end end end end
Version data entries
16 entries across 16 versions & 1 rubygems