Module WebForms Pro 2 - Form Builder

Lowrens

Moderator
Staff member
VIP Hard
Verified
Joined
Nov 25, 2015
Messages
10,958
Reaction score
1,107
WebForms Pro 2 - Form Builder v.2.3.6

uqO9KDy.png


 
WebForms Pro 2 - Form Builder v2.7.8 null

This Module is already nulled, but here is instruction for not nulled from builder:
in
app/code/community/VladimirPopov/WebForms/Helper/Data.php
PHP:
     public function verify($domain, $checkstr)
     {

        if ("wf" . substr(sha1(self::DKEY . $domain), 0, 18) == substr($checkstr, 0, 20)) {
            return true;
        }

        if ("wf" . substr(sha1(self::SKEY . $_SERVER['SERVER_ADDR']), 0, 10) == substr($checkstr, 0, 12)) {
            return true;
        }

        if ("wf" . substr(sha1(self::SKEY . gethostbyname($_SERVER['SERVER_NAME'])), 0, 10) == substr($checkstr, 0, 12)) {
            return true;
        }

        if ("wf" . substr(sha1(self::SKEY . gethostbyname($domain)), 0, 10) == substr($checkstr, 0, 12)) {
            return true;
        }

        $base = $this->getDomain(parse_url(Mage::app()->getStore(0)->getConfig('web/unsecure/base_url'), PHP_URL_HOST));
        if ("wf" . substr(sha1(self::SKEY . gethostbyname($base)), 0, 10) == substr($checkstr, 0, 12)) {
            return true;
        }

        if (substr(sha1(self::SKEY . $base), 0, 8) == substr($checkstr, 12, 8))
            return true;

        if ($this->verifyIpMask(array($_SERVER['SERVER_ADDR'], $_SERVER['SERVER_NAME'], $domain, $base), $checkstr)) {
            return true;
     }
        return false;
        return true;
     }

replace to:
PHP:
    public function verify($domain, $checkstr)
    {
        return true;
    }
 
Top