How to Null and Activate Premium WordPress Themes and Plugins [Valuable info]

  • Thread starter Thread starter Deleted member 752298
  • Start date Start date
If you can read PHP, reverse engineering it is an easy way. I got a "nulled" version of a Envato WP plugin, however they did not remove the license checker. So I went into the files to snoop around finally going to the autoupdate file which contained it.

The EASIEST method to remove these license checks is to look at the PHP conditions. Guys/Girls Do yourself a favor and learn some basic PHP(That's all I know). There will be a condition that says if license is good; do this if bad; do this. This is where you remove the good, and leave bad as the only option to perform regardless if there is a license or not. Also the beginning of the my script had a envato license checker(connects to http://crivion.com/envato-licensing/index.php), just remove the whole code that does this.

One of the great things about this forum is that you LEARN and improve your own skillset.

Good luck peeps!
 
If you can read PHP, reverse engineering it is an easy way. I got a "nulled" version of a Envato WP plugin, however they did not remove the license checker. So I went into the files to snoop around finally going to the autoupdate file which contained it.

The EASIEST method to remove these license checks is to look at the PHP conditions. Guys/Girls Do yourself a favor and learn some basic PHP(That's all I know). There will be a condition that says if license is good; do this if bad; do this. This is where you remove the good, and leave bad as the only option to perform regardless if there is a license or not. Also the beginning of the my script had a envato license checker(connects to http://crivion.com/envato-licensing/index.php), just remove the whole code that does this.

One of the great things about this forum is that you LEARN and improve your own skillset.

Good luck peeps!

You're right mate, we learn every day, I have this theme that I have been trying to null, it has a bunch of license code in the function.php this shit got me confused, I have some basic knowledge of PHP but this theme looks like it was hard-coded. I would appreciate it if you could assist me to null the theme.
 
If it it's a lot of work, you should consider just buying the theme if you really need it for business; consider it an investment. Think about how much time you're putting into removing it vs just buying it. If it takes any longer than a day to figure out, you're doing it wrong - consider your time vs value. Even as I am nulling some plugins, themes, it's to test it out or use on it a startup I don't know if it's going to pan. If it does I would gladly pay for it then. But problem is a lot of themes/plugins don't have the support they say they do.
 
can you tell me how to edit file in https://mythemeshop.com/themes/reactor/
i need to Activate
 
Hey there, I cannot find the "functions\plugin-activation.php " file. I'm using mts purple theme. Can you tell me what I am missing here?

Five easy steps to do it.

============= STEP #1 ==============
First, as usual, make sure that the " mythemeshop_connect " plugin is not installed. It installs by itself when you first run the theme. If installed, delete it.

============= STEP #2 ==============
FILE: mts_coupon \ functions \ plugin-activation.php
LINE #4480

Add double-slash to the beginning of the line.

This:
add_filter( 'plugins_api', 'mts_connect_plugin_install_url', 10, 3 );

To This:
// add_filter( 'plugins_api', 'mts_connect_plugin_install_url', 10, 3 );

============= STEP #3 ==============
SAME FILE
LINE: #4498

The same as above.

This:
add_filter( 'pre_set_site_transient_update_plugins', 'mts_connect_plugin_update_url' );

To This:
// add_filter( 'pre_set_site_transient_update_plugins', 'mts_connect_plugin_update_url' );

============= STEP #4 ==============
FILE: mts_coupon \ functions \ theme-actions.php
LINE #904

Add RETURN; in that line right after " function mts_theme_activation( $oldtheme_name = null, $oldtheme = null ) { "

This:
function mts_theme_activation( $oldtheme_name = null, $oldtheme = null ) {

To This:
function mts_theme_activation( $oldtheme_name = null, $oldtheme = null ) { RETURN;

============= STEP #5 ==============
SAME FILE
LINE #976

Add RETURN; in that line right after " define( 'MTS_THEME_INIT', 1 ); "

This:
define( 'MTS_THEME_INIT', 1 );

To This:
define( 'MTS_THEME_INIT', 1 ); RETURN;



Done!



NOTE: Remember that when you install the theme, it will show a list of needed plugins. That list will include "MyThemeShop Theme/Plugin Updater". Do not install that one. It is "needed" for checking the connection to the licensing server. Nothing else.

If it bothers to see it in that list, rip it off by editing this file:

mts-coupon \ functions \ plugin-activation.php

Remove from line #3810 through line #3817

Code being removed:

Code:
        array(
            'name'      => 'MyThemeShop Theme/Plugin Updater ',
            'slug'      => 'mythemeshop-connect',
            'description' => __( 'A simple and easy way to update your MyThemeShop themes and plugins to the the latest versions using good old one click method!', 'coupon' ),
            'required'  => false,
            'source'    => 'https://mythemeshop.com/mythemeshop-connect.zip',
            'tab'       => 'both'
        ),
 
The given tricks is good but i think null & crack plugin can create problems in future for your website.
 
Hey guys, what a fantastic thread.

I have seen the request to null wp-script adult tube script. It would be amazing if this could be done. As op mentioned, there is the main Core plugin, which then looks for additional plugs to mesh everything together.

Any chance you think you could help me crack this nut? I would be sooo grateful.

If anyone needs anything in terms of software let me know...

Love the community here, and the learning opportunities. I've having a hard time grasping PHP...bought books, and tutorials (likely cause i'm a tired old bastard, hard to teach an old dog new tricks). Could anyone suggest a website, or a book, course, that makes learning PHP relatively easy for noobs like myself?

Cheers folks

Noble
 
Hey guys, what a fantastic thread.

I have seen the request to null wp-script adult tube script. It would be amazing if this could be done. As op mentioned, there is the main Core plugin, which then looks for additional plugs to mesh everything together.

Any chance you think you could help me crack this nut? I would be sooo grateful.

If anyone needs anything in terms of software let me know...

Love the community here, and the learning opportunities. I've having a hard time grasping PHP...bought books, and tutorials (likely cause i'm a tired old bastard, hard to teach an old dog new tricks). Could anyone suggest a website, or a book, course, that makes learning PHP relatively easy for noobs like myself?

Cheers folks

Noble

Unfortunately this cannot be discussed as WP-Script is a member here. ;)
 
How to Activate the Rehub theme:

Step 1:

Find the following file using a FTP client:



EXTRA BONUS: Demo content is working! :)

