We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bac7a34 commit f5d5a1bCopy full SHA for f5d5a1b
1 file changed
nxc/protocols/ldap.py
@@ -21,6 +21,7 @@
21
UF_DONT_REQUIRE_PREAUTH,
22
UF_TRUSTED_FOR_DELEGATION,
23
UF_TRUSTED_TO_AUTHENTICATE_FOR_DELEGATION,
24
+ UF_SERVER_TRUST_ACCOUNT,
25
)
26
from impacket.dcerpc.v5.transport import DCERPCTransportFactory
27
from impacket.krb5 import constants
@@ -1087,12 +1088,6 @@ def query(self):
1087
1088
self.logger.highlight(f"{attr:<20} {vals}")
1089
1090
def find_delegation(self):
- # Constants for delegation types
1091
- UF_TRUSTED_FOR_DELEGATION = 0x80000
1092
- UF_TRUSTED_TO_AUTHENTICATE_FOR_DELEGATION = 0x1000000
1093
- UF_ACCOUNTDISABLE = 0x2
1094
- UF_SERVER_TRUST_ACCOUNT = 0x2000
1095
-
1096
def printTable(items, header):
1097
colLen = []
1098
0 commit comments