- Joined
- Mar 6, 2019
- Messages
- 109
- Reaction score
- 34
Thanks For the Shering
Can you null Psyplay & applay plz
Just perfect.Great thread, just a bit of insight for those who may be attempting to do it themself.
To null a plugin/theme/program what you need to do is reverse engineer the licensing mechanism. So as you've seen in the first post, Fest first locates where yoast does its check to see if you are a premium user or not.
In this case,
PHP:$license_status = $this->get_option( 'status' ); return trim( $license_status );
That line checks to see if the license status is valid or invalid, the returns the result. The returned result then determines what you can do or can't do.
Simply ensuring that you return 'valid' all the time will allow you to have access to premium features as the coding now ensures that your license status is 'valid'.
For plugins which require update or interact with a server, this might be a bit harder. Some plugins will require you have a paid version to see what information a server will respond with so you can create a small emulation.
Example from Fest once again
PHP:$raw_response = wp_remote_get( ‘https://api.envato.com/v3/market/author/sale?code=’ . $tf_purchase_code, $prepare_request ); if ( ! is_wp_error( $raw_response ) ) { $response = wp_remote_retrieve_body( $raw_response ); $response = json_decode( $response, true ); }
Rehub checks with envato to see if you have a valid purchase code. If you do, envato will prepare an appropriate response with license details allowing you to use the plugin. This information is stored in the variable "$response".
To null this, you would need to actually have a valid license(to make it easy). You would have to intercept the response that envato sends when the plugin makes that http request. Easiest way to see the response? Open chrome, open developer mode, go to the networks tab, the navigate to the url with a valid purchase code. You would then get the json response indicating what a valid license look like.
In the plugin, you would place code to simply emulate that response. As is seen here:
PHP:$response = array(); $response['buyer'] = $tf_username; $response['supported_until'] = date('Y-m-d',strtotime(date("Y-m-d", mktime()) . " + 365 day"));
Regarding updates and information directly from servers, you cannot circumvent this, as it requires you to ask the person for the item. Meaning, if we have a secret club which has a special book that we add 1 page to each week, you may be able to steal a book but if you ever want the new page, you'll have to come directly to the secret club to ask for the update. We will notice that your book is a stolen copy and we will deny you the new update.
Hope it helps someone.. Anyone![]()
No idea. If you provide a download link, I could take a look at it and see if it can be nulled as soon as I have the time.
I don't have theme file.
Here's the sale page - https://themeforest(.)net/item/applay-wordpress-app-showcase-app-store-theme/9381060
I have version 2.4.7 & I need The Latest Version. Still appreciated. Plz share updated version later if possible.So this was more of a request of a theme than nulling it.
Well, here is Applay latest version v2.4.6. I was able to share it that fast because it does not require activation.
I didn't find any license request.
Included with the theme, there are the documents, some sample data, the child theme and seven complementary plugins that you would need to manually install after installing the theme: Applay Member, Applay Portfolio, Applay Shortcodes, Applay Showcase, Forest Admin (turns your admin into a forest), WP Ajax Query Shortcode and Visual Composer, a.k.a as WP Bakery (activated).
There are other plugins suggested as soon as you install the theme, but those are free and you can go ahead and click "begin installing" on those (Black Studio TinyMCE Widget, Contact Form 7, Custom Sidebars, Flickr Badges Widget, and WP Pagenavi).
About Psyplay, not sure. As soon as I have some free time I will check on that one.
https://www.blackhatworld.com/seo/get-applay-v2-4-6-wp-app-showcase-store-theme.1128416/
Thanks @zilog357 , @Festinger !
Can you help me null and activate for this theme: https://mythemeshop.com/themes/coupon/
I want to import data of this theme
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'
),