Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
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 /
insepet /
tienda /
modules /
paypal /
[ HOME SHELL ]
Name
Size
Permission
Action
_dev
[ DIR ]
drwxrwxrwx
classes
[ DIR ]
drwxrwxrwx
controllers
[ DIR ]
drwxrwxrwx
sdk
[ DIR ]
drwxrwxrwx
services
[ DIR ]
drwxrwxrwx
smarty
[ DIR ]
drwxrwxrwx
translations
[ DIR ]
drwxrwxrwx
upgrade
[ DIR ]
drwxrwxrwx
vendor
[ DIR ]
drwxrwxrwx
views
[ DIR ]
drwxrwxrwx
.editorconfig
172
B
-rwxrwxrwx
.eslintrc.js
913
B
-rwxrwxrwx
.stylelintrc
428
B
-rwxrwxrwx
LICENSE
10.12
KB
-rwxrwxrwx
Readme.md
4.55
KB
-rwxrwxrwx
browserlist
71
B
-rwxrwxrwx
config_es.xml
743
B
-rwxrwxrwx
index.php
1.28
KB
-rwxrwxrwx
logo.png
11.01
KB
-rwxrwxrwx
package-lock.json
404.14
KB
-rwxrwxrwx
package.json
1.69
KB
-rwxrwxrwx
paypal.php
78.27
KB
-rwxrwxrwx
postcss.config.js
124
B
-rwxrwxrwx
webpack.config.js
2.35
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : webpack.config.js
const path = require('path'); const FixStyleOnlyEntriesPlugin = require('webpack-fix-style-only-entries'); const MiniCssExtractPlugin = require('mini-css-extract-plugin'); const TerserPlugin = require('terser-webpack-plugin'); const minimizers = []; const plugins = [ new FixStyleOnlyEntriesPlugin(), new MiniCssExtractPlugin({ filename: '[name].css', }), ]; const config = { entry: { 'js/bo_order': './_dev/js/bo_order.js', 'js/ec_in_context': './_dev/js/ec_in_context.js', 'js/order_confirmation': './_dev/js/order_confirmation.js', 'js/payment_ppp': './_dev/js/payment_ppp.js', 'js/shortcut_payment': './_dev/js/shortcut_payment.js', 'js/shortcut': './_dev/js/shortcut.js', 'js/adminSetup': './_dev/js/adminSetup.js', 'js/adminCheckout': './_dev/js/adminCheckout.js', 'js/helpAdmin': './_dev/js/helpAdmin.js', 'js/payment_mb': './_dev/js/payment_mb.js', 'css/paypal_bo': './_dev/scss/paypal_bo.scss', 'css/paypal_fo': './_dev/scss/paypal_fo.scss', }, output: { filename: '[name].js', path: path.resolve(__dirname, './views/'), }, module: { rules: [ { test: /\.js$/, exclude: /node_modules/, use: [ { loader: 'babel-loader', options: { presets: ['@babel/preset-env'], }, }, ], }, { test: /\.(s)?css$/, use: [ {loader: MiniCssExtractPlugin.loader}, {loader: 'css-loader'}, {loader: 'postcss-loader'}, {loader: 'sass-loader'}, ], }, ], }, externals: { $: '$', jquery: 'jQuery', }, plugins, optimization: { minimizer: minimizers, }, resolve: { extensions: ['.js', '.scss', '.css'], alias: { '~': path.resolve(__dirname, './node_modules'), '$img_dir': path.resolve(__dirname, './views/img'), }, }, }; module.exports = (env, argv) => { // Production specific settings if (argv.mode === 'production') { const terserPlugin = new TerserPlugin({ cache: true, extractComments: /^\**!|@preserve|@license|@cc_on/i, // Remove comments except those containing @preserve|@license|@cc_on parallel: true, terserOptions: { drop_console: true, }, }); config.optimization.minimizer.push(terserPlugin); } return config; };
Close