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 Who can null this decoded File ?

redhat

Administrator
Staff member
Administrator
Joined
Jun 19, 2019
Messages
3,448
Reaction score
17,097
Points
134
Location
root[@]woi
I just found the a php 5.6 version of this whmcs hetzner module and i decoded it it already.
Can you cut the License request funtion ? (Null it ?)
Or just modify the the script, that license query get back "valid" license.

Thanks and regards
 

Attachments

This function:

PHP:
private function callHomeLoop($query_string, $timeout = 5)
    {
        foreach ($this->getHosts() as $host) {
            $responsecode = $this->makeCall($this->getVerifyUrl($host), $query_string, $timeout);
            if ($responsecode === 200) {
                return $this->responsedata;
            }
        }
        return false;
    }

must be:

PHP:
private function callHomeLoop($query_string, $timeout = 5)
    {
        return true;
    }

because the url $apiDomain = "licensing.websoftsolus.com"; return true if license is ok and return 404 if license is not true

overall this file not fully decode because encode with (Dynamic key)
 
shape1
shape2
shape3
shape4
shape5
shape6
Back
Top