📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: packet-node-encoded.js
'use strict'; const Packet = require('./packet'); class PacketNodeEncoded extends Packet { constructor(buf, pos, end, encoding) { super(buf, pos, end); this.encoding = encoding; } readStringLength() { const len = this.readUnsignedLength(); if (len === null) return null; this.pos += len; return this.buf.toString(this.encoding, this.pos - len, this.pos); } readString(beg, len) { return this.buf.toString(this.encoding, beg, beg + len); } subPacketLengthEncoded() { const len = this.readUnsignedLength(); this.skip(len); return new PacketNodeEncoded(this.buf, this.pos - len, this.pos, this.encoding); } readStringRemaining() { const str = this.buf.toString(this.encoding, this.pos, this.end); this.pos = this.end; return str; } } module.exports = PacketNodeEncoded;
Save