Delegate other attributes to the impacket auth object
(self, name)
| 1258 | return sid_string |
| 1259 | |
| 1260 | def __getattr__(self, name): |
| 1261 | """Delegate other attributes to the impacket auth object""" |
| 1262 | return getattr(self.impacket_auth, name) |
| 1263 | |
| 1264 | def parse_kerberos_ticket(ccache_path): |
| 1265 | """Parse Kerberos ticket cache to extract username and domain""" |
nothing calls this directly
no outgoing calls
no test coverage detected