PHP Proxy/IP checking script

flashsites

Regular Member
Joined
Oct 27, 2015
Messages
241
Reaction score
32
I used to have a really nice proxy checker but somehow lost it :(
I want a simple IP checker that will let me know the speed and anon of my current IP.
Also check SOCKS proxies.

Basically I call this script and it returns all needed info.

It only needs to returnt he text. Any ideas where to find this code?
 
Last edited:
Proxylab.io they provide API with ip rotation,all what you have to do is find a developer on a freelancing website and ask him to create a scraping tool for you based on curl and proxylab API...

This tool task is rotating
ip address and user agent then fetch data, repeat again...
 
Proxylab.io they provide API with ip rotation,all what you have to do is find a developer on a freelancing website and ask him to create a scraping tool for you based on curl and proxylab API...

This tool task is rotating
ip address and user agent then fetch data, repeat again...

But if you want to check your current visitor if he is using a proxy or VPN, there is another API Called IP-APi...

This API returns a JSON, you will find all data about your visitor starting from ip to country if it's proxy or not...
 
But if you want to check your current visitor if he is using a proxy or VPN, there is another API Called IP-APi...

This API returns a JSON, you will find all data about your visitor starting from ip to country if it's proxy or not...
Im using this for my own bot. I use something to make requests from a proxy. I just want to check the proxy before sending the request. I'm used to returning:
REQUEST_TIME
REQUEST_SCHEMA

and other data like that. Is there a php script out there for that?
I found it a few years ago and cant seem to locate it.
 
Please delete. I realized I said it wrong
 
Im using this for my own bot. I use something to make requests from a proxy. I just want to check the proxy before sending the request. I'm used to returning:
REQUES:weep:IME
REQUEST_SCHEMA

and other data like that. Is there a php script out there for that?
I found it a few years ago and cant seem to locate it.

Understood, you can check the proxy through another website and set curl timeout to 3 seconds if failed add to blacklist try another...
 
I used to have a really nice proxy checker but somehow lost it :(
I want a simple IP checker that will let me know the speed and anon of my current IP.
Also check SOCKS proxies.

Basically I call this script and it returns all needed info.

It only needs to returnt he text. Any ideas where to find this code?

Check my reply to the other thread that you started. I posted a good free solution for you. I made a pretty good proxy harvester, checker and judge about three years ago or so. It is hosted on github.

I plan to improve it and convert it into a software some day.

https://github.com/SEODEMON/EXTREME-PROXY-HARVESTER-AND-CHECKER/
 
Last edited:
I used to have a really nice proxy checker but somehow lost it :(
I want a simple IP checker that will let me know the speed and anon of my current IP.
Also check SOCKS proxies.

Basically I call this script and it returns all needed info.

It only needs to returnt he text. Any ideas where to find this code?
here you go it free
https://www.php.net/manual/en/function.gethostbyaddr.php

it php written so it so easy to understand

got board

Code:
$ip = getenv('HTTP_CLIENT_IP')?: getenv('HTTP_X_FORWARDED_FOR')?: getenv('HTTP_X_FORWARDED')?: getenv('HTTP_FORWARDED_FOR')?: getenv('HTTP_FORWARDED')?: getenv('REMOTE_ADDR');
 
You can also check IP2LOCATION and IP2PROXY script to detect IP geolocation and proxy IP address.
 
Back
Top