Added no inspection comments and an explanation on why we use Crypto for shellcode_obfuscator.py
This commit is contained in:
parent
28e4a0f23d
commit
f11736d451
|
@ -4,7 +4,8 @@
|
|||
|
||||
import sys
|
||||
|
||||
from Crypto.Cipher import AES
|
||||
# PyCrypto is deprecated, but we use pycryptodome, which uses the exact same imports
|
||||
from Crypto.Cipher import AES # noqa: DUO133 # nosec: B413
|
||||
|
||||
# We only encrypt payloads to hide them from static analysis
|
||||
# it's OK to have these keys plaintext
|
||||
|
|
Loading…
Reference in New Issue