Skip to content

Instantly share code, notes, and snippets.

@theSoberSobber
Last active December 29, 2022 06:17
Show Gist options
  • Save theSoberSobber/11de343e2c7ad7f69c87dd49603041c1 to your computer and use it in GitHub Desktop.
Save theSoberSobber/11de343e2c7ad7f69c87dd49603041c1 to your computer and use it in GitHub Desktop.
builds a list of currently working http proxies from https://github.com/TheSpeedX/PROXY-List
#!/bin/bash
curl https://raw.githubusercontent.com/TheSpeedX/SOCKS-List/master/http.txt -o init.txt
while read -r p_url
do
echo $p_url
curl -x $p_url "https://checkip.amazonaws.com/"
done < "$(pwd)/init.txt"
rm -r init.txt
@theSoberSobber
Copy link
Author

will fix dw

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment