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 /
welcome /
[ HOME SHELL ]
Name
Size
Permission
Action
OnBoarding
[ DIR ]
drwxrwxrwx
controllers
[ DIR ]
drwxrwxrwx
images
[ DIR ]
drwxrwxrwx
js
[ DIR ]
drwxrwxrwx
public
[ DIR ]
drwxrwxrwx
scss
[ DIR ]
drwxrwxrwx
translations
[ DIR ]
drwxrwxrwx
vendor
[ DIR ]
drwxrwxrwx
views
[ DIR ]
drwxrwxrwx
config.xml
456
B
-rwxrwxrwx
config_es.xml
457
B
-rwxrwxrwx
logo.png
5.65
KB
-rwxrwxrwx
webpack.config.js
1.07
KB
-rwxrwxrwx
welcome.php
5.38
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : webpack.config.js
var path = require('path'); var webpack = require('webpack'); var ExtractTextPlugin = require('extract-text-webpack-plugin'); module.exports = { entry: [ './js/module.js' ], output: { path: './public', filename: 'module.js' }, module: { loaders: [{ test: path.join(__dirname, 'js'), loader: 'babel', query: { presets: ['es2015'] } }, { test: /\.scss$/, loader: ExtractTextPlugin.extract('style', 'css!sass') }, { test: /\.css$/, loader: ExtractTextPlugin.extract('style', 'css?sourceMap!postcss!sass?sourceMap') }, { test: /.(png|woff(2)?|eot|ttf|svg)(\?[a-z0-9=\.]+)?$/, loader: 'file-loader?name=[hash].[ext]' }] }, plugins: [ new ExtractTextPlugin('module.css'), new webpack.optimize.UglifyJsPlugin({ sourceMap: false, compress: { sequences: true, conditionals: true, booleans: true, if_return: true, join_vars: true, drop_console: true }, output: { comments: false } }) ] };
Close