dockers
dockers copied to clipboard
Eyewitness not recognizing --headless
I just did a new build of the Dockerfile and it looks like the version of Eyewiteness that is installed no longer recognizes the --headless parameter as called in entrypoint.sh. I get this output:
EyeWitness.py: error: unrecognized arguments: --headless
Sadly I rebuilt on top of the old image that was working, no now I am broken :-(
Forgot to mention this is for the torwitness Docker image
Resolved this myself by grabbing an older version of EyeWitness, so in the Dockerfile I now have:
# RUN git clone https://github.com/ChrisTruncer/EyeWitness.git
RUN wget https://github.com/FortyNorthSecurity/EyeWitness/archive/2.2.2.tar.gz && tar -xzf 2.2.2.tar.gz && mv EyeWitness-2.2.2 EyeWitness
bump, experienced the same issue