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 : git-fs.js
"use strict"; var modes = require('./modes'); var defer = require('./defer'); // options.encrypt(plain) -> encrypted // options.decrypt(encrypted) -> plain // options.shouldEncrypt(path) -> boolean // options.getRootTree() => hash // options.setRootTree(hash) => module.exports = function (repo, options) { var toWrite = {}; var callbacks = []; var writing = false; return { readFile: readFile, writeFile: writeFile, readDir: readDir }; function readFile(path, callback) { if (!callback) return readFile.bind(null, path); // If there is a pending write for this path, pull from the cache. if (toWrite[path]) return callback(null, toWrite[path]); // Otherwise read from the persistent storage options.getRootTree(onRootTree); function onRootTree(err, hash) { if (!hash) return callback(err); repo.pathToEntry(hash, path, onEntry); } function onEntry(err, entry) { if (!entry || !modes.isBlob(entry.mode)) return callback(err); repo.loadAs("blob", entry.hash, function (err, content) { if (!content) return callback(err); if (entry.mode === modes.sym) { content = options.decrypt(content); } callback(null, content); }); } } function writeFile(path, binary, callback) { if (!callback) return writeFile.bind(null, path, binary); toWrite[path] = binary; callbacks.push(callback); defer(check); } function readDir(path, callback) { if (!callback) return readDir.bind(null, path); options.getRootTree(onRootTree); function onRootTree(err, hash) { if (!hash) return callback(err); repo.pathToEntry(hash, path, onEntry); } function onEntry(err, entry) { if (!entry || entry.mode !== modes.tree) return callback(err); repo.loadAs("tree", entry.hash, onTree); } function onTree(err, tree) { if (!tree) return callback(err); callback(null, Object.keys(tree)); } } function check() { if (writing || !callbacks.length) return; writing = true; options.getRootTree(onRootTree); function onRootTree(err, hash) { if (err) return callall(err); var files = pullFiles(); if (hash) files.base = hash; repo.createTree(files, onNewTree); } function onNewTree(err, hash) { if (err) return callall(err); options.setRootTree(hash, onSaveRoot); } function onSaveRoot(err) { if (err) return callall(err); writing = false; callall(); defer(check); } } function pullFiles() { var files = Object.keys(toWrite).map(function (path) { var content = toWrite[path]; delete toWrite[path]; var mode = modes.blob; if (options.shouldEncrypt && options.shouldEncrypt(path)) { mode = modes.sym; content = options.encrypt(content); } return { path: path, mode: mode, content: content }; }); return files; } function callall(err) { callbacks.splice(0, callbacks.length).forEach(function (callback) { callback(err); }); } };
Close