Welcome to World of IPTV

With

+23k members
+11k threads
+106k posts

we are the most popular IPTV community on the web. 

IMPORTANT NOTE:
WE HAVE RECENTLY NOTICED THAT TOO MANY DOUBLE FAKE ACCOUNTS ARE CREATED IN THE PAST.
TO PREVENT THIS ISSUE THE DECISION WAS MADE THAT IN THE FUTURE A ANNUALLY FEE 20 EURO WILL BE RAISED FOR NEW MEMBERSHIPS.

Join now to the World of IPTV

Forum Rules

Before you start, check out the forum rules first

Account upgrade

Upgrade your account to get access to full features

Advertising

Would you like to place your advertisement with us ?

Resources Manager

Hundreds of IPTV scripts and apps are available for download
Updates Source: XtreamUI  CK MOD 41 - Free Access

Resource Updates Source: XtreamUI CK MOD 41 - Free Access

inax93

Basic Member
Basic Member
Joined
Nov 6, 2021
Messages
40
Reaction score
14
Points
19
Location
France
Here is the settings.php from CK mods 41 that I decoded. Its only the single file as I don't want to break any forum rules uploading loads of files.
Hey mate can you contact me on Telegram please? I can't use pm here unfortunately...

Thanks
 
Last edited by a moderator:
K

Kenxo

Guest
installing manually the LB is not really an issue but it was fun to have to be able to install it directly from the panel itself. Maybe if we can find a way to fix or correct some of the links that are going back to xcodes.mine.nu that would be great.

If we can find out what the contents were in these specific files from that site http://xcodes.mine.nu/XCodes/

installBalancer.py fbreload.py and fbremake.py , updategeolite.py and updateyoutube.py , we can setup on our own hosts and add the files there

Also i don't know if anyone noticed but if you click on General Settings it takes a while to load now because its trying to get status info from http://xcodes.mine.nu/XCodes/ for the updates tab but after a 10 second timeout it finally opens.

This is because the Panel is looking for these specific files from http://xcodes.mine.nu/XCodes/ which are current.json , infos.json and status.json

current.json i believe checks your current panel version and see ifs an update is required
infos.json provide the infos for the current and previous mod releases (right now the update page is empty)
status.json i believe gets the Geolite2 version to see if its newer than what you are using.

But we need a decrypted settings.php to update this
remakers

main untouched original gta files

sub (loadbalans)

update CK 41


geolite 2 can be given this url

https://bitbucket.org/emre1393/xtreamui_mirror/downloads/GeoLite2.mmdb #
we must ask emre1393 if this is ok to make public or not . If he is against this than we will remove the link
And yes you have to edit all URLs that have paths to the needed files ...
If someone wants to donate for the permanent download server for all needed files can donate to admin redhat and after we collect the donations we can see for how much time we will buy this server and sure we gonna make this free and public for all WOI Members ..
 

Attachments

  • jasonfiles.zip
    1.6 KB · Views: 84
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 @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
K

Kenxo

Guest
remakers

main untouched original gta files

sub (loadbalans)


geolite 2 can be given this url

https://bitbucket.org/emre1393/xtreamui_mirror/downloads/GeoLite2.mmdb #
we must ask emre1393 if this is ok to make public or not . If he is against this than we will remove the link
And yes you have to edit all URLs that have paths to the needed files ...
If someone wants to donate for the permanent download server for all needed files can donate to admin redhat and after we collect the donations we can see for how much time we will buy this server and sure we gonna make this free and public for all WOI Members ..
All these files should be edited and changed with their own URL files before we can have a donated download server for these files or redhat can help with something ..
before all this is useful we should put the decoded settings.php file with all edited links for the above files ..
 

mikekap1981

Basic Member
Basic Member
Joined
Feb 24, 2021
Messages
23
Reaction score
23
Points
14
Location
Canada
After doing some tests i figured out what the current.json (Panel) file is supposed to show and its very simple

{
"version": 41
}
i changed the version to 42 as a test and sure enough you get the click here to update to CK 42 link so thats as simple as that.

as for the status.json (Geolite2) file its the same thing all you need is this

{
"version": 20230112
}
I also changed that number higher and i did get a message saying to update geolite2 click here.

we should have the current.json / status.json and infos.json hosted somewhere if we want to make future updates.

Also i see the update button for the panel update and geolite update uses the functions.php file . On a decoded functions file i see 5 locations where it shows xcodes.mine.nu which also needs to be changed to another host.

$rURL = "http://xcodes.mine.nu/XCodes/status.json";

$rFileData = file_get_contents("http://xcodes.mine.nu/XCodes/GeoLite2.mmdb");

$rURL2 = "http://xcodes.mine.nu/XCodes/current.json";

