hi, has anyone successfully run hydra in amazonlin...
# talk-hydra
f
hi, has anyone successfully run hydra in amazonlinux2 docker container? I got following message:
Copy code
/usr/bin/hydra: /lib/ld-musl-x86_64.so.1: bad ELF interpreter: No such file or directory
p
Hi @User Not sure what your machine architecture is or what Amazon Linux limitations are (never used it before). It could also be to do with sqlite not finding a shared libraries (musl lib). https://stackoverflow.com/a/66377202
Not sure if this is the case, but hopefully installing it will fix the issue 🙂
f
@User, looks like the binary in official docker image is sqlite, that requires musl lib, which awslinux2 doesn’t have it. By replace it with non-sqlite binary, it start to work.
🎉 1