Actually, doing this with the theme causes a critical error to my hosting. i sent you a few support messages, bud
 
Hey guys!

I love to contribute to BHW and I would like to share some handy lines of code to make it more easier to activate premium WordPress themes and plugins. To start with, I'd like to share how to null Yoast Premium plugins:

How to Activate Yoast Premium plugins:

Step 1:


Find the following file using a FTP client, such as FileZilla:

wordpress-seo-premium/vendor/yoast/license-manager/class-license-manager.php,

Step 2:

Find the function get_license_status() at line 327:

Code:
public function get_license_status() {
$license_status = $this->get_option( 'status' );
return trim( $license_status );
}

Step 3:

In line 330, change:

Code:
return trim( $license_status );

to:

Code:
return 'valid';

Et voilà: your Yoast Premium plugins will work. :)

More plugins and themes will follow soon.

Stay tuned.
 
Hello sir, I found you on BHW. And I wanted to know if you could help me with nulling a wordpress theme. I will be highly obliged if you spare me some time and help me with nulling this theme. I attaching it below. Please do check it and reply me back please sir! Warm regards, uwatchfree
 

Attachments

Hello sir, I found you on BHW. And I wanted to know if you could help me with nulling a wordpress theme. I will be highly obliged if you spare me some time and help me with nulling this theme. I attaching it below. Please do check it and reply me back please sir! Warm regards, uwatchfree


