INTRO

Have you ever faced some problems to become anonymous on the internet? or have you ever faced problems to connect to some website? websites like Bolly4u or some-other torrent sites are not easily accessible. to connect with such sites, you may need a VPN connection, a correct domain, or a proxy.

proxies can be very useful while cracking accounts. some of our users know it who have bought our Cracking Course. To buy our cracking course, you can visit ⇒ Cracking Course. proxies play a very important role in cracking. it is nearly impossible to crack accounts without proxies. if you have ever tried to crack accounts without proxies, you must know that the website on which you are logging in with different accounts will deny you requests after a while assuming that you are a robot. because you are continuously sending the requests by your IP. to prevent this situation, you will need to proxies.

In this tutorial, we are going to capture live working proxies with our Linux machine. we will try to use those proxies to keep ourselves anonymous on the internet. by the way, never use proxies while logging into some website. because the proxy server can capture the requests that you are making. it also applies to bank websites. then, you may allow the server to catch your card details even CVV number.

 

ATTACK

My favorite tool to grab proxies is “Proxybroker”. it is developed in python. you can simply install it in Linux via pip command. you can use this tool in any operating system which has Python installed.

Type this command to install it via pip:

pip3 install proxybroker

Screenshot:

let’s take a look at the help menu of Proxybroker. Type this command:

proxybroker --help

Screenshot:

As you can see we have four options (find, grab, serve, update-go) to run Proxybroker with. but this time, we are talking about grabbing proxies so we will use find and grab options. we will cover other options some other day.

First, let’s talk about find. you can use this option to find proxies. type this command:

proxybroker find

Screenshot:

As you can see that find requires some options to run. we can use --types to choose the type of proxy. if you want to choose speed, you can choose HTTP proxy or you can choose SOCKS for better security.

Type this command:

proxybroker find --types HTTPS

Screenshot:

you may see some errors like this:
I guess it is because I am using python3.8 to run Proxybroker. well, it isn’t a problem because these are just warning messages. we can still see the proxies. but if you look closely, you will see different countries. what if you want only Indian proxy in the result.

Type this command:

proxybroker find --types HTTPS -c IN

Screenshot:

but extracting proxies for a specific country can take some time. so, I will not recommend it.

you can use -l flag to set a limit of proxies in results. Type this command:

proxybroker find --types HTTPS -l 10

Screenshot:

As you can see that we have 10 proxies in the result.

Now, let’s move one to grab option.  this option will generate all kinds of proxy (HTTP, HTTPS, SOCK4, SOCKS5). you won’t need to use --type flag. basically, if you use grab , the tool won’t check any proxy.

Type this command to use the grab option:

proxybroker grab -l 10

Screenshot:

You can use -o flag to get all results in a text file. Type this command:

proxybroker grab -l 10 -o file.txt

Screenshot:
And now you can remove all those unnecessary characters with sublime or VisualStudio Code. and later you can use these proxies with some cracking tools.

 

 

Thanks For Visiting.

LEAVE A REPLY

Please enter your comment!
Please enter your name here