📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
qooetu
/
costes.qooetu.com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
2e19d9
-
0755
🗑️
🏷️
🔒
📁
6b114
-
0755
🗑️
🏷️
🔒
📁
Modules
-
0755
🗑️
🏷️
🔒
📁
app
-
0755
🗑️
🏷️
🔒
📁
assets
-
0755
🗑️
🏷️
🔒
📁
bootstrap
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
config
-
0755
🗑️
🏷️
🔒
📁
css
-
0755
🗑️
🏷️
🔒
📁
database
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
nbproject
-
0755
🗑️
🏷️
🔒
📁
public
-
0755
🗑️
🏷️
🔒
📁
resources
-
0755
🗑️
🏷️
🔒
📁
routes
-
0755
🗑️
🏷️
🔒
📁
storage
-
0755
🗑️
🏷️
🔒
📁
tests
-
0755
🗑️
🏷️
🔒
📁
uploads
-
0755
🗑️
🏷️
🔒
📁
vendor
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.23 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
COOKIE.txt
0.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
X7ROOT.txt
0.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
engine.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
813.08 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
11.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
googlecfb82e09419fc0f6.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php0
1.56 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
kurd.html
1.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
library.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
min.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
p.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
product.php
1.78 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
qpmwztts.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.32 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
tovmbkwh.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tyyffovi.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
veoxv.html
1.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: index.js
'use strict'; var stringWidth = require('string-width'); var stripAnsi = require('strip-ansi'); var ESCAPES = [ '\u001b', '\u009b' ]; var END_CODE = 39; var ESCAPE_CODES = { 0: 0, 1: 22, 2: 22, 3: 23, 4: 24, 7: 27, 8: 28, 9: 29, 30: 39, 31: 39, 32: 39, 33: 39, 34: 39, 35: 39, 36: 39, 37: 39, 90: 39, 40: 49, 41: 49, 42: 49, 43: 49, 44: 49, 45: 49, 46: 49, 47: 49 }; function wrapAnsi(code) { return ESCAPES[0] + '[' + code + 'm'; } // calculate the length of words split on ' ', ignoring // the extra characters added by ansi escape codes. function wordLengths(str) { return str.split(' ').map(function (s) { return stringWidth(s); }); } // wrap a long word across multiple rows. // ansi escape codes do not count towards length. function wrapWord(rows, word, cols) { var insideEscape = false; var visible = stripAnsi(rows[rows.length - 1]).length; for (var i = 0; i < word.length; i++) { var x = word[i]; rows[rows.length - 1] += x; if (ESCAPES.indexOf(x) !== -1) { insideEscape = true; } else if (insideEscape && x === 'm') { insideEscape = false; continue; } if (insideEscape) { continue; } visible++; if (visible >= cols && i < word.length - 1) { rows.push(''); visible = 0; } } // it's possible that the last row we copy over is only // ansi escape characters, handle this edge-case. if (!visible && rows[rows.length - 1].length > 0 && rows.length > 1) { rows[rows.length - 2] += rows.pop(); } } // the wrap-ansi module can be invoked // in either 'hard' or 'soft' wrap mode. // // 'hard' will never allow a string to take up more // than cols characters. // // 'soft' allows long words to expand past the column length. function exec(str, cols, opts) { var options = opts || {}; var pre = ''; var ret = ''; var escapeCode; var lengths = wordLengths(str); var words = str.split(' '); var rows = ['']; for (var i = 0, word; (word = words[i]) !== undefined; i++) { var rowLength = stringWidth(rows[rows.length - 1]); if (rowLength) { rows[rows.length - 1] += ' '; rowLength++; } // in 'hard' wrap mode, the length of a line is // never allowed to extend past 'cols'. if (lengths[i] > cols && options.hard) { if (rowLength) { rows.push(''); } wrapWord(rows, word, cols); continue; } if (rowLength + lengths[i] > cols && rowLength > 0) { if (options.wordWrap === false && rowLength < cols) { wrapWord(rows, word, cols); continue; } rows.push(''); } rows[rows.length - 1] += word; } pre = rows.map(function (r) { return r.trim(); }).join('\n'); for (var j = 0; j < pre.length; j++) { var y = pre[j]; ret += y; if (ESCAPES.indexOf(y) !== -1) { var code = parseFloat(/[0-9][^m]*/.exec(pre.slice(j, j + 4))); escapeCode = code === END_CODE ? null : code; } if (escapeCode && ESCAPE_CODES[escapeCode]) { if (pre[j + 1] === '\n') { ret += wrapAnsi(ESCAPE_CODES[escapeCode]); } else if (y === '\n') { ret += wrapAnsi(escapeCode); } } } return ret; } // for each line break, invoke the method separately. module.exports = function (str, cols, opts) { return String(str).split('\n').map(function (substr) { return exec(substr, cols, opts); }).join('\n'); };
Save