How to configure a proxy on iPhone

You can configure a proxy on iPhone via the WI-Fi settings. But because of the iOS security settings , the proxy will work just for browsing (via chrome, safari etc) but it won’t work on the applications.

Read More

How to put a proxy on Android

You can put the proxy on an android device via WI-FI settings. Because of the Android’s security, the proxies will not work on the applications. It will work just on the browsers (Chrome, Firefox etc) Connect to WI-FI network Settings->WI-FI Long tap on connected network’s name  Modify network config-> Show advanced options Set proxy settings

Read More

I get 407 Error Code

The 407 error  ( Proxy authentication required ) appears in one of this situations: you are using some proxies which aren’t anymore on your list ( have expired, were replaced, you got a new list) you are sending a bad user/pass for the proxies (maybe some extra spaces after the user or pass?) or you aren’t […]

Read More

I get the 403 Error Code

Usually, the 403 Error ( Forbidden ) means that the proxy got banned on that site, probably because too many requests were made in a short period of time. The ban might be temporary or not, depends on the site.

Read More

I get the 503 Error Code

Usually the 503 Error ( Service Unavailable ) means that the proxy got banned on that site, probably because too many requests were made in a short period of time. The ban might be temporary or not, depends on the site.

Read More

I get the 406 Error Code

The 406 error code appears if you use the same proxy from more than 2 computers in the same time. This error will disappear in max. 5 minutes after you stop using from more than 2 computers.

Read More

How to set up a proxy in Firefox

You must go to Firefox’s option and search for proxy Even if the proxies have user and password, those will be requested when you will visit the first page with the proxy. So on the Firefox’s settings you must enter just the IP and the Port. Also please make sure that you click to use […]

Read More

What is a subnet (range, C-class)

The subnet is made by the fist 3 numbers of an IP. For instance, if you have this IP 11.22.33.44,  that belongs to the subnet 11.22.33. Also all the IPs from 11.22.33.0 to 11.22.33.255 are in the same subnet 11.22.33.XXX . Having proxies from more subnets, is usually a good thing because you will have […]

Read More

How to use the proxies in python

import requests https=”https://user:pass@IP:port” http=”http://user:pass@IP:port” proxies = {“https”: https, “http”: http} url = ‘https://ipinfo.io’ r = requests.get(url, proxies=proxies) print (r.content)

Read More