Path: blob/master/lib/rex/proto/kerberos/model/ticket_flags.rb
21550 views
# -*- coding: binary -*-12module Rex3module Proto4module Kerberos5module Model6# The TicketFlags KerberosFlags are represented as a bit string.7# This module associates the human readable name, to the index the flag value is found at within the bit string.8# https://www.rfc-editor.org/rfc/rfc4120.txt9#10class TicketFlags < KerberosFlags11RESERVED = 012FORWARDABLE = 113FORWARDED = 214PROXIABLE = 315PROXY = 416ALLOW_POST_DATE = 517POST_DATED = 618INVALID = 719RENEWABLE = 820INITIAL = 921PRE_AUTHENT = 1022HW_AUTHNET = 1123TRANSITED_POLICY_CHECKED = 1224OK_AS_DELEGATE = 1325end26end27end28end29end303132