Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
sp00fing authored Jan 8, 2024
1 parent 0d04738 commit aec4c9e
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions Proxy parser (HTTP, HTTPS, SOCKS4, SOCKS5)/PARSER.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
echo "" > socks4.txt
echo "" > socks5.txt
echo "" > http.txt

wget -O - https://raw.githubusercontent.com/TuanMinPay/live-proxy/master/http.txt >> http.txt
wget -O - https://raw.githubusercontent.com/TuanMinPay/live-proxy/master/socks4.txt >> socks4.txt
wget -O - https://raw.githubusercontent.com/TuanMinPay/live-proxy/master/socks5.txt >> socks5.txt

wget -O - https://raw.githubusercontent.com/casals-ar/proxy-list/main/https >> http.txt
wget -O - https://raw.githubusercontent.com/casals-ar/proxy-list/main/socks4 >> socks4.txt
wget -O - https://raw.githubusercontent.com/casals-ar/proxy-list/main/socks5 >> socks5.txt

wget -O - https://raw.githubusercontent.com/prxchk/proxy-list/main/http.txt >> http.txt
wget -O - https://raw.githubusercontent.com/prxchk/proxy-list/main/socks4.txt >> socks4.txt
wget -O - https://raw.githubusercontent.com/prxchk/proxy-list/main/socks5.txt >> socks5.txt

wget -O - https://raw.githubusercontent.com/MuRongPIG/Proxy-Master/main/http.txt >> http.txt
wget -O - https://raw.githubusercontent.com/MuRongPIG/Proxy-Master/main/socks4.txt >> socks4.txt
wget -O - https://raw.githubusercontent.com/MuRongPIG/Proxy-Master/main/socks5.txt >> socks5.txt

wget -O - https://raw.githubusercontent.com/TheSpeedX/PROXY-List/master/http.txt >> http.txt
wget -O - https://raw.githubusercontent.com/TheSpeedX/PROXY-List/master/socks4.txt >> socks4.txt
wget -O - https://raw.githubusercontent.com/TheSpeedX/PROXY-List/master/socks5.txt >> socks5.txt

wget -O - https://raw.githubusercontent.com/roosterkid/openproxylist/main/SOCKS4_RAW.txt >> socks4.txt
wget -O - https://raw.githubusercontent.com/roosterkid/openproxylist/main/SOCKS5_RAW.txt >> socks5.txt

wget -O - https://raw.githubusercontent.com/hookzof/socks5_list/master/proxy.txt >> socks5.txt

wget -O - https://raw.githubusercontent.com/monosans/proxy-list/main/proxies/http.txt >> http.txt
wget -O - https://raw.githubusercontent.com/monosans/proxy-list/main/proxies/socks4.txt >> socks4.txt
wget -O - https://raw.githubusercontent.com/monosans/proxy-list/main/proxies/socks5.txt >> socks5.txt

wget -O - https://raw.githubusercontent.com/ALIILAPRO/Proxy/main/http.txt >> http.txt
wget -O - https://raw.githubusercontent.com/ALIILAPRO/Proxy/main/socks4.txt >> socks4.txt
wget -O - https://raw.githubusercontent.com/ALIILAPRO/Proxy/main/socks5.txt >> socks5.txt

wget -O - https://raw.githubusercontent.com/ErcinDedeoglu/proxies/main/proxies/https.txt >> http.txt
wget -O - https://raw.githubusercontent.com/ErcinDedeoglu/proxies/main/proxies/socks4.txt >> socks4.txt
wget -O - https://raw.githubusercontent.com/ErcinDedeoglu/proxies/main/proxies/socks5.txt >> socks5.txt

wget -O - https://raw.githubusercontent.com/Zaeem20/FREE_PROXIES_LIST/master/https.txt >> http.txt
wget -O - https://raw.githubusercontent.com/Zaeem20/FREE_PROXIES_LIST/master/socks4.txt >> socks4.txt
wget -O - https://raw.githubusercontent.com/Zaeem20/FREE_PROXIES_LIST/master/socks5.txt >> socks5.txt

wget -O - https://raw.githubusercontent.com/mmpx12/proxy-list/master/https.txt >> http.txt
wget -O - https://raw.githubusercontent.com/mmpx12/proxy-list/master/socks4.txt >> socks4.txt
wget -O - https://raw.githubusercontent.com/mmpx12/proxy-list/master/socks5.txt >> socks5.txt

sort socks4.txt | uniq > s4.txt
sort socks5.txt | uniq > s5.txt
sort http.txt | uniq > ht.txt

sed -i 's|^|socks4://|' s4.txt
sed -i 's|^|socks5://|' s5.txt
sed -i 's|^|http://|' ht.txt

cat s4.txt s5.txt ht.txt > proxies.txt

0 comments on commit aec4c9e

Please sign in to comment.