Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
nurse /
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
modules
[ DIR ]
drwxr-xr-x
changelog.txt
290.77
KB
-rwxr-xr-x
elementor.php
3.34
KB
-rwxr-xr-x
license.txt
34.32
KB
-rwxr-xr-x
phpcs.xml
2.2
KB
-rwxr-xr-x
readme.txt
28.3
KB
-rwxr-xr-x
run-on-linux.js
1.11
KB
-rwxr-xr-x
tsconfig.json
919
B
-rwxr-xr-x
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