
UnauthScout is an OSINT (Open Source Intelligence) tool developed in Bash for passive exploration of assets on version control platforms (GitLab and GitHub).
UnauthScout is a CLI tool for unauthenticated OSINT reconnaissance on public developer platforms such as GitHub and GitLab.
It standardizes the collection of publicly available user data using a consistent interface and normalized JSON output contracts.
Public developer platforms expose valuable reconnaissance data without requiring authentication. However, this data is often inconsistent across providers and hard to consume programmatically.
UnauthScout addresses this by:
curljqgit clone https://github.com/rmottanet/unauthscout.git
cd unauthscout
chmod +x bin/unauthscout
unauthscout <username>
unauthscout <username> --raw
By default, UnauthScout outputs normalized JSON that conforms to the
corresponding schema under schemas/.
Normalized outputs are defined via JSON Schema:
schemas/github_user.jsonschemas/gitlab_user.jsonThese schemas are the source of truth for all processed output and ensure stable, predictable data structures.
bin/ # CLI entry point and orchestration
lib/ # Provider integrations and parsing logic
schemas/ # Normalized data contracts (JSON Schema)
docs/ # Documentation as code
tests/ # Automated tests (optional)