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!

Protect Your MAG Devices Lines

if u use xtreamui just edit portal.php and never can sniff your token or mac address ;) just add 1 line with allow only local address couse when customer make request to xtreamui request accept and forwoad request to portal.php ;) onother problem is xtreamui have a many backdoors in the code u can decrypt and check it most of backdoors send your streams to diffrent servers
good solution
can you please let us know this 1 line to protect the mac address from this attacks
 
Code:
Mozilla/5.0 (QtEmbedded; U; Linux; C) AppleWebKit/533.3 (KHTML, like Gecko) MAG200 stbapp ver: 2 rev: 250 Safari/533.3
FilterExclude

?type=stb&action=handshake&token=&prehash=0&JsHttpRequest=1-xml
FilterExclude

?type=stb&action=get_profile
FilterExclude


/portal.php
 
Last edited by a moderator:
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
Code:
Mozilla/5.0 (QtEmbedded; U; Linux; C) AppleWebKit/533.3 (KHTML, like Gecko) MAG200 stbapp ver: 2 rev: 250 Safari/533.3
FilterExclude

?type=stb&action=handshake&token=&prehash=0&JsHttpRequest=1-xml
FilterExclude

?type=stb&action=get_profile
FilterExclude


/portal.php

So as i understand the only potential issue is with portal.php or better with the /client_area ?
 
yes portal.php
portal.php its easy to be fix without decode or etc :) this is a just php file u can make all what u want and put your code to protect file :)
 
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
May you guys can write small how to fix it for beginners
 
May you guys can write small how to fix it for beginners
one easy way u can use .httaccess file and put this and add your local ip only for can have a access then all request on devices we work only with local request from your portal.

1st way
order deny,allow
deny from all
allow from <your ip>

2 options u can put some script like this on portal.php
PHP:
<?php

$deny = array("111.111.111", "222.222.222", "333.333.333");

if (in_array ($_SERVER['REMOTE_ADDR'], $deny)) {

   header("location: http://www.google.com/");

   exit();

} ?>

and change ip to block all ip like a 0.0.0.0/0 then all request again will work only from localhost server request and all onother will be redirect to google.com or what u wish :)

when u make this nobody can steal token or streams via portal.php also i write a patch which remove backdors from xtreamui
 
can mag boxes use https i guess no so you protect only portal using https
 
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
can mag boxes use https i guess no so you protect only portal using https
yes can when make automate request redirect to https :) also u can enable https support on mag devices its easy :) just u need ssh access to make it :)
 
yes can when make automate request redirect to https :) also u can enable https support on mag devices its easy :) just u need ssh access to make it :)
yeah i was able to make half https request so you need ssh access to mag box to make it work with https?
 
yeah i was able to make half https request so you need ssh access to mag box to make it work with https?
yes or u can make your custom image for your mags with all settings which u need, after that u can also run your own tftp server and can update all devices which u adminstrate remotley with your own new image :) have many many many options
 
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
one easy way u can use .httaccess file and put this and add your local ip only for can have a access then all request on devices we work only with local request from your portal.

1st way
order deny,allow
deny from all
allow from <your ip>

2 options u can put some script like this on portal.php
PHP:
<?php

$deny = array("111.111.111", "222.222.222", "333.333.333");

if (in_array ($_SERVER['REMOTE_ADDR'], $deny)) {

   header("location: http://www.google.com/");

   exit();

} ?>

and change ip to block all ip like a 0.0.0.0/0 then all request again will work only from localhost server request and all onother will be redirect to google.com or what u wish :)

when u make this nobody can steal token or streams via portal.php also i write a patch which remove backdors from xtreamui
instead $deny u can do also like this

<?php

$allow = array("127.0.0.1");

if (!in_array ($_SERVER['REMOTE_ADDR'], $allow)) {

header("location: http://www.google.com/");

exit();

} ?>
 
one easy way u can use .httaccess file and put this and add your local ip only for can have a access then all request on devices we work only with local request from your portal.

1st way
order deny,allow
deny from all
allow from <your ip>

2 options u can put some script like this on portal.php
PHP:
<?php

$deny = array("111.111.111", "222.222.222", "333.333.333");

if (in_array ($_SERVER['REMOTE_ADDR'], $deny)) {

   header("location: http://www.google.com/");

   exit();

} ?>

and change ip to block all ip like a 0.0.0.0/0 then all request again will work only from localhost server request and all onother will be redirect to google.com or what u wish :)

when u make this nobody can steal token or streams via portal.php also i write a patch which remove backdors from xtreamui
Are you sure this way working?

Give loading error and doesn't work
 
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
Are you sure this way working?

Give loading error and doesn't work

yes its working i give just example if u know how to use it will be work yes
 
instead $deny u can do also like this

<?php

$allow = array("127.0.0.1");

if (!in_array ($_SERVER['REMOTE_ADDR'], $allow)) {

header("location: http://www.google.com/");

exit();

} ?>
location = /portal.php {
allow 127.0.0.1;
deny all;
}

what you think about this one inside nginx.conf? can be working
 
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
location = /portal.php {
allow 127.0.0.1;
deny all;
}

what you think about this one inside nginx.conf? can be working
Guys using " allow 127.0.0.1 " only will allow local ip and won't work to public site.

Mag devices and STB Emu use that file " portal.php " to work properly.

Analysing and thinking out the box ;)
 
Just ISP lock for now, but it's not some good solution, on some providers you can enable it by the user side. Every user restart is stb blocked, but just on few providers. Geolite is updated but ...
 
shape1
shape2
shape3
shape4
shape5
shape6
Back
Top