Skip to content

Commit

Permalink
Merge pull request #98 from login-securite/3.1.12
Browse files Browse the repository at this point in the history
3.1.12
  • Loading branch information
Hackndo authored Jul 4, 2024
2 parents 0b59a5b + 410cdaf commit d425549
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
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.11&x2=0)](https://pypi.org/project/lsassy)
[![PyPI version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=py&type=6&v=v3.1.12&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.11'
__version__ = '3.1.12'
2 changes: 2 additions & 0 deletions lsassy/exec/mmc.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ def exec(self, command):
except Exception as e:
lsassy_logger.debug("Error : {}".format(e), exc_info=True)
self.clean()
raise Exception(e)

dispParams = DISPPARAMS(None, False)
dispParams['rgdispidNamedArgs'] = NULL
Expand Down Expand Up @@ -173,4 +174,5 @@ def exec(self, command):
dispParams['rgvarg'].append(arg1)
dispParams['rgvarg'].append(arg0)
self.__executeShellCommand[0].Invoke(self.__executeShellCommand[1], 0x409, DISPATCH_METHOD, dispParams, 0, [], [])
self.clean()
return True
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "lsassy"
version = "3.1.11"
version = "3.1.12"
description = "Tool to remotely extract credentials"
readme = "README.md"
homepage = "https://github.com/hackndo/lsassy"
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.11",
version="3.1.12",
author="Pixis",
author_email="hackndo@gmail.com",
description="Python library to extract credentials from lsass remotely",
Expand Down

0 comments on commit d425549

Please sign in to comment.