https://github.com/mablanco/docker-metabigor
Docker image for Metabigor, an Intelligence Framework to do OSINT tasks without any API key
https://github.com/mablanco/docker-metabigor
docker pentesting security
Last synced: about 1 month ago
JSON representation
Docker image for Metabigor, an Intelligence Framework to do OSINT tasks without any API key
- Host: GitHub
- URL: https://github.com/mablanco/docker-metabigor
- Owner: mablanco
- License: gpl-3.0
- Created: 2020-01-09T12:41:16.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2026-01-10T23:59:09.000Z (6 months ago)
- Last Synced: 2026-04-30T00:38:36.006Z (2 months ago)
- Topics: docker, pentesting, security
- Language: Dockerfile
- Homepage:
- Size: 28.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-metabigor
Docker image for Metabigor, an Intelligence Framework to do OSINT tasks and more but without any API key (). This is a multistage Docker image that first compiles the Golang source code and then builds an image from scratch that hosts the resulting executable.
## How to use this image
I recommend to always run the Docker container with the `--rm` parameter, which will remove the container after finishing its execution, as Metabigor is a CLI tool that doesn't need to persist anything after running.
This command will run Metabigor with no parameters, thus showing its inline help:
$ docker run --rm mablanco/metabigor
This command will discover the IPs of a company/organization:
$ echo "company" | docker run -i --rm mablanco/metabigor net --org
There are more usage examples at
## How to build the image
Use the following command to build the image with the `latest` tag and the Metabigor version specified in the Dockerfile:
$ docker build -t mablanco/metabigor .
In case you want to build a different version, browse the available releases at and then use this command:
$ docker build --build-arg METABIGOR_VERSION= --build-arg -t mablanco/metabigor: .