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 /
test /
[ HOME SHELL ]
Name
Size
Permission
Action
run.js
1.13
KB
-rw-rw-r--
sample-pack.js
1.95
KB
-rw-rw-r--
test-config-codec.js
1.6
KB
-rw-rw-r--
test-mem-db.js
1.65
KB
-rw-rw-r--
test-object-codec.js
6.94
KB
-rw-rw-r--
test-pack-codec.js
2.62
KB
-rw-rw-r--
test-pack-ops.js
1.17
KB
-rw-rw-r--
test-zlib.js
1.21
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : test-zlib.js
var run = require('./run.js'); var bodec = require('bodec'); // The thing we mean to test. var inflate = require('../lib/inflate.js'); var deflate = require('../lib/deflate.js'); var inflateStream = require('../lib/inflate-stream.js'); var bin = bodec.create(1024); for (var i = 0; i < 1024; i++) { bin[i] = i >> 2 | i % 4 & 0x7f; } run([ function testRoundTrip() { var deflated = deflate(bin); if (!bodec.isBinary(deflated)) { throw new Error("deflate output should be native binary"); } var inflated = inflate(deflated); if (!bodec.isBinary(inflated)) { throw new Error("inflate output should be native binary"); } if (bodec.toRaw(bin) !== bodec.toRaw(inflated)) { console.log([bin, inflated]); throw new Error("Problem with roundtrip"); } }, function testStream() { var done = false; var chunks = []; var deflated = deflate(bin); var inf = inflateStream(); for (var i = 0, l = deflated.length; i < l; ++i) { inf.write(deflated[i]); } var inflated = inf.flush(); if (bodec.toRaw(bin) !== bodec.toRaw(inflated)) { console.log([bin.length, inflated.length]); throw new Error("Problem with roundtrip"); } } ]);
Close