Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zer1t0/ticket_converter
A little tool to convert ccache tickets into kirbi (KRB-CRED) and vice versa based on impacket.
https://github.com/zer1t0/ticket_converter
Last synced: about 2 months ago
JSON representation
A little tool to convert ccache tickets into kirbi (KRB-CRED) and vice versa based on impacket.
- Host: GitHub
- URL: https://github.com/zer1t0/ticket_converter
- Owner: zer1t0
- License: apache-2.0
- Archived: true
- Created: 2019-05-14T04:48:19.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-06-16T19:38:05.000Z (over 2 years ago)
- Last Synced: 2024-08-03T17:11:00.578Z (5 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 163
- Watchers: 2
- Forks: 31
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-network-stuff - **71**星 - CRED) and vice versa based on impacket. (<a id="0effa0fb88eb72a133563727d42910d9"></a>Impacket)
README
# This script is no longer supported
Use the impacket example [ticketConverter.py](https://github.com/SecureAuthCorp/impacket/blob/master/examples/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
```
git clone https://github.com/Zer1t0/ticket_converter
cd ticket_converter
pip install -r requirements.txt
```# Usage
```
$ python ticket_converter.py -h
usage: ticket_converter.py [-h] input_file output_filepositional arguments:
input_file
output_fileoptional arguments:
-h, --help show this help message and exit
```Example:
```
$ python ticket_converter.py ticket.ccache ticket.kirbi
Converting ccache => kirbi
``````
$ python ticket_converter.py ticket.kirbi ticket.ccache
Converting kirbi => ccache
```