Accepting Script Nulling Requests

soapmac123

New member
Sep 3, 2019
28
10
3
anyone please null directadmin extended for whmcs .... I can pay 10$ for it.. i have the untouched script
 

naat

New member
Nov 2, 2018
16
6
3
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
 

MrSam_1

Well-known member
Administrative
Trusted Seller
Dec 1, 2018
23,637
26,969
120
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

MrSam_1

Well-known member
Administrative
Trusted Seller
Dec 1, 2018
23,637
26,969
120
Not for this type of encoding. There are beautifiers for scrambled variable names but not mass decoders based on custom scrambling functions.
 

lee1

Member
Banned User
Jun 6, 2020
145
17
18
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: 17
  • deals of the day error.jpg
    deals of the day error.jpg
    515.3 KB · Views: 33

starliner

Well-known member
Null Master
Trusted Uploader
Mar 28, 2019
559
530
93

Jg_selisa

Well-known member
Trusted Uploader
Feb 10, 2019
432
302
63
@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;
}
 

About us

  • Our 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 to make sure our community is one of the best.

Quick Navigation

User Menu