Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# lsassy
[![PyPI version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=py&type=6&v=v3.1.14&x2=0)](https://pypi.org/project/lsassy)
[![PyPI version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=py&type=6&v=v3.1.15&x2=0)](https://pypi.org/project/lsassy)
[![PyPI Statistics](https://img.shields.io/pypi/dm/lsassy.svg)](https://pypistats.org/packages/lsassy)
[![Tests](https://github.com/hackndo/lsassy/actions/workflows/lsassy.yml/badge.svg)](https://github.com/hackndo/lsassy/actions?workflow=lsassy)
[![Twitter](https://img.shields.io/twitter/follow/hackanddo?label=HackAndDo&style=social)](https://twitter.com/intent/follow?screen_name=hackanddo)
Expand Down Expand Up @@ -215,7 +215,7 @@ lsassy -d hackn.lab -u pixis -p P4ssw0rd dc01.hackn.lab --keep-dump

### Kerberos tickets harvesting

Kerberos tickets will be extracted and saved to `$HOME/.config/lsassy/tickets` in `kirbi` format. You can specify output directory using `-K [directory]` or `--kerberos-dir [directory]` parameter. If this directory doesn't exist, the tool will attempt to create it before outputing tickets.
Kerberos tickets will be extracted and saved to `$HOME/.config/lsassy/tickets` in `ccache` format. You can specify output directory using `-K [directory]` or `--kerberos-dir [directory]` parameter. If this directory doesn't exist, the tool will attempt to create it before outputing tickets.

```bash
lsassy -d hackn.lab -u pixis -p P4ssw0rd dc01.hackn.lab -K '/tmp/kerberos_tickets'
Expand Down
2 changes: 1 addition & 1 deletion lsassy/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.1.14"
__version__ = "3.1.15"
2 changes: 1 addition & 1 deletion lsassy/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def parse(self):
]
+ "_"
+ ticket.EndTime.strftime("%Y%m%d%H%M%S")
+ ".kirbi",
+ ".ccache",
"domain": target_domain,
"endtime": ticket.EndTime,
},
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "lsassy"
version = "3.1.14"
version = "3.1.15"
description = "Python library to extract credentials from lsass remotely"
readme = "README.md"
requires-python = ">=3.10,<4.0"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name="lsassy",
version="3.1.14",
version="3.1.15",
author="Pixis",
author_email="hackndo@gmail.com",
description="Python library to extract credentials from lsass remotely",
Expand Down
Loading