I did ot see any difference between activated and no-activated other than asking for activation. Maybe I am missing something. Let me know.

Anyway, here is the activated version. I activated it just now. There are a couple of things to modify to bypass the license check, so instead of explaining I will better list the files that I modified so you do a comparisson yourself with the original files and try to make sense out of it for activating future versions next time. It is simple though.

Files modified (5):

eroz -> includes -> torothemes -> class.php
eroz -> includes -> class-eroz-function-public.php
eroz -> includes -> class-eroz-admin-ajax.php
eroz -> updater -> theme-updater-admin.php
eroz -> functions.php

Cheers!


DL (Activated):
Code:
http://www.mediafire.com/file/ujvem9mt871xg12/eroz11.zip/file

VT (0/60)
Code:
https://www.virustotal.com/gui/file/e4ad9af33941f0099cc14369c157112d68dac90d5797516dfb131e49e1dc3927/detection
 
@Festinger dude you're like my most favourite member of bhw :) thanks for the share.

On a side note, becoming a full stack developer as a side effect was never really an aspiration of mine but will a decent beginner/intermediate course in php give you the knowledge you need to know to overcome the more pedantic code?
 
@Festinger dude you're like my most favourite member of bhw :) thanks for the share.

On a side note, becoming a full stack developer as a side effect was never really an aspiration of mine but will a decent beginner/intermediate course in php give you the knowledge you need to know to overcome the more pedantic code?


I am not @Festinger , but my 2-cents contribution is to say "yes".

Plugins, themes, and scripts are mere text. If you learn what all those functions mean, you will be able to deduct the logic of the license check and override it. Not only that, with the time you will be able to even add code for your convenience or add custom functions to it to suit your needs.

I am running 48 plugins on my website, 45 are nulled premium plugin (nulled by myself) and the other three are self-made plugins. It happens that you may only need a simple feature and for it you will find yourself adding a lot of bloat to your website by installing a multi-featured plugin for only using one feature right? So the solution is to make your own plugin specifically for the task.

Most things with WP are straight forward and easier because it is like a framework with many pre-defined functions (hooks and filters). Instead of inventing the wheel, you have a full toolbox ready to be used.

PHP and Javascript are the way with Wordpress because WP makes working with the database very simple and will only need those first two. With scripts in general. PHP, Javascript, and MySQL are a must.

<!----- END OF My 2-CENTS ---->
 
I am not @Festinger , but my 2-cents contribution is to say "yes".

Plugins, themes, and scripts are mere text. If you learn what all those functions mean, you will be able to deduct the logic of the license check and override it. Not only that, with the time you will be able to even add code for your convenience or add custom functions to it to suit your needs.

I am running 48 plugins on my website, 45 are nulled premium plugin (nulled by myself) and the other three are self-made plugins. It happens that you may only need a simple feature and for it you will find yourself adding a lot of bloat to your website by installing a multi-featured plugin for only using one feature right? So the solution is to make your own plugin specifically for the task.

Most things with WP are straight forward and easier because it is like a framework with many pre-defined functions (hooks and filters). Instead of inventing the wheel, you have a full toolbox ready to be used.

PHP and Javascript are the way with Wordpress because WP makes working with the database very simple and will only need those first two. With scripts in general. PHP, Javascript, and MySQL are a must.

<!----- END OF My 2-CENTS ---->
Hello @zilog357 Sir,
I checked your file but found that it is not perfectly actiavted/nulled. If it is perfectly activated it should auto install some required plugin but it isn't. Also there is problem in uploading images in wordpress media library. Also When clicking activate licence it should show some text that your licence is activated and connected to torothemes.com. Also some theme ajax features are also not working.

This is demo site where theme is activated perfectly: torothemes.com/demo/eroz. Please do check this.
I want same theme like that.

I appreciate your effort for helping me. Thank You Very Much.
Warm Regards,
uwatchfree!
 
Back
Top