##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Auxiliary
def initialize(info = {})
super(
update_info(
info,
'Name' => 'Kerberos ticket converter',
'Description' => %q{
This module converts tickets to the ccache format from the kirbi format and vice versa.
},
'Author' => [
'Zer1t0', # Impacket Implementation https://github.com/Zer1t0
'Dean Welch', # Metasploit Module
],
'References' => [
['URL', 'https://github.com/SecureAuthCorp/impacket/blob/3c6713e309cae871d685fa443d3e21b7026a2155/examples/ticketConverter.py'],
['URL', 'https://tools.ietf.org/html/rfc4120'],
['URL', 'http://web.mit.edu/KERBEROS/krb5-devel/doc/formats/ccache_file_format.html'],
['URL', 'https://github.com/gentilkiwi/kekeo'],
['URL', 'https://github.com/rvazarkar/KrbCredExport'],
],
'License' => MSF_LICENSE,
'Notes' => {
'Stability' => [CRASH_SAFE],
'Reliability' => [],
'SideEffects' => []
}
)
)
register_options(
[
OptPath.new('InputPath', [ true, 'The file path to ticket in kirbi (KRB-CRED) or ccache format.' ]),
OptString.new('OutputPath', [ true, 'The output path to save the converted ticket.' ]),
]
)
end
def run
header = File.binread(datastore['InputPath'], 2)
if ccache?(header)
print_status('Converting from ccache to kirbi')
output = ccache_to_kirbi(File.binread(datastore['InputPath']))
elsif kirbi?(header)
print_status('Converting from kirbi to ccache')
output = kirbi_to_ccache(File.binread(datastore['InputPath']))
else
fail_with(Msf::Module::Failure::BadConfig, 'Unknown file format')
end
path = File.expand_path(datastore['OutputPath'])
File.binwrite(path, output.encode)
print_status("File written to #{path}")
end
def ccache_to_kirbi(input)
ccache = Rex::Proto::Kerberos::CredentialCache::Krb5Ccache.read(input)
Msf::Exploit::Remote::Kerberos::TicketConverter.ccache_to_kirbi(ccache)
end
def kirbi_to_ccache(input)
krb_cred = Rex::Proto::Kerberos::Model::KrbCred.decode(input)
Msf::Exploit::Remote::Kerberos::TicketConverter.kirbi_to_ccache(krb_cred)
end
private
def kirbi?(header)
header[0] == "\x76"
end
def ccache?(header)
header[0..1] == "\x05\x04"
end
end
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation