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.145.80.161
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 /
js-yaml /
lib /
js-yaml /
Delete
Unzip
Name
Size
Permission
Date
Action
schema
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
type
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
common.js
1.15
KB
-rw-rw-r--
2022-08-30 11:49
dumper.js
26.84
KB
-rw-rw-r--
2022-08-30 11:49
exception.js
1
KB
-rw-rw-r--
2022-08-30 11:49
loader.js
43.32
KB
-rw-rw-r--
2022-08-30 11:49
mark.js
1.53
KB
-rw-rw-r--
2022-08-30 11:49
schema.js
2.69
KB
-rw-rw-r--
2022-08-30 11:49
type.js
1.55
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
'use strict'; var common = require('./common'); function Mark(name, buffer, position, line, column) { this.name = name; this.buffer = buffer; this.position = position; this.line = line; this.column = column; } Mark.prototype.getSnippet = function getSnippet(indent, maxLength) { var head, start, tail, end, snippet; if (!this.buffer) return null; indent = indent || 4; maxLength = maxLength || 75; head = ''; start = this.position; while (start > 0 && '\x00\r\n\x85\u2028\u2029'.indexOf(this.buffer.charAt(start - 1)) === -1) { start -= 1; if (this.position - start > (maxLength / 2 - 1)) { head = ' ... '; start += 5; break; } } tail = ''; end = this.position; while (end < this.buffer.length && '\x00\r\n\x85\u2028\u2029'.indexOf(this.buffer.charAt(end)) === -1) { end += 1; if (end - this.position > (maxLength / 2 - 1)) { tail = ' ... '; end -= 5; break; } } snippet = this.buffer.slice(start, end); return common.repeat(' ', indent) + head + snippet + tail + '\n' + common.repeat(' ', indent + this.position - start + head.length) + '^'; }; Mark.prototype.toString = function toString(compact) { var snippet, where = ''; if (this.name) { where += 'in "' + this.name + '" '; } where += 'at line ' + (this.line + 1) + ', column ' + (this.column + 1); if (!compact) { snippet = this.getSnippet(); if (snippet) { where += ':\n' + snippet; } } return where; }; module.exports = Mark;