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!

Dark Media 2.1.7 Hardcoded[Free]

app is communicating with my server and successfully getting url to my iptv server
even it is communicating with my XC panel and getting my login details but still getting login failed error.
screenshots are attached with
any suggestion/help would be highly appreciable
Screenshot_20200129-021342_HttpCanary.jpgScreenshot_20200129-021348_HttpCanary.jpg
 
app is communicating with my server and successfully getting url to my iptv server
even it is communicating with my XC panel and getting my login details but still getting login failed error.
screenshots are attached with
any suggestion/help would be highly appreciable
did you change the package name and what version of the app are you using?
 
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
Is this method working with Xtream ui
 
Where is the file to download also can u just do a hardcoded version as I have no php script also I dont have a hosting a got scammed a while back paid 500 for some one to set one up for me and I refuse to pay again so if someone could help me that be great
 
Does not work on my Nvidia Shield...
 
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. Thats a good and clear tutorial but even tho I did exactly as it says my app crashes right away can make it to main screen.

Any advice or suggestions are welcome.

Please help. Oh also, i dont get how my app is going to point at server i mean, i entered the server and port thats on base64 but what the point of putting the same url in php file and in apk? Dont you mean to add the host url in apk so that apk sees the server url in the script?

Im confused.

Please help
 
I also get a login fail.. "please check your connection " after doing all steps and changing dns:port on base 64, also host/folder/file.php as base64.

Still failing.

Please some one advice.

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
Yes that will work but you can"t change package name or apk name . else the app will crash after loading data
Hi buddy,

Did you make it work linked to your server?

Can you help me?

I get error on my side.. but followed all steps please help
 
Now hash your package name and replace with your hash number in the $pn=" "
Hello friends, heeelp heeeelp ;)
i didn't really understand where it changes in which file
ss-2020-11-10-at-07-49-44.png
 
Hello friends, heeelp heeeelp ;)
i didn't really understand where it changes in which file
ss-2020-11-10-at-07-49-44.png
I did that bud, but still app closes not making to main screen.

I did all exactly as on guide but not working.

Where you at now?
 
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
Hello friends, heeelp heeeelp ;)
i didn't really understand where it changes in which file
ss-2020-11-10-at-07-49-44.png
Oh the md5 updated goes on the script for app where you put your dns in base64 and all that.
 
Where is the file to download also can u just do a hardcoded version as I have no php script also I dont have a hosting a got scammed a while back paid 500 for some one to set one up for me and I refuse to pay again so if someone could help me that be great
Well you have to create the script.. just copy and paste this one here.. if it needs to be accessible on web.. you can try doing that on dropbox just write path and change what needs to be changed. Dropbox is a host.. it hosts your pics and any files on it. You update the script shared here..
 
Oh the md5 updated goes on the script for app where you put your dns in base64 and all that.

I rewrote it better

PHP:
<?php

$dns = "some.server:8080";//   <--no http://
$package_name = "ac5c3f89ae331143eb8a33dc80a6adad"; //Do not change this unless you changed the package name


if(isset($_GET['d'])){

    $d = $_GET['d'];

    $pn = md5($package_name);

    if($d == $pn){

        echo base64_encode($dns);

    }else{

        echo "bmljZS50cnkuY29t";//base64 fake one for haters

    }

}

?>
 
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
I rewrote it better

PHP:
<?php

$dns = "some.server:8080";//   <--no http://
$package_name = "ac5c3f89ae331143eb8a33dc80a6adad"; //Do not change this unless you changed the package name


if(isset($_GET['d'])){

    $d = $_GET['d'];

    $pn = md5($package_name);

    if($d == $pn){

        echo base64_encode($dns);

    }else{

        echo "bmljZS50cnkuY29t";//base64 fake one for haters

    }

}

?>
Good buddy, so is it working for you now?
 
im not sure about the apk its over a year old, the php works...
So I understand you have not tried the apk with script?

Some apks are food to work for at least 3 years before an update is required.

I am using new and 2 or 3 year old apps.. and still good..

I will try the script later when on pc and try to link to apk..

I will share results..

By the way.. I tried both darkmedia apps and 2.1.8 is the one with more issues is the one foreclosing. Apk 2.17 opens to the login but will not see my dns.
 
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
I rewrote it better

PHP:
<?php

$dns = "some.server:8080";//   <--no http://
$package_name = "ac5c3f89ae331143eb8a33dc80a6adad"; //Do not change this unless you changed the package name


if(isset($_GET['d'])){

    $d = $_GET['d'];

    $pn = md5($package_name);

    if($d == $pn){

        echo base64_encode($dns);

    }else{

        echo "bmljZS50cnkuY29t";//base64 fake one for haters

    }

}

?>
After this fix, it already connects to the server....
but none of the streams work (no channel selection) maybe this one doesn't work with live tv ???
and there is no VOD option at all ...
Tested> Dark Media _2.1.8 his Xtream UI
Screenshot-20201110-215007.png
 
After this fix, it already connects to the server....
but none of the streams work (no channel selection) maybe this one doesn't work with live tv ???
and there is no VOD option at all ...
Tested> Dark Media _2.1.8 his Xtream UI
Screenshot-20201110-215007.png
Damn.. thats is a nice app tho.. I will see how can I do it.. do you know of a newer dark media apk?
 
shape1
shape2
shape3
shape4
shape5
shape6
Back
Top