ingrownpocket (OP)
Legendary
Offline
Activity: 952
Merit: 1000
|
|
October 27, 2013, 09:36:35 PM |
|
I need a service/website that detects visitors using proxies/vpn/tor. http://www.blocked.com/ is way too expensive. Ideas?
|
|
|
|
Raoul Duke
aka psy
Legendary
Offline
Activity: 1372
Merit: 1002
|
|
October 27, 2013, 09:47:49 PM |
|
|
|
|
|
Raoul Duke
aka psy
Legendary
Offline
Activity: 1372
Merit: 1002
|
|
October 27, 2013, 09:56:01 PM |
|
|
|
|
|
Raoul Duke
aka psy
Legendary
Offline
Activity: 1372
Merit: 1002
|
|
October 27, 2013, 10:50:59 PM |
|
Fatal error: Call to a member function query() on a non-object in /www/joshglazebrook.com/public_html/api/proxydetection/v1/query/tools/functions.php on line 330 There's always BadBehaviour. And it's way faster that using a remote API.
|
|
|
|
balanghai
|
|
October 27, 2013, 10:53:00 PM |
|
Do you have a problem with tor users? Or you're just afraid of legal implications?
|
|
|
|
Raoul Duke
aka psy
Legendary
Offline
Activity: 1372
Merit: 1002
|
|
October 27, 2013, 10:56:12 PM |
|
Tested with a few popular VPNs, didn't detect any of them VPN's are trickier to block. You're better off just blocking any IP that belongs to a datacenter. There was a list of them IP's at Github.
|
|
|
|
BitcoinFX
Legendary
Offline
Activity: 2646
Merit: 1722
https://youtu.be/DsAVx0u9Cw4 ... Dr. WHO < KLF
|
|
October 27, 2013, 11:41:36 PM |
|
I need a service/website that detects visitors using proxies/vpn/tor. http://www.blocked.com/ is way too expensive. Ideas? I'm fairly sure that the free version of Blocked.com® blocks Tor exit nodes by 'default' for a certain number of requests per month. See: http://www.blocked.com/pricing.php... iblocklist.com has a Tor node list that you could block with .htaccess See: https://www.iblocklist.com/lists.php?category=organizations (The Onion Router). Most main Tor exit nodes don't change IP. You could probably update it around once a month. Do you want to just block traffic and/or redirect it ?
|
|
|
|
BitcoinFX
Legendary
Offline
Activity: 2646
Merit: 1722
https://youtu.be/DsAVx0u9Cw4 ... Dr. WHO < KLF
|
|
October 28, 2013, 12:00:35 AM Last edit: October 28, 2013, 12:19:52 AM by BitcoinFX |
|
What difference does it make? I want to block certain IPs from creating new accounts and performing various different tasks on my sites.
Not that much difference really I guess. You can aim to make blocking visitors as user friendly as possible though. I was going to offer to accept your redirects perhaps.
|
|
|
|
bitcoindigi
|
|
October 28, 2013, 05:45:16 AM |
|
Bitcoin site that blocks TOR? what comes next, ID verification? Just block free proxies and you're fine I guess http://ipinfodb.com/ maybe
|
|
|
|
rigel
Legendary
Offline
Activity: 1240
Merit: 1001
Thank God I'm an atheist
|
|
July 27, 2014, 04:16:38 AM |
|
Did you find a good way to block VPN too?
I'm interested too
|
|
|
|
BTCmoons
|
|
July 27, 2014, 04:38:29 AM |
|
Do you have a problem with tor users? Or you're just afraid of legal implications?
I have a lot of problems with Tor users. You could probably just block known TOR exit nodes to solve most of your problems. There are so many proxies and VPNs, and they are always popping up that you will never be able to stop them all.
|
|
|
|
|
|
🏰 TradeFortress 🏰
Bitcoin Veteran
VIP
Legendary
Offline
Activity: 1316
Merit: 1043
👻
|
|
July 27, 2014, 05:05:42 AM |
|
If you actually read the paper it covers 'Tor', 'PHPProxy', 'Glype', etc. Not VPNs. Patterns/triggers won't detect VPNs. You need an up to date, curated list for them.
|
|
|
|
leahsandes
Newbie
Offline
Activity: 8
Merit: 0
|
|
July 27, 2014, 05:08:10 AM |
|
Excellent. Carlos if you buy this script you can just give the BTC direct to the people he owes. No need to waste transaction fees.
|
|
|
|
RedDiamond
|
|
July 27, 2014, 06:22:05 AM |
|
If you actually read the paper it covers 'Tor', 'PHPProxy', 'Glype', etc. Not VPNs. Patterns/triggers won't detect VPNs. You need an up to date, curated list for them. I think IPHub.info has such a list but unfortunately I have no idea how accurate it is.
|
|
|
|
|
chmanmeow
Newbie
Offline
Activity: 9
Merit: 0
|
|
September 27, 2017, 03:17:11 AM |
|
Another free alternative to try is https://getipintel.net , it uses machine learning and probability theory algorithms to generate a score.
|
|
|
|
bitfmx
Newbie
Offline
Activity: 2
Merit: 0
|
|
August 18, 2018, 06:30:07 PM |
|
https://www.voxprox.com/Simple php example. <?php $apikey = "Your API Key";
$ip = "52.18.43.74"; $url = "https://www.voxprox.com/pmx.php?key=$apikey&ip=$ip";
$response = file_get_contents($url); $response = json_decode($response, true);
// Return values VPN, Public Proxy, Web Proxy, Tor, BadIP, Bogon, Spam
if (isset($response['VPN'])) { echo("VPN detected"); }
|
|
|
|
_oh_no_stop_this_
|
|
August 18, 2018, 07:33:03 PM |
|
Would you like to save visitors' digital fingerprints as well? Then you can track people by their profiles, not just IP address and cookies
|
|
|
|
|