What is best proxy scraper in 2019 ?

aka3941

Regular Member
Joined
Mar 5, 2019
Messages
255
Reaction score
47
Hi
I want to get fast proxy list
Any good software to scrape ?
Thank you
 
Stop using windows. Install linux and use "nmap" with custom options .. here's a starting command "nmap -n -T4 -sS -p 1080 --script socks-open-proxy -iR 5000 > proxy.lst"
 
There is an open source python software called proxybroker
 
I think there is a free proxy list on HMA website for public use. You can get free proxies from there. I have just used some of them a month ago and they were helpful for me.
 
Stop using windows. Install linux and use "nmap" with custom options .. here's a starting command "nmap -n -T4 -sS -p 1080 --script socks-open-proxy -iR 5000 > proxy.lst"

Thats cool man I already use linux but don't you still need sources list for where to find the proxies on the net?
 
Here is the UPDATED Nmap command, which will output only OPEN proxies in IP:port format. I created a command via AWK to filter.
Code:
nmap -n -T4 -sS -p 1080 --script socks-open-proxy -iR 5000 | awk  -v RS="Nmap scan report for " '$0 ~ "open" {print $1":1080" }' > proxy.lst

and NO there is NO source list. this NMAP command works by trying RANDOM IP addresses it just guesses. You can see from above command it tries "5000 random IP on port 1080" see how it works?

If you want a service that uses source sites to find proxies, use ProxyBroker.

Example ProxyBroker script:
Code:
proxybroker find -l 20 --types SOCKS4 SOCKS5 --lvl anonymous --strict --countries US --data proxy.lst

NB this is all for LINUX ! I use "Kali 2" (based on debian) for my OS

I should make a separate thread of this ...

If you need private proxies list, there is a 10$/month paid subscription that contains multiple proxy services (proxy-daily;didsoft,coolproxies,allproxies,proxyscrape) updated every 15 min.
you can test the service for 1 week before buy.
you will have to Click join and register
mediafire.com/file/u4ueqdxextp10y9/SkynetClient.rar/file
PM for link

Stupid noob. Shush. go away get banned.
 
Here is the UPDATED Nmap command, which will output only OPEN proxies in IP:port format. I created a command via AWK to filter.
Code:
nmap -n -T4 -sS -p 1080 --script socks-open-proxy -iR 5000 | awk  -v RS="Nmap scan report for " '$0 ~ "open" {print $1":1080" }' > proxy.lst

and NO there is NO source list. this NMAP command works by trying RANDOM IP addresses it just guesses. You can see from above command it tries "5000 random IP on port 1080" see how it works?

If you want a service that uses source sites to find proxies, use ProxyBroker.

Example ProxyBroker script:
Code:
proxybroker find -l 20 --types SOCKS4 SOCKS5 --lvl anonymous --strict --countries US --data proxy.lst

NB this is all for LINUX ! I use "Kali 2" (based on debian) for my OS

I should make a separate thread of this ...



Stupid noob. Shush. go away get banned.

Is there any way to test Proxybroker against Google for Google passed proxies?

Would LOVE to see a thread for this specifically.
 
Back
Top