⭐️ Leave me a start please ⭐️
it will motivate me to continue maintaining and adding futures
About | Technologies | Requirements | Starting | lib Usage | exec Usage | License | Author
Simple and fast proxy checker that include protocol validation;
The following tools were used in this project:
Before starting :checkered_flag:, you need to have Git and Rust installed.
```bash
$ cargo install open_proxies
$ curl https://github.com/KM8Oz/open_proxies/archive/refs/tags/[binary] ```
rust
use open_proxies::{compute_proxy, readfile}
#[tokio::main]
async fn main(){
let proxies = readfile("./socks5.txt".into(), ).await;
if proxies.is_some() {
println!("🔥 start computing! 🔥");
for proxie in proxies.unwrap() {
let is_valid = compute_proxy(proxie.clone(), 1, 2).await;
println!("{:?}", is_valid);
}
}
}
```
Usage: open_proxies [OPTIONS] --input
Options:
-i, --input
USAGE:
-a
This project is under license from MIT. For more details, see the LICENSE file.
Made with :heart: by @KM8Oz