Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.133.128.223
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
window-size /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE-MIT
1.05
KB
-rw-r--r--
2014-02-15 03:41
README.md
624
B
-rw-r--r--
2014-02-15 03:41
index.js
851
B
-rw-r--r--
2014-02-15 03:41
package.json
1.46
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
/* * window-size * https://github.com/jonschlinkert/window-size * * Copyright (c) 2014 Jon Schlinkert * Licensed under the MIT license. */ const tty = require('tty') module.exports = (function() { var width; var height; if(tty.isatty(1) && tty.isatty(2)) { if(process.stdout.getWindowSize) { width = process.stdout.getWindowSize(1)[0]; height = process.stdout.getWindowSize(1)[1]; } else if (tty.getWindowSize) { width = tty.getWindowSize()[1]; height = tty.getWindowSize()[0]; } else if (process.stdout.columns && process.stdout.rows) { height = process.stdout.columns; width = process.stdout.rows; } } else { new Error('Error: could not get window size with tty or process.stdout'); } return { height: height, width: width } })();