• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Accepting Script Nulling Requests

anyone please null directadmin extended for whmcs .... I can pay 10$ for it.. i have the untouched script
 
Sure he can. Eventually don't you also want his credit card details and bank account password?
Very funy when somebody want's free service! I don't want to request decoding for free as many other users from this topic. He said it's very easy — so I'd like to avoid wasting his time and ask for advice. If he doesn't want to describe what how to do, I think he can use own keyboard to reply me
 
No offence but coding is mostly thinking. If on an script like that you can't figure it out by yourself it means you need to learn a little bit more.

While nulling is very easy to be compared I don't think there are out there coders that will tell how they de-crypt or decode a script or another.

There are plenty online tools to help you decode some parts. And strictly related to this particular script: what does that function do?

Edit: And example of your rudeness:

I don't want to request decoding for free as many other users from this topic

No, indeed you don't want that. But without introducing yourself to the Babiato community you directly asked for better coder's secrets. How's that nice of you?
 
  • Like
Reactions: Sto1cBliss
Not for this type of encoding. There are beautifiers for scrambled variable names but not mass decoders based on custom scrambling functions.
 
someone please help with one of these its only 1 add-on that needs to be nulled this is the error it shows u when u try and activate it from the backend of cs-cart software
 

Attachments

  • ab__deal_of_the_day.zip
    479.7 KB · Views: 18
  • deals of the day error.jpg
    deals of the day error.jpg
    515.3 KB · Views: 34
@starliner can you please nulled this file for me bro.

Script: Music Engine

link: https://www8.zippyshare.com/v/2uhG7kJ2/file.html

license code:

public function checkLicense(){
$request = Illuminate\Http\Request::capture();
$errors = array();

if($request->isMethod('post')){
$validator = Illuminate\Support\Facades\Validator::make($request->all(),
[
'license' => 'required|string',
]
);
// Validate the arguments.
if ($validator->fails())
{
foreach ($validator->messages()->getMessages() as $field_name => $messages)
{
$errors[] = $messages;
}
} else {
$personalToken = "vGdSqLV6lfIx8HkxbdBJMrA9rcOXjgV0";
$userAgent = "Purchase code verification";
$code = trim($request->input('license'));

if (!preg_match("/^([a-f0-9]{8})-(([a-f0-9]{4})-){3}([a-f0-9]{12})$/i", $code)) {
$error = ("Invalid code");
if($error) {
$errors[] = array($error);
}
echo $view = view('backend.install.license')
->with('request', $request)
->with('errors', $errors);
exit();
}

$ch = curl_init();
curl_setopt_array($ch, array(
CURLOPT_URL => "https://api.envato.com/v3/market/author/sale?code={$code}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_TIMEOUT => 20,
CURLOPT_HTTPHEADER => array(
"Authorization: Bearer {$personalToken}",
"User-Agent: {$userAgent}"
)
));

$response = @curl_exec($ch);

if (curl_errno($ch) > 0) {
$error = ("Error connecting to API: " . curl_error($ch));
if($error) {
$errors[] = array($error);
}
echo $view = view('backend.install.license')
->with('request', $request)
->with('errors', $errors);
exit();
}

$responseCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);

if ($responseCode === 404) {
$error = ("The purchase code was invalid");
if($error) {
$errors[] = array($error);
}
echo $view = view('backend.install.license')
->with('request', $request)
->with('errors', $errors);
exit();
}

if ($responseCode !== 200) {
$error = ("Failed to validate code due to an error: HTTP {$responseCode}");
if($error) {
$errors[] = array($error);
}
echo $view = view('backend.install.license')
->with('request', $request)
->with('errors', $errors);
exit();
}

$body = @json_decode($response);

if ($body === false && json_last_error() !== JSON_ERROR_NONE) {
$error = ('Error parsing response');
if($error) {
$errors[] = array($error);
}
echo $view = view('backend.install.license')
->with('request', $request)
->with('errors', $errors);
exit();
}

if($body->item->id == '28641149') {
Illuminate\Support\Facades\Cache::put('license', $code);
header("Location: " . $_SERVER['PHP_SELF'] . "?step=database");
} else {
$error = ('The purchase code was invalid');
if($error) {
$errors[] = array($error);
}
echo $view = view('backend.install.license')
->with('request', $request)
->with('errors', $errors);
exit();
}
}
}

$view = view('backend.install.license')
->with('request', $request)
->with('errors', $errors);

echo $view;
}

public function checkDatabase() {
$request = Illuminate\Http\Request::capture();

$errors = array();

if($request->isMethod('post')){
$validator = Illuminate\Support\Facades\Validator::make($request->all(),
[
'host' => 'required',
'database' => 'required',
'username' => 'required',
'password' => 'required'
]
);
// Validate the arguments.
if ($validator->fails())
{
foreach ($validator->messages()->getMessages() as $field_name => $messages)
{
$errors[] = $messages;
}
} else {
$input = array(
'host' => $request->input('host'),
'database' => $request->input('database'),
'username' => $request->input('username'),
'password' => $request->input('password'),
);
$error = $this->validateDbCredentials($input, $request);

if($error) {
$errors[] = array($error);
}
}
}



if(! Illuminate\Support\Facades\Cache::has('license') ) {
die('No license');
}

$view = view('backend.install.database')
->with('request', $request)
->with('errors', $errors);

print $view;
}
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock