Best Blackhat Forum

Full Version: [GET] Wowonder 1.4.5.2 (Not Nulled)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
WoWonder - The Ultimate PHP Social Network Platform


[Image: Banner-Inline-Recovered.png]

Version 1.4.5.2 6/19/2017

Added audio recording to Post/Comment systems.
Upgraded the API to the newest version for the new android messenger update.
Fixed few bugs in the script.



Hello im sharing this script and im trying to nulled it but it shows Failed to Connect SQL i dont know why
please if you can nulled this
share it here thank you.


Procedure to Nulled the Script
1. Go to install and open the file index.php (the one in the folder)
2. We find such a code (it is lines Goes in this script)

Code:
$p = check_($_POST['purshase_code']);
   if (isset($p['status'])) {
      if ($p['status'] == 'ERROR') {
        $ServerErrors[] = $p['ERROR_NAME'];
      }
   } else {
     $ServerErrors[] = 'Failed to connect to server, please try again later, or contact us.';
   }


We delete it and also delete the code from
Code:
//Purchase code
$purchase_code = "' . $_POST['purshase_code'] . '"; // Your purchase code, don\'t give it to anyone.
?>';

3. Go ahead. the line is also deleted. There's this code:
Code:
$p2 = check_success($_POST['purshase_code']);
if(isset($p2['status'])) {
if ($p2['status'] == 'SUCCESS') {
$can = 1;
}
}
if ($can == 1) {
$query_one = mysqli_query($con, "UPDATE `Wo_Config` SET `value` = '" . mysqli_real_escape_string($con, 1). "' WHERE `name` = 'is_ok'");
} else {
$query_one = mysqli_query($con, "DROP TABLE Wo_Config");
$query_one = mysqli_query($con, "DROP TABLE Wo_Users");
$ServerErrors[] = "Error found while installing, please contact us.";
}

4. Then we delete this code
Code:
<div class="form-group">
<label class="col-md-3" for="siteName">Purchase code </label>  
<div class="col-md-6">
<input type="text" class="form-control" name="purshase_code" value="<?php echo (!empty($_POST['purshase_code'])) ? $_POST['purshase_code']: '';?>">
<span class="help-block">Your Envato purchase code, you can get it from <a href="httpss://help.market.envato.com/hc/en-us/articles/202822600">Here</a>.</span>
</div>
</div>

5. At this point, the index.php editing is finished. Save and exit
6. Next, go to assets / includes / function_general.php
7. Delete the two lines with code checking


Code:
function check_($check) {
     $siteurl = urlencode($_SERVER['SERVER_NAME']);
     $file = file_get_contents('https://www.wowonder.com/purchase.php?code='.$check.'&url='.$siteurl);
     $check = json_decode($file, true);
     return $check;
}

function check_success($check) {
    $siteurl = urlencode($_SERVER['SERVER_NAME']);
    $file = file_get_contents('https://www.wowonder.com/purchase.php?code='.$check.'&success=true&url='.$siteurl);
    $check = json_decode($file, true);
    return $check;
}

We delete, save and exit the file.
8. Everything. We go to install. Enter all the data for the installation. After receiving the message about the successful installation, go to the database in the wo_config table.
9. Find the field is_ok and change 0 to 1 in it
10. Enjoy the working site :)




Download
Magic Button :
Simple way to null it:
FIND:
Code:
$check = json_decode($file, true);
REPLACE WITH:
Code:
$check = array('status' => 'SUCCESS', 'url' => $siteurl, 'code' => $check);

And do normal installation process

Thank you
(07-26-2017 11:26 PM)naib12 Wrote: [ -> ]Simple way to null it:
FIND:
Code:
$check = json_decode($file, true);
REPLACE WITH:
Code:
$check = array('status' => 'SUCCESS', 'url' => $siteurl, 'code' => $check);

And do normal installation process

Thank you

Wow it works
(07-27-2017 07:04 AM)HaselBiscuit Wrote: [ -> ]Wow it works

Thank you :)
Reference URL's