Linux node5458.myfcloud.com 6.10.2-x86_64-linode165 #1 SMP PREEMPT_DYNAMIC Tue Jul 30 15:03:21 EDT 2024 x86_64
Apache
: 45.79.123.194 | : 3.138.169.46
16 Domain
7.4.33
addify5
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
addify5 /
.trash /
modules.1 /
blockwishlist /
[ HOME SHELL ]
Name
Size
Permission
Action
_dev
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
controllers
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
upgrade
[ DIR ]
drwxr-xr-x
views
[ DIR ]
drwxr-xr-x
.php-cs-fixer.dist.php
179
B
-rw-r--r--
.prettierrc.js
153
B
-rw-r--r--
Makefile
432
B
-rw-r--r--
blockwishlist.php
10.75
KB
-rw-r--r--
composer.lock
85.08
KB
-rw-r--r--
config.xml
502
B
-rw-r--r--
index.php
1.1
KB
-rw-r--r--
logo.png
4.29
KB
-rw-r--r--
package-lock.json
517.36
KB
-rw-r--r--
postcss.config.js
944
B
-rw-r--r--
tsconfig.json
394
B
-rw-r--r--
webpack.config.js
1.28
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : webpack.config.js
/* eslint-disable indent,comma-dangle */ /** * 2007-2020 PrestaShop and Contributors * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 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: * https://opensource.org/licenses/OSL-3.0 * 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-2020 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ /** * Three mode available: * build = production mode * dev = development mode */ const prod = require('./.webpack/prod.js'); const dev = require('./.webpack/dev.js'); module.exports = (env, argv) => (argv.mode === 'production' ? prod() : dev());
Close