V1.7 Hack guide. How to disable PrestaTrust for anonymity your action to French PS server

d-shilko

Well-known member
Pro
Master
Diamond
Elite
Joined
Jun 10, 2021
Messages
2,490
Reaction score
1,400
Points
113
NullCash
6,206
All we are good know Prestashop ratting out our action to French server.

Prestashop know about all sites with nulled modules and themes :)

How to be hidden for PrestaTrust!

1. Never to login to PtrstaAddons in BackOffice​


2. Edit file /app/config/config.yml​

find line
replace to
base_url: "127.0.01"
find line
prestatrust:
enabled: true
replace to
prestatrust:
enabled: false
After this step you can not download modules from prestamarket in backoffice. Install necessary free module before edit file(viewed product, cash on delivery, cronjob, comments, other).

3. Edit file \src\Adapter\Module\PrestaTrust\PrestaTrustChecker.php​

find function
protected function isCompliant(Module $module)
{
if (!$module->attributes->has('author_address')) {
return false;
}
$address = $module->attributes->get('author_address');
// Always ensure 0x prefix.
// Address should be 20bytes=40 HEX-chars + prefix.
if (!self::hasHexPrefix($address) || strlen($address) !== 42) {
return false;
}
if (!function_exists('ctype_xdigit') || !ctype_xdigit(substr($address, strlen('0x')))) {
return false;
}
return true;
}
replace to
protected function isCompliant(Module $module)
{
return false;
}

4. Edit file \src\Adapter\Module\PrestaTrust\ModuleEventSubscriber.php​

find function
public function onNewModule(ModuleZipManagementEvent $event)
{
if (!$this->enabled) {
return;
}
$this->checker->checkModuleZip($event->getModuleZip());
}
replace to
public function onNewModule(ModuleZipManagementEvent $event)
{
return;
}

5. Clear cache in backoffice​


P.S.
if you will update prestashop repeat step 2-5

Press "Like" button if you interest it :)

 

hxcode

Well-known member
Master
Diamond
Elite
Joined
Aug 16, 2020
Messages
3,277
Reaction score
360
Points
83
NullCash
51
thanks for sharing
 

Detolox

New member
XNullUser
Joined
Aug 4, 2021
Messages
22
Reaction score
0
Points
1
NullCash
4
thanks for the information!
 

uko

Member
XNullUser
Joined
Apr 14, 2021
Messages
588
Reaction score
11
Points
18
NullCash
9
thank you (y)

have you plz also instructions for PS 1.6?
 

jpierre62

Active member
Elite
XNullUser
Joined
May 25, 2021
Messages
121
Reaction score
130
Points
43
NullCash
439
A big thank you, I had problems with Prestashop addons, they had given me their payment module by default with a commission charge
 

Fortuner

New member
XNullUser
Joined
Feb 20, 2021
Messages
28
Reaction score
0
Points
1
NullCash
0
I see, that my manual about removing prestatrust, which I originally posted on nulled.cc (rest in peace) still floats on some forums
 

freiserk

Well-known member
Pro
Master
Diamond
Elite
Joined
Jan 24, 2019
Messages
3,455
Reaction score
6,446
Points
113
NullCash
35,194
I see, that my manual about removing prestatrust, which I originally posted on nulled.cc (rest in peace) still floats on some forums
It's true, I still continue to clean some more things.
To make it look cleaner and with less code.

I have managed to remove help buttons that are worthless.

Thanks for that great job.
 

amir_561

Well-known member
Diamond
Elite
XNullUser
Joined
Aug 20, 2019
Messages
1,610
Reaction score
127
Points
63
NullCash
25
thank uou for sharing this
 

gatoruso17

Member
XNullUser
Joined
Apr 16, 2020
Messages
123
Reaction score
2
Points
18
Website
nationinwar.ml
NullCash
30
All we are good know Prestashop ratting out our action to French server.

Prestashop know about all sites with nulled modules and themes :)

How to be hidden for PrestaTrust!

1. Never to login to PtrstaAddons in BackOffice​


2. Edit file /app/config/config.yml​

find line

replace to

find line

replace to


After this step you can not download modules from prestamarket in backoffice. Install necessary free module before edit file(viewed product, cash on delivery, cronjob, comments, other).

3. Edit file \src\Adapter\Module\PrestaTrust\PrestaTrustChecker.php​

find function

replace to



4. Edit file \src\Adapter\Module\PrestaTrust\ModuleEventSubscriber.php​

find function

replace to



5. Clear cache in backoffice​


P.S.
if you will update prestashop repeat step 2-5

Press "Like" button if you interest it :)

Thanks for info. Good
 

scorpionz

Active member
XNullUser
Joined
Sep 2, 2021
Messages
174
Reaction score
35
Points
28
NullCash
768
Thanks. It'll be useful in future.

Question: If we somehow buy some add-ons, themes, and then we install few nulled add-ons, will it be a trouble?
 
Top