You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bug is found on docker running on Mac (running x86 image format ) and Ubuntu running x86
While trying to use gowitness as part of the bbot webscan module in a Docker container, the setup process fails with an error related to a missing shared library, libglib-2.0.so.0. This issue prevents the gowitness module from functioning properly.
steps to Reproduce
Run bbot with the webscan module in a Docker container.
Ensure gowitness is included in the modules being set up.
Observe the error in the logs.
bbot -t example.com -m safe
Expected Behavior
gowitness should successfully set up and run without errors, assuming all dependencies are met. (when asible runs dependencies check)
Actual Behavior
The setup fails with the following error message:
[WARN] Stderr for run(/root/.bbot/tools/chrome-linux/chrome --version):
/root/.bbot/tools/chrome-linux/chrome: error while loading shared libraries: libglib-2.0.so.0: cannot open shared object file: No such file or directory
[WARN] Setup hard-failed for gowitness: Failed to set up Google chrome. Please install manually or try again with --force-deps.
[WARN] gowitness: Setting error state
[ERRR] Setup hard-failed for 1 modules (gowitness) (--force to run module anyway)
logs
[INFO] Setup soft-failed for builtwith: No API key set
[WARN] Stderr for run(/root/.bbot/tools/chrome-linux/chrome --version):
/root/.bbot/tools/chrome-linux/chrome: error while loading shared libraries: libglib-2.0.so.0: cannot open shared object file: No such file or directory
[WARN] Setup hard-failed for gowitness: Failed to set up Google chrome. Please install manually or try again with --force-deps.
[WARN] gowitness: Setting error state
[ERRR] Setup hard-failed for 1 modules (gowitness) (--force to run module anyway)
The text was updated successfully, but these errors were encountered:
Additional Information
Using a bbot Docker container and building it from the repo I tried to add the following .
Attempted to install dependencies manually with the following commands:
apt-get update && apt-get install -y libglib2.0-0 libnss3 libx11-xcb1
and built the image from the source code .
Thanks for reporting. Issues like this are common in ubuntu, which is why we have ubuntu-specific tests. However right now it looks like our tests are passing. What's your ubuntu version?
bug is found on docker running on Mac (running x86 image format ) and Ubuntu running x86
While trying to use gowitness as part of the bbot webscan module in a Docker container, the setup process fails with an error related to a missing shared library, libglib-2.0.so.0. This issue prevents the gowitness module from functioning properly.
steps to Reproduce
bbot -t example.com -m safe
Expected Behavior
gowitness should successfully set up and run without errors, assuming all dependencies are met. (when asible runs dependencies check)
Actual Behavior
logs
The text was updated successfully, but these errors were encountered: