A lightweight, efficient OSINT tool built in Go for username and keyword searches across multiple platforms. Inspired by Sherlock but optimized for simplicity and speed using Go routines.
- Username Search: Find digital footprints across various platforms
- Keyword Discovery: Uncover URLs related to specific search terms
- Domain Search: Identify platforms associated with a domain
- Concurrent Processing: Leverages Go routines for fast, efficient searches
- File Output: Save search results for later analysis
- Platform Specific: Option to target searches to individual platforms
- Clone and build:
git clone https://github.com/vehbiu/go-osint.git
cd go-osint
go build
- Run a search:
go-osint username johndoe
go-osint [type] [term] (platform)
-
All-Platform Username Search:
go-osint username johndoe
-
Platform-Specific Search:
go-osint username johndoe github
-
Keyword Search:
go-osint keywords johndoe.22
-
Domain Search:
go-osint domain example.com
-
Save Results to File:
go-osint username johndoe --output results.txt
go-osint/
βββ main.go # Entry point
βββ username/ # Username-specific search functions
βββ keywords/ # Keyword-specific search functions, (currently only google seearches)
βββ domain/ # Domain-specific search functions
βββ README.md # Documentation
- Built in Go for maximum efficiency
- Uses Go routines for concurrent searches
- Platform-specific functions for unique handling
This project is licensed under the MIT License - see the LICENSE file for details.
Contributions are welcome! Feel free to:
- Open issues
- Submit pull requests
- Suggest new platforms to add
Vehbi
- GitHub: @vehbiu
This tool is for educational purposes only. Users are responsible for ensuring their usage complies with applicable laws and respects privacy.
- Inspired by Sherlock
While this project shares similarities with Sherlock, it's different. Rather than copying sherlock, the methods are implemented manually (which can be seen from the abstraction), although not the greatest, it works for such a project.
Made with β€οΈ by @vehbiu