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
2 changes: 1 addition & 1 deletion 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.13&x2=0)](https://pypi.org/project/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 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
2 changes: 1 addition & 1 deletion lsassy/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.1.13"
__version__ = "3.1.14"
6 changes: 4 additions & 2 deletions lsassy/writer.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import importlib
import os
from pathlib import Path
from minikerberos.common.ccache import CCACHE
from minikerberos.common.kirbi import Kirbi

from lsassy.logger import lsassy_logger

Expand Down Expand Up @@ -138,11 +140,11 @@ def write_tickets(self, kerberos_dir=None, quiet=False):
filename.split(".kirbi")[0]
+ "_"
+ ticket.EndTime.strftime("%Y%m%d%H%M%S")
+ ".kirbi",
+ ".ccache",
),
"wb",
) as f:
f.write(ticket.kirbi_data[filename].dump())
f.write(CCACHE.from_kirbi(Kirbi(ticket.kirbi_data[filename])).to_bytes())
if not quiet:
if len(self._tickets) > 1:
print(
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.13"
version = "3.1.14"
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.13",
version="3.1.14",
author="Pixis",
author_email="hackndo@gmail.com",
description="Python library to extract credentials from lsass remotely",
Expand Down
Loading