Rubeus to Ccache
Last updated
Was this helpful?
Last updated
Was this helpful?
Normally Rubeus outputs the tickets in Base64-encoded .kirbi format, .kirbi being the type of file commonly used by .
Impacket tools use the .ccache file format to represent Kerberos tickets
Convert tickets with the impacket built in converter (still need to convert Rubeus output from base64 to .kirbi before using ticketConverter.py
Rubeus to Ccache
Pass the script the base64 blob and you will get a ticket in both formats
Ensure you export the proper env variable before trying to convert
Then you can use most Impacket tools like this:
wmiexec.py domain/user@192.168.1.1 -k -no-pass
, where the -k
flag indicates the use of Kerberos tickets for authentication.
Tool: