Metabigor
- Thiru T
- Oct 30, 2024
- 1 min read
Metabigor is Intelligence tool, its goal is to do OSINT tasks and more but without any API key.
Main Features:
Searching information about IP Address, ASN and Organization.
Wrapper for running rustscan, masscan and nmap more efficient on IP/CIDR.
Finding more related domains of the target by applying various techniques (certificate, whois, Google Analytics, etc).
Get Summary about IP address (powered by @thebl4ckturtle)
Install:
go install github.com/j3ssie/metabigor@latestUsage:
# discovery IP of a company/organization
echo "company" | metabigor net --org -o /tmp/result.txt
# Getting more related domains by searching for certificate info
echo 'Target Inc' | metabigor cert --json | jq -r '.Domain' | unfurl format %r.%t | sort -u # this is old command
# Only run rustscan with full ports
echo '1.2.3.4/24' | metabigor scan -o result.txt
# Reverse Whois to find related domains
echo 'example.com' | metabigor related -s 'whois'
# Get Google Analytics ID directly from the URL
echo 'https://example.com' | metabigor related -s 'google-analytic'



Comments