Class: Rex::Proto::MsDtyp::MsDtypSid

Inherits:
BinData::Primitive
  • Object
show all
Defined in:
lib/rex/proto/ms_dtyp.rb

Overview

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.from_sddl_text(sddl_text, domain_sid:) ⇒ Object



280
281
282
283
284
285
286
287
288
289
290
291
292
293
# File 'lib/rex/proto/ms_dtyp.rb', line 280

def self.from_sddl_text(sddl_text, domain_sid:)
  # see: https://learn.microsoft.com/en-us/windows/win32/secauthz/sid-strings
  sddl_text = sddl_text.dup.upcase

  if SDDL_SIDS.key?(sddl_text)
    sid_text = SDDL_SIDS[sddl_text].sub('${DOMAIN_SID}', domain_sid)
  elsif sddl_text =~ /^S(-\d+)+/
    sid_text = sddl_text
  else
    raise SDDLParseError.new('invalid SID string: ' + sddl_text)
  end

  self.new(sid_text)
end

Instance Method Details

#getObject



185
186
187
188
189
190
# File 'lib/rex/proto/ms_dtyp.rb', line 185

def get
  str = 'S-1'
  str << "-#{("\x00\x00" + identifier_authority.to_binary_s).unpack1('Q>')}"
  str << '-' + sub_authority.map(&:to_s).join('-') unless sub_authority.empty?
  str
end

#ridObject



192
193
194
# File 'lib/rex/proto/ms_dtyp.rb', line 192

def rid
  sub_authority.last
end

#set(val) ⇒ Object

Raises:

  • (ArgumentError)


176
177
178
179
180
181
182
183
# File 'lib/rex/proto/ms_dtyp.rb', line 176

def set(val)
  # allow assignment from the human-readable string representation
  raise ArgumentError.new("Invalid SID: #{val}") unless val.is_a?(String) && val =~ /^S-1-(\d+)(-\d+)*$/

  _, _, ia, sa = val.split('-', 4)
  self.identifier_authority = [ia.to_i].pack('Q>')[2..].bytes
  self.sub_authority = sa.nil? ? [] : sa.split('-').map(&:to_i)
end

#to_sddl_text(domain_sid: nil) ⇒ Object



267
268
269
270
271
272
273
274
275
276
277
278
# File 'lib/rex/proto/ms_dtyp.rb', line 267

def to_sddl_text(domain_sid: nil)
  sid = to_s

  lookup = domain_sid.blank? ? sid : sid.sub(domain_sid, '${DOMAIN_SID}')
  if (sddl_text = self.class.const_get(:SDDL_SIDS).key(lookup)).nil?
    sddl_text = sid
  end
  # these short names aren't supported by all versions of Windows, avoid compatibility issues by not outputting them
  sddl_text = sid if %w[ AP CN EK KA ].include?(sddl_text)

  sddl_text
end