Welcome to World of IPTV

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?

Forum Rules

Our Rules: Read to avoid getting banned!

Advertising

Introduce Yourself to the World with Us!

Resource Database

Find the newest resources around IPTV!

Account upgrade

Upgrade your account to unlock more benefits!

Request ISP Fix help

Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
Okay, someone should come out and write us here what is the isp problem with us. Or let employees share the isp.php file.
For this, we need to donate to someone else. everyone is hiding this like a secret.
 
There is something in .../isp/api.php. Last time adding ssl line to code fixed the problem.
It seems now they changed something with parsing or i dont know. I tried some combinations but no succeed.
I hope cesarcrespo or some other will reveal fix. For every donation I am here.
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
uhmm no, isnot working normally, reporting " no isp" :(

some suggestion?
 
I never gave a significant importance to the ISP, but after this topic I tested several solutions also here on my side and nothing successful, I mainly tried the emre github settings. I must have missed something.
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
$tvpnproxy = "Proxy détecté";

It works, I think this part was a problem
Thanks
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
Hi, api fix
Have fix the code

Code:
<?php
if (!empty($_GET["ip"])) {
    $ipserver = $_GET["ip"];
    function url_result($url)
    {
        $ch = curl_init();
        $userAgent = 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 GTB5';
        curl_setopt($ch, CURLOPT_USERAGENT, $userAgent);
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
        curl_setopt($ch, CURLOPT_AUTOREFERER, true);
        curl_setopt($ch, CURLOPT_TIMEOUT, 30);
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
        // curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
        curl_setopt($ch, CURLOPT_HTTPHEADER,     array('Content-Type: text/xml'));
        curl_setopt($ch, CURLOPT_HEADER, 0);
        $data = curl_exec($ch);
        return $data;
    }
    function get_between($content, $start, $end)
    {
        $r = explode($start, $content);
        if (isset($r[1])) {
            $r = explode($end, $r[1]);
            return $r[0];
        }
        return '';
    }
    function type_name($ttype)
    {
        if ($ttype == "Proxy Public") {
            return "PROXY";
        } elseif ($ttype == "DCH") {
            return "HOSTING";
        } else {
            return $ttype;
        }
    }
    $backup = 'apibackup.txt';
    $content = file_get_contents($backup);
    $boss = strpos($content, "$ipserver =");
    $ledebut = "$ipserver = ";
    $lafin = "\n";
    if ($boss !== false) {
        $koko = get_between($content, $ledebut, $lafin);
        echo $koko;
    } else {
        $dataports = url_result("https://awebanalysis.com/fr/ip-lookup/$ipserver/");
        $startru = "ISP</b></th>\n";
        $endru ='</td>';
        $isp = trim(get_between($dataports, $startru, $endru));
        $startaaz = "mt2\"></span>";
        $endaaz = '</td>';
        $countryy = trim(get_between($dataports, $startaaz, $endaaz));
        $startaaz22 = "Code CCTLD</td>\n";
        $endaaz22 = '</td>';
        $countryycode = trim(get_between($dataports, $startaaz22, $endaaz22));
        $tvpnproxy = "Proxy détecté";
        $startoz = "Type de proxy</b></th>\n";
        $endoz = '</b>';
        if (strpos($dataports, $tvpnproxy)) {
            $vpnproxy = '1';
            $ttype = trim(get_between($dataports, $startoz, $endoz));
        } else {
            $vpnproxy = '0';
            $ttype = 'HOME';
        }
        $ayeh = '{"status":1,"isp_info":{"description":"' . $isp . '","is_server":"' . $vpnproxy . '","type":"' . type_name($ttype) . '","country_code":"' . $countryycode . '","country_name":"' . $countryy . '"}}';
        echo $ayeh;
        $wayy = "$ipserver = $ayeh";
        $byte = file_put_contents($backup, $wayy . "\r\n", FILE_APPEND | LOCK_EX);
    }
} else {
    echo 'come back with an ip';
}
?>
Thank you mate, that's it.
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
it's not all there are missing things
This is out
Code:
HTTP/1.1 200 OK
Connection: keep-alive
Content-Type: text/html; charset=UTF-8
Date: Fri, 18 Mar 2022 11:38:09 GMT
Server: nginx/1.16.1
Transfer-Encoding: chunked

{
    "isp_info": {
        "country_code": "PL",
        "country_name": "Pologne",
        "description": "OVH SAS",
        "is_server": "1",
        "type": "HOSTING"
    },
    "status": 1
}
 
shape1
shape2
shape3
shape4
shape5
shape6
Back
Top