Linux server1.signalhg.team 4.18.0-553.134.1.el8_10.x86_64 #1 SMP Tue Jun 16 16:05:57 EDT 2026 x86_64
Apache
: 209.74.80.147 | : 216.73.217.16
150 Domain
8.1.34
signgwph
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 /
signgwph /
signaltechdemo1.com /
[ HOME SHELL ]
Name
Size
Permission
Action
.well-known
[ DIR ]
drwxr-xr-x
1cfqxmw
[ DIR ]
drwxr-xr-x
app
[ DIR ]
drwxr-xr-x
bootstrap
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
database
[ DIR ]
drwxr-xr-x
hlkai1f
[ DIR ]
drwxr-xr-x
ibjthpv
[ DIR ]
drwxr-xr-x
iwjcbvp
[ DIR ]
drwxr-xr-x
jcl1eti
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
lckyvgu
[ DIR ]
drwxr-xr-x
lidvzjc
[ DIR ]
drwxr-xr-x
node_modules
[ DIR ]
drwxr-xr-x
ockxemz
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxr-x---
resources
[ DIR ]
drwxr-xr-x
routes
[ DIR ]
drwxr-xr-x
storage
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
.editorconfig
258
B
-rw-r--r--
.env
1.07
KB
-rw-r--r--
.env.example
1.02
KB
-rw-r--r--
.gitattributes
152
B
-rw-r--r--
.gitignore
260
B
-rw-r--r--
.htaccess
204
B
-rw-r--r--
.htaccess.bak
688
B
-rw-r--r--
.styleci.yml
194
B
-rw-r--r--
222.php
15.76
KB
-rw-r--r--
README.md
3.87
KB
-rw-r--r--
artisan
1.65
KB
-rwxr-xr-x
bsstt.php
77.43
KB
-rw-r--r--
composer.json
2.64
KB
-rw-r--r--
composer.lock
462.1
KB
-rw-r--r--
def.html
263
B
-rw-r--r--
filefuns.php
5.86
KB
-r--r--r--
goat1.php
143.87
KB
-rw-r--r--
package-lock.json
1.33
MB
-rw-r--r--
package.json
2.82
KB
-rw-r--r--
phpunit.xml
1.15
KB
-rw-r--r--
random.php
52.18
KB
-rw-r--r--
webpack-rtl.config.js
2.69
KB
-rw-r--r--
webpack.mix.js
536
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : webpack-rtl.config.js
/** * Main file of webpack config for RTL. * Please do not modified unless you know what to do */ // eslint-disable-next-line @typescript-eslint/no-var-requires const path = require('path') // eslint-disable-next-line @typescript-eslint/no-var-requires const MiniCssExtractPlugin = require('mini-css-extract-plugin') // eslint-disable-next-line @typescript-eslint/no-var-requires const del = require('del') // eslint-disable-next-line @typescript-eslint/no-var-requires const RtlCssPlugin = require('rtlcss-webpack-plugin') // global variables const rootPath = path.resolve(__dirname) const distPath = rootPath + '/resources/pos/src/assets' const entries = { 'css/style': './resources/pos/src/assets/scss/style.scss', 'css/custom': './resources/pos/src/assets/scss/custom/custom.scss', 'css/frontend': "./resources/pos/src/assets/scss/frontend/frontend.scss" } // remove older folders and files ;(async () => { await del.sync(distPath + '/css', {force: true}) })() function mainConfig() { return { // enabled/disable optimizations mode: 'development', // console logs output, https://webpack.js.org/configuration/stats/ stats: 'errors-only', performance: { // disable warnings hint hints: false, }, entry: entries, output: { // main output path in assets folder path: distPath, // output path based on the entries' filename filename: '[name].js', }, resolve: { extensions: ['.scss'], }, plugins: [ new MiniCssExtractPlugin({ filename: '[name].css', }), new RtlCssPlugin({ filename: '[name].rtl.css', }), { apply: (compiler) => { // hook name compiler.hooks.afterEmit.tap('AfterEmitPlugin', () => { ;(async () => { await del.sync(distPath + '/css/*.js', {force: true}) })() }) }, }, ], module: { rules: [ { test: /\.scss$/, use: [ MiniCssExtractPlugin.loader, 'css-loader', { loader: 'sass-loader', options: { sourceMap: true, }, }, ], }, ], }, } } module.exports = function () { return [mainConfig()] }
Close