Linux lionsclub 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 161.35.52.75 | : 3.137.166.244
Cant Read [ /etc/named.conf ]
7.4.28
www-data
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
lionsclub /
core /
vendor /
livewire /
livewire /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
dist
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
stubs
[ DIR ]
drwxr-xr-x
.all-contributorsrc
17.66
KB
-rw-r--r--
.prettierrc
93
B
-rw-r--r--
LICENSE.md
1.05
KB
-rw-r--r--
README.md
24.07
KB
-rw-r--r--
babel.config.js
655
B
-rw-r--r--
composer.json
1.34
KB
-rw-r--r--
jest.config.js
239
B
-rw-r--r--
package-lock.json
128.69
KB
-rw-r--r--
package.json
992
B
-rw-r--r--
phpunit.xml
811
B
-rw-r--r--
rollup.config.js
1.49
KB
-rw-r--r--
squishy
1.43
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rollup.config.js
import md5 from 'md5'; import fs from 'fs-extra'; import babel from 'rollup-plugin-babel'; import alias from '@rollup/plugin-alias'; import filesize from 'rollup-plugin-filesize'; import { terser } from 'rollup-plugin-terser'; import commonjs from '@rollup/plugin-commonjs'; import resolve from 'rollup-plugin-node-resolve'; import outputManifest from 'rollup-plugin-output-manifest'; export default { input: 'js/index.js', output: { format: 'umd', sourcemap: true, name: 'Livewire', file: 'dist/livewire.js', }, plugins: [ resolve(), commonjs({ // These npm packages still use common-js modules. Ugh. include: /node_modules\/(get-value|isobject|core-js)/, }), filesize(), terser({ mangle: false, compress: { drop_debugger: false, }, }), babel({ exclude: 'node_modules/**' }), alias({ entries: [ { find: '@', replacement: __dirname + '/js' }, ] }), // Mimic Laravel Mix's mix-manifest file for auto-cache-busting. outputManifest({ serialize() { const file = fs.readFileSync(__dirname + '/dist/livewire.js', 'utf8'); const hash = md5(file).substr(0, 20); return JSON.stringify({ '/livewire.js': '/livewire.js?id=' + hash, }) } }), ] }
Close