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.15.28.86
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
errno /
Delete
Unzip
Name
Size
Permission
Date
Action
.jshintrc
1.12
KB
-rw-rw-r--
2022-08-30 11:49
.travis.yml
130
B
-rw-rw-r--
2022-08-30 11:49
README.md
4.59
KB
-rw-rw-r--
2022-08-30 11:49
build.js
1.11
KB
-rwxrwxr-x
2022-08-30 11:49
cli.js
440
B
-rwxrwxr-x
2022-08-30 11:49
custom.js
1.62
KB
-rw-rw-r--
2022-08-30 11:49
errno.js
5.48
KB
-rw-rw-r--
2022-08-30 11:49
package.json
629
B
-rw-rw-r--
2022-08-30 11:49
test.js
2.58
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
var prr = require('prr') function init (type, message, cause) { if (!!message && typeof message != 'string') { message = message.message || message.name } prr(this, { type : type , name : type // can be passed just a 'cause' , cause : typeof message != 'string' ? message : cause , message : message }, 'ewr') } // generic prototype, not intended to be actually used - helpful for `instanceof` function CustomError (message, cause) { Error.call(this) if (Error.captureStackTrace) Error.captureStackTrace(this, this.constructor) init.call(this, 'CustomError', message, cause) } CustomError.prototype = new Error() function createError (errno, type, proto) { var err = function (message, cause) { init.call(this, type, message, cause) //TODO: the specificity here is stupid, errno should be available everywhere if (type == 'FilesystemError') { this.code = this.cause.code this.path = this.cause.path this.errno = this.cause.errno this.message = (errno.errno[this.cause.errno] ? errno.errno[this.cause.errno].description : this.cause.message) + (this.cause.path ? ' [' + this.cause.path + ']' : '') } Error.call(this) if (Error.captureStackTrace) Error.captureStackTrace(this, err) } err.prototype = !!proto ? new proto() : new CustomError() return err } module.exports = function (errno) { var ce = function (type, proto) { return createError(errno, type, proto) } return { CustomError : CustomError , FilesystemError : ce('FilesystemError') , createError : ce } }