Wiki

Clone wiki

ProxyKiller / Config Examples

ProxyKiller example configs


A collection of examples of configuring a ProxyKiller service

These examples are barebones and can be nonideal, it is recommended you build your own config.
On more detailed view on how the configs act and work, read the Config wiki page.


proxycheck.io

"ProxyKiller"
{
    "proxycheckio_key"  "Get yours from https://proxycheck.io/"

    "proxycheck.io"
    {
        "method"    "GET"
        "url"       "http://proxycheck.io/v2/{ip}"
        "params"
        {
            "vpn"   "1"
            "key"   "{{proxycheckio_key}}"
        }
        "response"
        {
            "type"      "json"
            "object"    "{ip}.proxy"
            "value"     "yes"
        }
    }
}

iphub.info

"ProxyKiller"
{
    "iphub_key"     "Get yours from https://iphub.info/"

    "iphub.info"
    {
        "method"    "GET"
        "url"       "http://v2.api.iphub.info/ip/{ip}"
        "headers"
        {
            "X-Key"     "{{iphub_key}}"
        }
        "response"
        {
            "type"      "json"
            "object"    "block"
            "value"     "1"
        }
    }
}

ip.teoh.io

"ProxyKiller"
{
    "ip.teoh.io"
    {
        "method"    "GET"
        "url"       "https://ip.teoh.io/api/vpn/{ip}"
        "response"
        {
            "type"      "json"
            "object"    "vpn_or_proxy"
            "value"     "yes"
        }
    }
}

blackbox.ipinfo.app

"ProxyKiller"
{
    "blackbox.ipinfo.app"
    {
        "method"    "GET"
        "url"       "https://blackbox.ipinfo.app/lookup/{ip}"
        "response"
        {
            "type"      "plaintext"
            "value"     "Y"
        }
    }
}

Updated