exec("wget \"http://xcodes.mine.nu/XCodes/update.zip\" -O /tmp/update.zip -o /dev/null");

exec("wget http://xcodes.mine.nu/XCodes/GeoLite2.mmdb -O /home/xtreamcodes/iptv_xtream_codes/GeoLite2.mmdb -o /dev/null");
 
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 @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

keyvpn

Extended Member
Ext. Member
Joined
Oct 18, 2019
Messages
23
Reaction score
5
Points
14
Location
London
After doing some tests i figured out what the current.json (Panel) file is supposed to show and its very simple


i changed the version to 42 as a test and sure enough you get the click here to update to CK 42 link so thats as simple as that.

as for the status.json (Geolite2) file its the same thing all you need is this


I also changed that number higher and i did get a message saying to update geolite2 click here.

we should have the current.json / status.json and infos.json hosted somewhere if we want to make future updates.

Also i see the update button for the panel update and geolite update uses the functions.php file . On a decoded functions file i see 5 locations where it shows xcodes.mine.nu which also needs to be changed to another host.
Can you post decoded functions.php?
 

Justme1901

Basic Member
Basic Member
Joined
Sep 27, 2021
Messages
40
Reaction score
45
Points
29
Location
UK
After doing some tests i figured out what the current.json (Panel) file is supposed to show and its very simple


i changed the version to 42 as a test and sure enough you get the click here to update to CK 42 link so thats as simple as that.

as for the status.json (Geolite2) file its the same thing all you need is this


I also changed that number higher and i did get a message saying to update geolite2 click here.

we should have the current.json / status.json and infos.json hosted somewhere if we want to make future updates.

Also i see the update button for the panel update and geolite update uses the functions.php file . On a decoded functions file i see 5 locations where it shows xcodes.mine.nu which also needs to be changed to another host.

Where did you locate the current.json (Panel) file?
 

inax93

Basic Member
Basic Member
Joined
Nov 6, 2021
Messages
40
Reaction score
14
Points
19
Location
France
really not correct that we can't even send private messages, or download any not protected thing that is posted... nor we can even open/zoom on images... it makes no sense to limits access that much...
 
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 @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

mikekap1981

Basic Member
Basic Member
Joined
Feb 24, 2021
Messages
23
Reaction score
23
Points
14
Location
Canada
@Justme1901 - the 3 files are current.json / status.json and infos.json which are in the settings.php file its currently pointed to xcodes.mine.nu . current.json just shows the Panel version number which is currently 41 , status.json shows the geolite2 version for me its 20230112 . infos.json shows what was updated in the recent panel versions under the Updates tab in the settings. We just have to create the files and have it hosted. Right now if you leave it pointing to xtream.mine.nu , the settings page takes a few seconds longer to load because its trying to grab the info from there but the site has been shut off to the public. If you just remove that domain or change it to somewhere else it will fix the load time of the page.

These files are also important if we eventually want to have the Panel and Geolite updated constantly to newer versions. Thats where the functions.php comes in because if there is a new update it goes and tries to grab the new panel/geolite2 versions from the links in the functions.php which is also currently pointed to xcodes.mine.nu

@keyvpn - i found it online by searching but i can't be sure its from CK41. We need to test it to be sure if it works live. If someone else has a decrypted version of the full CK41 please check and see if anything is missing on it. The only reason i searched for functions.php its because someone in this thread mentioned it on the first page. I'm wondering now if there are any other files that have that domain hidden.

Decoded settings/functions
 

On4sat

Extended Member
Ext. Member
Joined
Jul 2, 2019
Messages
354
Reaction score
1,742
Points
104
Location
Internet
Website
www.startstv.com
@Justme1901 - the 3 files are current.json / status.json and infos.json which are in the settings.php file its currently pointed to xcodes.mine.nu . current.json just shows the Panel version number which is currently 41 , status.json shows the geolite2 version for me its 20230112 . infos.json shows what was updated in the recent panel versions under the Updates tab in the settings. We just have to create the files and have it hosted. Right now if you leave it pointing to xtream.mine.nu , the settings page takes a few seconds longer to load because its trying to grab the info from there but the site has been shut off to the public. If you just remove that domain or change it to somewhere else it will fix the load time of the page.

These files are also important if we eventually want to have the Panel and Geolite updated constantly to newer versions. Thats where the functions.php comes in because if there is a new update it goes and tries to grab the new panel/geolite2 versions from the links in the functions.php which is also currently pointed to xcodes.mine.nu

@keyvpn - i found it online by searching but i can't be sure its from CK41. We need to test it to be sure if it works live. If someone else has a decrypted version of the full CK41 please check and see if anything is missing on it. The only reason i searched for functions.php its because someone in this thread mentioned it on the first page. I'm wondering now if there are any other files that have that domain hidden.

