What's new
  • The default language of any content posted is English.
    Do not create multi-accounts, you will be blocked! For more information about rules, limits, and more, visit the Help page.
    Found a dead link? Use the report button!
Elementor PRO - WordPress Page Builder Premium

NULLED Elementor PRO - WordPress Page Builder Premium 3.35.1 NULLED

kindeer1 's signature
Reacted by:
kindeer1 's signature
Reacted by:
  • Like
Reactions: papaberry
kindeer1 's signature
Reacted by:
  • Like
Reactions: moonzlo and papaberry
kindeer1 's signature
Nobody checks plugins anymore, people uploading compromised plugins with backdoors.
It fetch JSON from wordpressnull.org. Hostinger flaged /elementor-pro/elementor-pro.php like compromised file.

$_config = (object) [
"name" => "elementor",
"pro" => "_pro_",
"wpn" => "wordpressnull", <-------
"timeout" => strtotime('+12 hours', current_time('timestamp'))
];

Without @raz0r safe nulled versions not exist in internet anymore. Not trust ANYONE
 
Reacted by:
Nobody checks plugins anymore, people uploading compromised plugins with backdoors.
It fetch JSON from wordpressnull.org. Hostinger flaged /elementor-pro/elementor-pro.php like compromised file.

$_config = (object) [
"name" => "elementor",
"pro" => "_pro_",
"wpn" => "wordpressnull", <-------
"timeout" => strtotime('+12 hours', current_time('timestamp'))
];

Without @raz0r safe nulled versions not exist in internet anymore. Not trust ANYONE
This isn't a compromised file necessarily. The code builds a fake license payload, writes it straight into the WP options, and adds a pre_http_request filter that intercepts calls to my.elementor.com and always returns a 200 with the fake valid response - ALSO KNOWN AS NULLING.

What you see with wordpressnull.org is that it uses that proxy to download PRO templates. Otherwise it wouldn't be possible to fetch them from the Elementor cloud server without a legitimate license.

I'm not claiming this is the SAFEST way to do it but you can check older versions by raz0r and you will see the files use the same NULL method as this one. https://nullcave.club/resources/elementor-pro-wordpress-page-builder-premium.14/history

So this isn't much different or more dangerous than what raz0r posted.
 
flopas10 's signature
Reacted by:
This isn't a compromised file necessarily. The code builds a fake license payload, writes it straight into the WP options, and adds a pre_http_request filter that intercepts calls to my.elementor.com and always returns a 200 with the fake valid response - ALSO KNOWN AS NULLING.

What you see with wordpressnull.org is that it uses that proxy to download PRO templates. Otherwise it wouldn't be possible to fetch them from the Elementor cloud server without a legitimate license.

I'm not claiming this is the SAFEST way to do it but you can check older versions by raz0r and you will see the files use the same NULL method as this one. https://nullcave.club/resources/elementor-pro-wordpress-page-builder-premium.14/history

So this isn't much different or more dangerous than what raz0r posted.
In the past, we couldn’t access the template library, and everything worked fine. Who decided that it’s necessary to compromise our websites by relying on unknown external sources?
 
Reacted by:
In the past, we couldn’t access the template library, and everything worked fine. Who decided that it’s necessary to compromise our websites by relying on unknown external sources?
I don't know, I guess it's more cool and closer to proper behavior.
Anyway, you can remove any calls to that template library by removing this snippet from elementor-pro.php Line ~66.

PHP:
        } elseif (strpos($url, "{$_config->api}/connect/v1/library/get_template_content") !== false) {
            $response = wp_remote_get("{$_config->templates}/{$parsed_args['body']['id']}.json", ['sslverify' => false, 'timeout' => 25]);
            if (wp_remote_retrieve_response_code($response) == 200) {
                return $response;
            } else {
                return $pre;
            }

Everything else will work like in the old days
 
flopas10 's signature
Reacted by:
  • Like
Reactions: drigis3
Top