Closed CapacitorSet closed 2 years ago
I'm having the same issue.
Has any fix been made or workaround been found?
I eventually managed to get it working, although I can't quite remember how I got there and it doesn't cover every channel (I was only interested in ICMP). This is the output of pip freeze
to be put into requirements.txt
:
base58==1.0.3
certifi==2020.12.5
cffi==1.14.5
chardet==4.0.0
click==7.1.2
cryptography==3.3.2
dnspython==1.16.0
enum34==1.1.10
Faker==3.0.1
Flask==1.1.2
future==0.18.2
idna==2.10
impacket==0.9.22
ipaddress==1.0.23
itsdangerous==1.1.0
Jinja2==2.11.3
ldap3==2.9
ldapdomaindump==0.9.3
luhn==0.2.0
MarkupSafe==1.1.1
names==0.3.0
numpy==1.16.6
Pillow==6.2.2
progressbar==2.5
pyasn1==0.4.8
pycparser==2.20
pycryptodome==3.10.1
pycryptodomex==3.10.1
pyOpenSSL==20.0.1
python-dateutil==2.8.1
pytube3==9.5.5
qrcode==6.1
requests==2.25.1
six==1.15.0
slackclient==1.3.2
text-unidecode==1.3
urllib3==1.26.3
websocket-client==0.54.0
Werkzeug==1.0.1
Hey, Could you confirm the new requirements files work for you? Thanks for opening this issue up. The requirements does need a revamp.
I just tried it and it failed on Pillow, but I am also trying to get it to run on Windows and 3.9:
Pillow does not yet support Python 3.9 and does not yet provide prebuilt Windows binaries. We do not r
ecommend building from source on Windows.
Hey @bp32795 . Thanks for taking the time to check this. It seems like Pillow is just not supported on Windows with Python3.9. This package is used almost across all of the Stenography modules. You can comment it out if you're not planning on using them, but if you do it looks like you'll just have to install it on another system.
We would appreciate your feedback on either scenario (knowing that everything worked after commenting Pillow
in the requirements
file OR full install worked on whatever other machine you've chosen).
Thanks again.
As no additional inputs were provided i'll be closing this. Thanks to everyone.
If anyone is still having trouble after pip3 install requirements.txt
kindly open another issue so we can fix it.
I'm trying to use PyExfil and I'm having several problems starting from a clean install (Python 3.9.1, Linux).
I'm following the instructions in the README:
except with
pip install -r requirements3.txt
because I'm in a venv and requirements.txt doesn't exist. I also removed thelibrosa
(audio analysis) dependency since in turn it depended on llvm-libs.The readme then specifies
pip setup.py --user install
(that should bepython
). I'm gettingerror: option --user not recognized
, so I drop it. Python then says:It is actually a Python 2 standard library so I removed the requirement; note however that it is still used in HTTPS and QUIC.
Likewise for
hashlib
, although with a more cryptic error.The installation then proceeds successfully, but I can't import anything from the package:
Indeed, importing it in the REPL shows that it only exports AUTHORS, NAME and a few other variables.
I then tried installing it "manually" by copying the
pyexfil
directory to where I needed it. I then found out that even a simple usage doesn't work:I believe this error is caused by my version of impacket being too recent, as there are no specific constraints in requirements.txt or setup.py. I think the author will need to freeze the packages to known-good versions.