Decoded settings/functions

thanks for all members
 
Last edited:

On4sat

Extended Member
Ext. Member
Joined
Jul 2, 2019
Messages
354
Reaction score
1,742
Points
104
Location
Internet
Website
www.startstv.com
@Justme1901 - the 3 files are current.json / status.json and infos.json which are in the settings.php file its currently pointed to xcodes.mine.nu . current.json just shows the Panel version number which is currently 41 , status.json shows the geolite2 version for me its 20230112 . infos.json shows what was updated in the recent panel versions under the Updates tab in the settings. We just have to create the files and have it hosted. Right now if you leave it pointing to xtream.mine.nu , the settings page takes a few seconds longer to load because its trying to grab the info from there but the site has been shut off to the public. If you just remove that domain or change it to somewhere else it will fix the load time of the page.

These files are also important if we eventually want to have the Panel and Geolite updated constantly to newer versions. Thats where the functions.php comes in because if there is a new update it goes and tries to grab the new panel/geolite2 versions from the links in the functions.php which is also currently pointed to xcodes.mine.nu

@keyvpn - i found it online by searching but i can't be sure its from CK41. We need to test it to be sure if it works live. If someone else has a decrypted version of the full CK41 please check and see if anything is missing on it. The only reason i searched for functions.php its because someone in this thread mentioned it on the first page. I'm wondering now if there are any other files that have that domain hidden.

Decoded settings/functions
Possible decoded file install_server.php because not install loadbalance is possible have location for domain too

regards
 
Last edited:
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 @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

mikekap1981

Basic Member
Basic Member
Joined
Feb 24, 2021
Messages
23
Reaction score
23
Points
14
Location
Canada
@On4sat very nice!

BTW i think i got it i don't remember 100% how it looked like but i think i'm close to it

infos.png
 
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 @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

Justme1901

Basic Member
Basic Member
Joined
Sep 27, 2021
Messages
40
Reaction score
45
Points
29
Location
UK
So I made a current.json file, hosted it and then update my settings.php file. I got the message

A new version 22 CK 42 is available. Click here to update! but when I click the Update link it fails. showing the message Failed to update Panel! Please try again.

So who managed to get the panel to update? Do you have the update folder?

-----

On another note, I can get the geolite2 to update now, I switched this line
$rGeoLite2 = json_decode(file_get_contents("http://xcodes.mine.nu/XCodes/status.json", false, $rContext), true);
to this line:
$rGeoLite2 = json_decode(file_get_contents("https://bitbucket.org/emre1393/xtreamui_mirror/downloads/Geolite2_status.json", false, $rContext), True);
 

mikekap1981

Basic Member
Basic Member
Joined
Feb 24, 2021
Messages
23
Reaction score
23
Points
14
Location
Canada
if you put Version 42 in the current.json file yes you will get the message to update but you won't be able to update it without changing the file location of the update.zip in the functions.php because its also pointing to xcodes.mine.nu but we shouldn't change the version right now unless you really want to but i think we should wait until we have a proper update.zip file that we should all update to.

But for geolite2 i was able to update by changing the links to point to emre1393's repo. You need to make the json and mmdb links all pointing to the files from the repo in the settings.php / functions.php and check_geolite.sh . My geolite was at 01.12 now its showing 02.03

geolite2.png
 

On4sat

Extended Member
Ext. Member
Joined
Jul 2, 2019
Messages
354
Reaction score
1,742
Points
104
Location
Internet
Website
www.startstv.com
if you put Version 42 in the current.json file yes you will get the message to update but you won't be able to update it without changing the file location of the update.zip in the functions.php because its also pointing to xcodes.mine.nu but we shouldn't change the version right now unless you really want to but i think we should wait until we have a proper update.zip file that we should all update to.

But for geolite2 i was able to update by changing the links to point to emre1393's repo. You need to make the json and mmdb links all pointing to the files from the repo in the settings.php / functions.php and check_geolite.sh . My geolite was at 01.12 now its showing 02.03

geolite2.png
my too
 
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 @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

1971

Basic Member
Basic Member
Joined
Apr 9, 2021
Messages
3
Reaction score
0
Points
1
Location
turkey
Hello

can't install LB, anyone have the issue ?
 
shape1
shape2
shape3
shape4
shape5
shape6
Top
AdBlock Detected

We know, ad-blocking software do a great job at blocking ads. But our site is sponsored by advertising. 

For the best possible site experience please take a moment to disable your AdBlocker.
You can create a Account with us or if you already have account, you can prefer an Account Upgrade.

I've Disabled AdBlock