Codebase list powershell-empire / 3de8a19
Use cyrptodome instead of crypto Sophie Brun 3 years ago
3 changed file(s) with 27 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
1111 Package: powershell-empire
1212 Architecture: all
1313 Depends: python3-bcrypt,
14 python3-crypto,
1514 python3-cryptography,
1615 python3-dropbox,
1716 python3-flask,
2322 python3-netifaces,
2423 python3-openssl,
2524 python3-pefile,
25 python3-pycryptodome,
2626 python3-pydispatch,
2727 python3-pyinstaller,
2828 python3-pyminifier,
00 rename-jinja2-templates.patch
11 change-database-location.patch
22 update-shebang-for-python3.patch
3 use-cryptodome.patch
0 From: Sophie Brun <[email protected]>
1 Date: Tue, 27 Oct 2020 11:08:56 +0100
2 Subject: Switch to Cryptodome instead of unmaintained Crypto
3
4 Last-Update: 2020-10-27
5
6 python3-crypto is unmaintained will be be removed from Debian soon.
7 See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=972184
8 ---
9 lib/stagers/windows/backdoorLnkMacro.py | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12 diff --git a/lib/stagers/windows/backdoorLnkMacro.py b/lib/stagers/windows/backdoorLnkMacro.py
13 index 54918c6..52483b6 100755
14 --- a/lib/stagers/windows/backdoorLnkMacro.py
15 +++ b/lib/stagers/windows/backdoorLnkMacro.py
16 @@ -9,7 +9,7 @@ from builtins import object
17 from builtins import range
18 from builtins import str
19
20 -from Crypto.Cipher import AES
21 +from Cryptodome.Cipher import AES
22 from xlutils.copy import copy
23 from xlwt import Workbook
24