blacklanternsecurity / TREVORspray

TREVORspray is a modular password sprayer with threading, clever proxying, loot modules, and more!
GNU General Public License v3.0
1.04k stars 147 forks source link

Error when trying to execute trevorspray #8

Closed bandrel closed 2 years ago

bandrel commented 2 years ago

Get the following error when trying to execute trevorspray ModuleNotFoundError: No module named 'lib.trevor'

TheTechromancer commented 2 years ago

How did you install the tool? And what is the full command that you ran?

bandrel commented 2 years ago

Multiple methods but I was able to reproduce in a docker container

2022-01-27_11-48-11


from python:3.6

RUN apt update
RUN apt install python3-pip -y
RUN apt install git -y
RUN python3 -m pip install git+https://github.com/blacklanternsecurity/trevorproxy
RUN python3 -m pip install git+https://github.com/blacklanternsecurity/trevorspray
TheTechromancer commented 2 years ago

Nice find. This should be fixed now. Can you try rebuilding the container with docker build --no-cache?

bandrel commented 2 years ago

Fixed. thank you