You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
3 months ago | |
---|---|---|
cmd/infinite | 3 months ago | |
internal | 3 months ago | |
.gitignore | 3 months ago | |
LICENSE | 3 months ago | |
README.md | 3 months ago | |
go.mod | 3 months ago | |
go.sum | 3 months ago | |
sources.txt | 3 months ago |
README.md
Infinite
Infinite is a proxy scraper & checker made in Go
📋 Requirements
go (1.20+)
⚙️ Installation
git clone https://git.tcp.direct/perp/infinite
cd infinite/cmd/infinite
go install .
⚡️ Usage
Infinite is a proxy scraper & checker made in Go
Usage:
infinite [flags]
infinite [command]
Available Commands:
check Check proxies from a file
scrape Scrape proxies from a file
help Help about any command
Flags:
-h, --help help for infinite
Use "infinite [command] --help" for more information about a command.
Check proxies from a file
Usage:
infinite check [flags]
Flags:
-f, --file string Path to proxies file
-o, --output string Path to output proxies file
-4, --socks4 Filter socks4 proxies
-a, --socks4a Filter socks4a proxies
-5, --socks5 Filter socks5 proxies
-t, --threads int Thread amount (default 1)
-v, --verbose Verbose mode
-h, --help help for check
Scrape proxies from a file
Usage:
infinite scrape [flags]
Flags:
-f, --file string Path to sources file
-o, --output string Path to output proxies file
-t, --threads int Thread amount (default 1)
-v, --verbose Verbose mode
-h, --help help for scrape
Scrape proxies & save to a file
infinite scrape -f sources.txt -o proxies.txt -t 10 -v
Check socks5 proxies & save to a file
infinite check -f proxies.txt -o socks5.txt -t 100 -5