Codebase list python-lsassy / run/61f4ace8-d78d-44e4-a2b6-50ccc23e2d58/upstream hooks / hook-lsassy.py
run/61f4ace8-d78d-44e4-a2b6-50ccc23e2d58/upstream

Tree @run/61f4ace8-d78d-44e4-a2b6-50ccc23e2d58/upstream (Download .tar.gz)

hook-lsassy.py @run/61f4ace8-d78d-44e4-a2b6-50ccc23e2d58/upstreamraw · history · blame

1
2
3
4
5
6
7
8
9
from PyInstaller.utils.hooks import collect_submodules

"""
Note that output "table_output" has been removed. There's a bug regarding pyinstaller and 
rich library which prevents compiling lsassy if this lib is somehow imported.
"""
hiddenimports = (collect_submodules('lsassy.exec') + collect_submodules('lsassy.output') + collect_submodules('lsassy.dumpmethod'))
hiddenimports.remove('lsassy.output.table_output')
hiddenimports.append('unicrypto.backends.pycryptodomex')