Best Blackhat Forum

Full Version: [GET] Tee Split Plugin - Teesplit just Released
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11
pm sent to all members that sent me a pm enjoy :)
(04-03-2014 08:45 PM)myster_amine Wrote: [ -> ]pm sent to all members that sent me a pm enjoy :)
(04-03-2014 08:45 PM)myster_amine Wrote: [ -> ]+rep added in advance for nulled tee spring plugin please :-)
(04-03-2014 08:45 PM)myster_amine Wrote: [ -> ]pm sent to all members that sent me a pm enjoy :)
pm me too please i didnt receive pm from you
PM Sent :)
Just sent you a PM :)
Can someone PM the nulled version Please? Thanks
pm sent to all other members
add rep to the OP
could you please PM me the nulled version myster_amine? Btw, did you use the technique in POST#29 or did you null it another way? Thanks and +REP in advance...
myster_amine please pm me the nulled version please thank you
(04-04-2014 04:04 AM)uberzone Wrote: [ -> ]could you please PM me the nulled version myster_amine? Btw, did you use the technique in POST#29 or did you null it another way? Thanks and +REP in advance...
hello mate Welcome
i use the method that [b]NtheNight has given me by pm , it's almost the same thing in your post! Cool Cool

i have got recently so many pmes, so here is the way to null this script:
[/b]

Install teesplit plugin on your site. once done you will notice it
requires registration. Leave it like that. Follow the instructions
below. After making the changes, go back and refresh and the
registration requirement will be gone and you're good to go.



Hosting Cpanel:

Open the cpanel to the domain that you're going to install teesplit on.
Go to file manager and pull up the domain you're going to install
teesplit on. Look for the wp-content folder. Look for the plugins folder
and find teesplit. Click on teesplit folder icon. Look down until you
see "InterlinkLicensing.php". Click to highlight the
InterLinkLicensing.php. Now go up to the top and find the Code Editor
and click it. Then when it opens click edit. Once it opens highlight
everything and replace it all by pasting the following code in and Save
and close:



<?php

