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-bigint /
[ HOME SHELL ]
Name
Size
Permission
Action
index.js
1.9
KB
-rw-r--r--
package.json
827
B
-rw-r--r--
run_test262.js
633
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
"use strict" const acorn = require("acorn") const tt = acorn.tokTypes const isIdentifierStart = acorn.isIdentifierStart module.exports = function(Parser) { return class extends Parser { parseLiteral(value) { const node = super.parseLiteral(value) if (node.raw.charCodeAt(node.raw.length - 1) == 110) node.bigint = this.getNumberInput(node.start, node.end - 1) return node } readRadixNumber(radix) { let start = this.pos this.pos += 2 // 0x let val = this.readInt(radix) if (val === null) this.raise(this.start + 2, `Expected number in radix ${radix}`) if (this.input.charCodeAt(this.pos) == 110) { let str = this.getNumberInput(start, this.pos) val = typeof BigInt !== "undefined" ? BigInt(str) : null ++this.pos } else if (isIdentifierStart(this.fullCharCodeAtPos())) this.raise(this.pos, "Identifier directly after number") return this.finishToken(tt.num, val) } readNumber(startsWithDot) { let start = this.pos // Not an int if (startsWithDot) return super.readNumber(startsWithDot) // Legacy octal if (this.input.charCodeAt(start) === 48 && this.input.charCodeAt(start + 1) !== 110) { return super.readNumber(startsWithDot) } if (this.readInt(10) === null) this.raise(start, "Invalid number") // Not a BigInt, reset and parse again if (this.input.charCodeAt(this.pos) != 110) { this.pos = start return super.readNumber(startsWithDot) } let str = this.getNumberInput(start, this.pos) let val = typeof BigInt !== "undefined" ? BigInt(str) : null ++this.pos return this.finishToken(tt.num, val) } // This is basically a hook for acorn-numeric-separator getNumberInput(start, end) { if (super.getNumberInput) return super.getNumberInput(start, end) return this.input.slice(start, end) } } }
Close