FavScout
A command-line tool to find the favicon hash of a list of URLs.
Description
FavScout is a simple and fast tool written in Go that takes a list of URLs as input and finds the hash of their favicon.ico file. It uses multithreading to process the URLs concurrently, making it very fast.
Usage
./FavScout -f <file_with_urls> -t <threads>
Arguments
-f: Path to the file containing the list of URLs (one URL per line).
-t: Number of threads to use (default is 10).
Installation
To build the tool from the source code, you need to have Go installed on your system. Then, you can run the following command:
go install github.com/Fis3rm4n/FavScout@latest
This will create a binary named FavScout in the current directory.
Example
-
Create a file named urls.txt with the following content:
http://google.com
http://github.com
http://example.com
-
Run the tool with the following command:
./FavScout -f urls.txt
-
The output will be:
http://github.com [359902141]
http://google.com [2294604136]
http://example.com