Path: blob/master/lib/rex/proto/kerberos/model/kdc_option_flags.rb
21549 views
# -*- coding: binary -*-12module Rex3module Proto4module Kerberos5module Model6# THe KdcOptions 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.txt - KDCOptions ::= KerberosFlags9class KdcOptionFlags < KerberosFlags10RESERVED = 011FORWARDABLE = 112FORWARDED = 213PROXIABLE = 314PROXY = 415ALLOW_POST_DATE = 516POST_DATED = 617INVALID = 718RENEWABLE = 819INITIAL = 920PRE_AUTHENT = 1021HW_AUTHNET = 1122TRANSITED_POLICY_CHECKED = 1223OK_AS_DELEGATE = 1324CNAME_IN_ADDL_TKT = 1425CANONICALIZE = 1526RENEWABLE_OK = 2727ENC_TKT_IN_SKEY = 2828RENEW = 3029VALIDATE = 3130end31end32end33end34end353637