EUOSINT is the open-source edition of our OSINT pipeline, used across multiple installations and packaged for local and server deployment.
This repository has been prepared for public use by removing non-public, internal, and protected source integrations while keeping the operational pipeline structure intact.
if command -v docker-compose >/dev/null 2>&1; then
docker-compose up --build
else
docker compose up --build
fi
The application will be available at http://localhost:8080.
You can also use the Make targets for local HTTP development:
make dev-start
make dev-stop
make dev-restart
make dev-logs
wget -qO- https://raw.githubusercontent.com/scalytics/EUOSINT/main/deploy/install.sh | bash
The installer will:
ghcr.io/scalytics/euosint-web + ghcr.io/scalytics/euosint-collector)preserve or fresh volume reset)EUOSINT_SITE_ADDRESS)ufw/firewalld and validate local 80/443 availabilityoptionally run docker compose pull and start with --no-build
The release pipeline builds two images: a web image and a Go collector image.
volta install node@25.8.1 npm@11.11.0
npm install
npm run fetch:alerts:watch
npm run dev
For resilient 24/7 collection with auto-restart on crashes:
npm run collector:run
Tuning examples:
INTERVAL_MS=120000 MAX_PER_SOURCE=80 npm run collector:run
INTERVAL_MS=120000 RECENT_WINDOW_PER_SOURCE=20 ALERT_STALE_DAYS=14 npm run collector:run
Minimal required runtime variables are in .env.example.
Advanced tuning variables and defaults are documented in docs/advanced-config.md.
make check
make ci
make docker-build
make release-patch, make release-minor, and make release-major create and push semver tags that trigger the release workflow..github/workflows/branch-protection.yml applies protection to main using the ADMIN_GITHUB_TOKEN repository secret.buildx, and release images publish to GHCR on semver tags.ghcr.io/<owner>/<repo>-web and ghcr.io/<owner>/<repo>-collector.docker-compose up --build or docker compose up --build runs the Go collector as a background refresh service and serves generated JSON through the Caddy web container.25.8.1 and npm 11.11.0 via package.json, .nvmrc, and .node-version.LICENSE applies to repository-local materials and modifications.