proxytools

- collection of scripts for harvesting & testing proxies
git clone git://git.acid.vegas/proxytools.git
Log | Files | Refs | Archive | README | LICENSE

shellscrape (793B)

      1 #!/bin/env bash
      2 # shellscrape - developed by acidvegas (https://git.acid.vegas/proxytools)
      3 
      4 URLS=(
      5 	"https://raw.githubusercontent.com/ALIILAPRO/Proxy/main/socks4.txt"
      6 	"https://raw.githubusercontent.com/ALIILAPRO/Proxy/main/socks5.txt"
      7 	"https://raw.githubusercontent.com/B4RC0DE-TM/proxy-list/main/SOCKS4.txt"
      8 	"https://raw.githubusercontent.com/B4RC0DE-TM/proxy-list/main/SOCKS5.txt"
      9 	"https://raw.githubusercontent.com/hookzof/socks5_list/master/proxy.txt"
     10 	"https://raw.githubusercontent.com/HyperBeats/proxy-list/main/socks4.txt"
     11 	"https://raw.githubusercontent.com/HyperBeats/proxy-list/main/socks5.txt"
     12 )
     13 
     14 [ -f proxies.txt ] >proxies.txt
     15 for URL in "${URLS[@]}"; do
     16     echo "Downloading from $URL"
     17     curl -s $URL >> proxies.txt &
     18 done
     19 sort -u -o proxies.txt proxies.txt
     20 echo "done"