Already Nulled Elementor Query Builder v1.3 by VoidCoders

  • Welcome to Babiato Forum! All Resources are 100% clean and Safe to Use

Status
Not open for further replies.

Mrsam_1

Well-known member
Administrative
Trusted Seller
Jul 25, 2018
57,189
62,432
120
Please see attached zip file. This is the original zip file download from the developers site (elequerybuilder.com). It should be not too hard to null as it has been done before, but before the babiato crash so i lost the nulled zip file. License key contains 32 characters and looks like to be random numbers and letters. My license key is as follows (x=letter 0=number): xxxx0xx00000x000x00x00000x00x00x
 

Attachments

  • Void-Elementor-Query-Builder-1.3-Original.zip
    68.7 KB · Views: 14
  • Like
Reactions: tanierlyons

donaconda

Active member
May 2, 2022
120
171
43
Void Elementor Query Builder v1.3 Nulled attached.

Feedback appreciated 🙏🏼
 

Attachments

  • Void-Elementor-Query-Builder-v1.3[Nulled].zip
    71.7 KB · Views: 13
  • Love
Reactions: Mrsam_1

Mrsam_1

Well-known member
Administrative
Trusted Seller
Jul 25, 2018
57,189
62,432
120
Void Elementor Query Builder v1.3 Nulled attached.

Feedback appreciated 🙏🏼
Awesome, thank you. Will try to test it. But looking at the original files, in file 'void-elementor-query-builder.php' on line 312:
Code:
// listen for our activate button to be clicked
    if( $_SERVER['REQUEST_METHOD'] === 'POST' && isset( $_POST['veqb_license_activate'] ) ) {

You changed 'veqb_license_activate' to 'veqb_license_activatez'

Isn't that a typo?
 

Mrsam_1

Well-known member
Administrative
Trusted Seller
Jul 25, 2018
57,189
62,432
120
Just to keep a note:
  1. Replace 2 times "home_url()," with a random url ie " 'https://unicornsarereal.com', " in file ROOT/helper/VEQB_SL_Plugin_Updater.php (with comma at the end)
  2. Replace 3 times "home_url()" with a random url ie " 'https://unicornsarereal.com' " in file ROOT/void-elementor-query-builder.php (without comma at the end)
  3. Add this code after 'function veqb_activate_license() {' in file ROOT/void-elementor-query-builder.php
    PHP:
        if (trim(get_option( 'veqb_license_status' ) ) == '' ) {
            $license_data = array('success'=>true,'license'=>'valid','item_id'=>true,'iten_name'=>'Void+Elementor+Query+Builder','error'=>'activated','checksum'=>'ec64ce754e45f7ce1b0253519dae6818');
            update_option( 'veqb_license_status', $license_data['license'] );
            update_option('veqb_license_key', trim(isset($_POST['veqb_license_key']) ? $_POST['veqb_license_key'] : 'hYhD8Xv98371U537X89D83912F88H'));
        }

    Go to ROOT/void-elementor-query-builder.php after the line with // Call the custom API.
  4. In this file, Replace "$license_data = json_decode( wp_remote_retrieve_body( $response ) );"
    WITH "$license_data = ['license'=>"valid"];"
  5. In this file, Replace "if( $license_data->license == 'valid' ) {"
    WITH "if( $license_data->license['license'] == 'valid' ) {"
  6. In this file, Replace "return 0;" WITH
    PHP:
    set_transient('void_query_builder_status',1, 60 * 60 * 24);
    return 1;
 
  • Like
Reactions: donaconda

donaconda

Active member
May 2, 2022
120
171
43
Just to keep a note:
  1. Replace 2 times "home_url()," with a random url ie " 'https://unicornsarereal.com', " in file ROOT/helper/VEQB_SL_Plugin_Updater.php (with comma at the end)
  2. Replace 3 times "home_url()" with a random url ie " 'https://unicornsarereal.com' " in file ROOT/void-elementor-query-builder.php (without comma at the end)
  3. Add this code after 'function veqb_activate_license() {' in file ROOT/void-elementor-query-builder.php
    PHP:
        if (trim(get_option( 'veqb_license_status' ) ) == '' ) {
            $license_data = array('success'=>true,'license'=>'valid','item_id'=>true,'iten_name'=>'Void+Elementor+Query+Builder','error'=>'activated','checksum'=>'ec64ce754e45f7ce1b0253519dae6818');
            update_option( 'veqb_license_status', $license_data['license'] );
            update_option('veqb_license_key', trim(isset($_POST['veqb_license_key']) ? $_POST['veqb_license_key'] : 'hYhD8Xv98371U537X89D83912F88H'));
        }

    Go to ROOT/void-elementor-query-builder.php after the line with // Call the custom API.
  4. In this file, Replace "$license_data = json_decode( wp_remote_retrieve_body( $response ) );"
    WITH "$license_data = ['license'=>"valid"];"
  5. In this file, Replace "if( $license_data->license == 'valid' ) {"
    WITH "if( $license_data->license['license'] == 'valid' ) {"
  6. In this file, Replace "return 0;" WITH
    PHP:
    set_transient('void_query_builder_status',1, 60 * 60 * 24);
    return 1;

Thanks for writing up notes 👍🙏🏼
 
  • Like
Reactions: tanierlyons

donaconda

Active member
May 2, 2022
120
171
43
Awesome, thank you. Will try to test it. But looking at the original files, in file 'void-elementor-query-builder.php' on line 312:
Code:
// listen for our activate button to be clicked
    if( $_SERVER['REQUEST_METHOD'] === 'POST' && isset( $_POST['veqb_license_activate'] ) ) {

You changed 'veqb_license_activate' to 'veqb_license_activatez'

Isn't that a typo?
Nahh ... I just did a dirty bypass from sending unwanted POST request.
 
  • Like
Reactions: tanierlyons

Mrsam_1

Well-known member
Administrative
Trusted Seller
Jul 25, 2018
57,189
62,432
120
BTW ... They are running a lifetime deal for unlimited websites for $69 on AppSumo.
thanks for the heads up, but i already brought 1 lifetime license for 1 site. Wouldn't* go for the appsumo deal as it is not really a "great plugin": bad support, not a lot of plugin updates, etc.
 

Mrsam_1

Well-known member
Administrative
Trusted Seller
Jul 25, 2018
57,189
62,432
120
Maybe better to completely remove this fun
Nahh ... I just did a dirty bypass from sending unwanted POST request.
Maybe better to completely remove that function then?
 
Status
Not open for further replies.

About us

  • Babiato Forum - The webmaster community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day, updating Daily resource to make sure our community is one of the best.

Quick Navigation

User Menu