mirror of https://github.com/n1nj4sec/pupy.git
Explicitly install idna
This commit is contained in:
parent
d71a65f287
commit
92e665b93a
|
@ -26,7 +26,12 @@ from PupyCompile import pupycompile
|
|||
|
||||
import additional_imports
|
||||
import Crypto
|
||||
import idna
|
||||
|
||||
try:
|
||||
import idna
|
||||
except ImportError:
|
||||
print "[W] idna not found"
|
||||
|
||||
import pp
|
||||
import site
|
||||
import marshal
|
||||
|
|
|
@ -30,7 +30,7 @@ CC=/gccwrap CFLAGS_FILTER="-Wno-error=sign-conversion" \
|
|||
export PRCTL_SKIP_KERNEL_CHECK=yes
|
||||
|
||||
python -m pip install --upgrade \
|
||||
rpyc==3.4.4 pyaml rsa netaddr tinyec pyyaml ecdsa \
|
||||
rpyc==3.4.4 pyaml rsa netaddr tinyec pyyaml ecdsa idna \
|
||||
paramiko pylzma pydbus python-ptrace psutil scandir \
|
||||
scapy colorama pyOpenSSL python-xlib msgpack-python \
|
||||
u-msgpack-python poster dnslib pyxattr pylibacl python-prctl \
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
PACKAGES="rpyc==3.4.4 rsa pefile rsa netaddr win_inet_pton netaddr tinyec pypiwin32 poster win_inet_pton dnslib"
|
||||
PACKAGES_BUILD="netifaces msgpack-python u-msgpack-python scandir construct bcrypt watchdog"
|
||||
PACKAGES="$PACKAGES pyaudio https://github.com/secdev/scapy/archive/master.zip colorama pyuv pynacl pyaudio"
|
||||
PACKAGES="$PACKAGES https://github.com/CoreSecurity/impacket/archive/master.zip"
|
||||
PACKAGES="$PACKAGES idna https://github.com/CoreSecurity/impacket/archive/master.zip"
|
||||
PACKAGES="$PACKAGES https://github.com/AlessandroZ/pypykatz/archive/master.zip"
|
||||
PACKAGES="$PACKAGES adodbapi"
|
||||
|
||||
|
|
Loading…
Reference in New Issue