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 /
js-git /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
apply-delta.js
1.8
KB
-rw-rw-r--
config-codec.js
1.49
KB
-rw-rw-r--
defer.js
734
B
-rw-rw-r--
deflate.js
249
B
-rw-rw-r--
find-common.js
1.25
KB
-rw-rw-r--
git-fs.js
3.07
KB
-rw-rw-r--
inflate-stream.js
967
B
-rw-rw-r--
inflate.js
249
B
-rw-rw-r--
modes.js
728
B
-rw-rw-r--
object-codec.js
6.17
KB
-rw-rw-r--
pack-codec.js
7.87
KB
-rw-rw-r--
pkt-line.js
3.07
KB
-rw-rw-r--
wrap-handler.js
370
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : inflate-stream.js
var Inflate = require('pako').Inflate; var Binary = require('bodec').Binary; // Byte oriented inflate stream. Wrapper for pako's Inflate. // // var inf = inflate(); // inf.write(byte) -> more - Write a byte to inflate's state-machine. // Returns true if more data is expected. // inf.recycle() - Reset the internal state machine. // inf.flush() -> data - Flush the output as a binary buffer. // module.exports = function inflateStream() { var inf = new Inflate(); var b = new Uint8Array(1); var empty = new Binary(0); return { write: write, recycle: recycle, flush: Binary === Uint8Array ? flush : flushConvert }; function write(byte) { b[0] = byte; inf.push(b); return !inf.ended; } function recycle() { inf = new Inflate(); } function flush() { return inf.result || empty; } function flushConvert() { return inf.result ? new Binary(inf.result) : empty; } };
Close