Skip to content

Commit

Permalink
Merge pull request #77 from Hackndo/3.1.6
Browse files Browse the repository at this point in the history
3.1.6
  • Loading branch information
Hackndo authored Nov 17, 2022
2 parents cf6caa7 + e363899 commit f2ed41f
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 17 deletions.
14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ clean:
find . -name '__pycache__' -exec rm -rf {} +

publish: clean
python3.7 setup.py sdist bdist_wheel
python3.7 -m twine upload dist/*
python setup.py sdist bdist_wheel
python -m twine upload dist/*

testpublish: clean
python3.7 setup.py sdist bdist_wheel
python3.7 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
python setup.py sdist bdist_wheel
python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*

linux: clean
python setup.py install
Expand All @@ -24,12 +24,12 @@ windows: clean
pyinstaller ./lsassy/console.py --onefile --clean -n lsassy_windows_amd64 --additional-hooks-dir=hooks

rebuild: clean
python3.7 setup.py install
python setup.py install

build: clean
python3.7 setup.py install
python setup.py install

install: build

test:
python3.7 setup.py test
python setup.py test
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# lsassy

[![PyPI version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=py&type=6&v=3.1.4&x2=0)](https://pypi.org/project/lsassy/)
[![PyPI version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=py&type=6&v=3.1.6&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/workflows/Tests/badge.svg)](https://github.com/hackndo/lsassy/actions?workflow=Tests)
[![Twitter](https://img.shields.io/twitter/follow/hackanddo?label=HackAndDo&style=social)](https://twitter.com/intent/follow?screen_name=hackanddo)
Expand Down Expand Up @@ -151,6 +151,7 @@ Dumping methods (`-m` or `--method`)
* EDRSandBlast
* nanodump
* rdrleakdiag
* silentprocessexit
* sqldumper

#### comsvcs method
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.4'
__version__ = '3.1.6'
2 changes: 1 addition & 1 deletion lsassy/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def main():
group_dump.add_argument('--time-between-commands', action='store', type=int, default=1,
help='Time to wait between dump methods commands (Default 1s)')
group_dump.add_argument('--parse-only', action='store_true', help='Parse dump without dumping')
group_dump.add_argument('--keep-dump', action='store_true', help='Parse dump without dumping')
group_dump.add_argument('--keep-dump', action='store_true', help='Do not delete lsass dump on remote host')

group_auth = parser.add_argument_group('authentication')
group_auth.add_argument('-u', '--username', action='store', help='Username')
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "lsassy"
version = "3.1.4"
version = "3.1.6"
description = "Tool to remotely extract credentials"
readme = "README.md"
homepage = "https://github.com/hackndo/lsassy"
Expand All @@ -11,7 +11,7 @@ authors = ["pixis <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.7"
netaddr = "^0.8.0"
pypykatz = "^0.4.8"
pypykatz = "^0.6.2"
impacket = "^0.9.22"
rich = "^10.6.0"

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
impacket
netaddr
pypykatz>=0.4.8
rich
pypykatz>=0.6.2
rich
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name="lsassy",
version="3.1.4",
version="3.1.6",
author="Pixis",
author_email="[email protected]",
description="Python library to extract credentials from lsass remotely",
Expand All @@ -27,7 +27,7 @@
install_requires=[
'impacket',
'netaddr',
'pypykatz>=0.4.8',
'pypykatz>=0.6.2',
'rich'
],
python_requires='>=3.6',
Expand Down
2 changes: 1 addition & 1 deletion tests/test_lsassy.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == '3.1.4'
assert __version__ == '3.1.6'

0 comments on commit f2ed41f

Please sign in to comment.