Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
node-chalk /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
rainbow.js
926
B
-rw-r--r--
2023-06-29 10:56
screenshot.js
603
B
-rw-r--r--
2023-06-29 10:56
Save
Rename
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) + ' '); }