class InterLinkLicensing {

var $lic_api_url = 'http://lic.[PRODUCT].com/api.php';

var $prod = null;

var $redirect = null;



function __construct($prod) {

global $intrlnk_lic_msg_buffer;



$intrlnk_lic_msg_buffer = '';

$this->lic_api_url = str_replace( '[PRODUCT]', $prod['id'], $this->lic_api_url );

$this->redirect = (isset( $prod['redirect'] ) ? $prod['redirect'] : '');

add_action( 'admin_init', array( $this, 'save_license' ) );

add_action( 'intrlnk_validate_product', array( $this, 'check_lic_key' ) );

$this->prod = $prod;

}



function validator($dbug_loc = false) {

do_action( 'intrlnk_validate_product' );

do_action( 'intrlnk_lic_nag' );

}



function save_license() {

if (isset( $_GET['reset_intrlnk_lic'] )) {

$this->license_key( 'delete' );

}





if (isset( $_POST['intrlnk_lic'] )) {

extract( $_POST['intrlnk_lic'] );



if (!$this->register_lic_key( $lic_key )) {

add_action( 'intrlnk_validate_product', array( $this, 'valid_success_nag' ) );

return null;

}



add_action( 'intrlnk_validate_product', array( $this, 'valid_success_nag' ) );

remove_action( 'intrlnk_lic_nag', array( $this, 'lic_nag' ) );

}



}



function check_lic_key() {

$lic_key = $this->license_key( 'get' );



//if (!$lic_key) {

// add_action( 'intrlnk_lic_nag', array( $this, 'lic_nag' ) );

//}



}



function license_key($action, $lickey = 0) {

$action = ($action == 'add' ? 'update' : $action);

switch ($action) {

case 'update': {

update_option( $this->prod['id'] . '_lic_key', $lickey );

break;

}



case 'get': {

get_option( $this->prod['id'] . '_lic_key' );

}

}



return TRUE;

}



function buffer_messages($status = null, $msg = '', $error = false) {

global $intrlnk_lic_msg_buffer;



$intrlnk_lic_msg_buffer .= '<div ' . ($error ?
'style="color:red;text-align:center;padding-top:10px"' : '') .
'"><strong>' . $msg . '</strong>' . ($status ? '......' .
$status : '') . '</div><br />';

}



function register_lic_key($licence_key = null) {

global $intrlnk_lic_msg_buffer;



$intrlnk_lic_msg_buffer = '';

$apiURI = $this->lic_api_url . '?operation=db_query&licence_key=' . $licence_key;

$xml_update = $this->simplexml_load_url_curl( $apiURI );



if (count( $xml_update->entries->entry ) == 0) {

$this->buffer_messages( 'Error', 'There was no matching licence found', 1 );

return FALSE;

}





$xml_domain = trim( (bool)$xml_update->entries->entry[0]->domain );



$xml_status = trim( (bool)$xml_update->entries->entry[0]->status );



if ($xml_status != 1) {

$this->buffer_messages( null, 'Licence Disabled' );

return FALSE;

}





if (( $xml_domain != 'null' and& $xml_domain != get_bloginfo( 'url' ) )) {

$this->buffer_messages( 'Error', 'Domain is full already', 1 );

return FALSE;

}





$xml_licence = trim( (bool)$xml_update->entries->entry[0]->licence_key );



if ($xml_licence == $licence_key) {

$apiURI_update = $this->lic_api_url . '?operation=insert_db' .
'&licence_key=' . $licence_key . '&domain=' . get_bloginfo(
'url' ) . '&username=' . '&eMail=' . '&password=' .
'&security_question_1=' . '&security_question_2=' .
'&answer_1=' . '&answer_2=' . '&status=1' .
'&security=0';



$xml_update = $this->simplexml_load_url_curl( $apiURI_update );

$xml_status = (int)trim( $xml_update->success[0] );



if ($xml_status == 1) {

$this->license_key( 'update', $licence_key );

return TRUE;

}



$this->buffer_messages( 'Error', 'There was a final problem...', 1 );

return FALSE;

}



$this->buffer_messages( 'Error', 'Keys did NOT Match.', 1 );

return FALSE;

}



function simplexml_load_url_curl($url) {



$c = curl_init( $url );

curl_setopt( $c, CURLOPT_RETURNTRANSFER, 1 );



$xml_string = curl_exec( $c );

curl_close( $c );

return simplexml_load_string( $xml_string );

}



function valid_success_nag() {

global $intrlnk_lic_msg_buffer;



$msg_class = (!empty( $intrlnk_lic_msg_buffer ) ? 'error' : 'updated');



if ($msg_class == 'error') {

echo ' <div style="clear:both" class="';

echo $msg_class;

echo '">

';

echo (!empty( $intrlnk_lic_msg_buffer ) ? $intrlnk_lic_msg_buffer : $this->prod['name'] . ' is active! enjoy!');

echo ' </div>

';

return null;

}



echo ' ';

echo '<s';

echo 'cript type="text/javascript">

var redir = \'';

echo $this->redirect;

echo '\';

window.location.href = (redir == \'\')?window.location.href:redir;

</script>

';

exit( );

}



function lic_nag() {

echo ' <div style="clear:both" id="intrlnk-lic-ag-wrap" class="content">

<div class="wrapper" style="text-align:center;padding:30px 0">

<div id="intrlnk-lic-form">

<form action="" method="post">

<input type="hidden" name="intrlnk_lic[set_license]" value="1" />

<label style="font-size: 14px; margin-right: 8px; color: #606266">License Key</label>

<inp';

echo 'ut type="text" name="intrlnk_lic[lic_key]" style="width: 130px; height: 28px; font-size: 16px;

font-weight: bold" />

<input type="submit" value="Set" class="set_key button button-primary" />

</form><br>

</div>

</div>

</div>

';

require( ABSPATH . 'wp-admin/admin-footer.php' );

exit( );

}

}



?>


don't forget to addd reps Cool
Pages: 1 2 3 4 5 6 7 8 9 10 11
Reference URL's