Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
ticket_converter — A little tool to convert ccache tickets into kirbi (KRB-CRED) and vice versa based on impacket. | Kitploit
Tools/GitHubGitHub/zer1t0/ticket_converter
Post-ExploitationPenetration TestingUtilities & FrameworksAuthenticationArchived
GitHubzer1t0/ticket_converter

ticket_converter

A little tool to convert ccache tickets into kirbi (KRB-CRED) and vice versa based on impacket.

View Repository
1713074 years agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

This script is no longer supported

Use the impacket example ticketConverter.py.

ticket_converter

A little tool to convert ccache tickets into kirbi (KRB-CRED) and vice versa based on impacket.

As input you must provide a ccache or kirbi file. The script will detect the format and convert it.

Installation

root@kitploit:~
git clone https://github.com/Zer1t0/ticket_converter
cd ticket_converter
pip install -r requirements.txt

Usage

root@kitploit:~
$ python ticket_converter.py -h
usage: ticket_converter.py [-h] input_file output_file

positional arguments:
  input_file
  output_file

optional arguments:
  -h, --help   show this help message and exit

Example:

root@kitploit:~
$ python ticket_converter.py ticket.ccache ticket.kirbi
Converting ccache => kirbi
root@kitploit:~
$ python ticket_converter.py ticket.kirbi ticket.ccache
Converting kirbi => ccache
Download Tool