Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
quiz1 /
node_modules /
json-schema /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
links.js
2.08
KB
-rw-rw-rw-
validate.js
10.7
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : links.js
/** * JSON Schema link handler * Licensed under AFL-2.1 OR BSD-3-Clause */ (function (root, factory) { if (typeof define === 'function' && define.amd) { // AMD. Register as an anonymous module. define([], function () { return factory(); }); } else if (typeof module === 'object' && module.exports) { // Node. Does not work with strict CommonJS, but // only CommonJS-like environments that support module.exports, // like Node. module.exports = factory(); } else { // Browser globals root.jsonSchemaLinks = factory(); } }(this, function () {// setup primitive classes to be JSON Schema types var exports = {}; exports.cacheLinks = true; exports.getLink = function(relation, instance, schema){ // gets the URI of the link for the given relation based on the instance and schema // for example: // getLink( // "brother", // {"brother_id":33}, // {links:[{rel:"brother", href:"Brother/{brother_id}"}]}) -> // "Brother/33" var links = schema.__linkTemplates; if(!links){ links = {}; var schemaLinks = schema.links; if(schemaLinks && schemaLinks instanceof Array){ schemaLinks.forEach(function(link){ /* // TODO: allow for multiple same-name relations if(links[link.rel]){ if(!(links[link.rel] instanceof Array)){ links[link.rel] = [links[link.rel]]; } }*/ links[link.rel] = link.href; }); } if(exports.cacheLinks){ schema.__linkTemplates = links; } } var linkTemplate = links[relation]; return linkTemplate && exports.substitute(linkTemplate, instance); }; exports.substitute = function(linkTemplate, instance){ return linkTemplate.replace(/\{([^\}]*)\}/g, function(t, property){ var value = instance[decodeURIComponent(property)]; if(value instanceof Array){ // the value is an array, it should produce a URI like /Table/(4,5,8) and store.get() should handle that as an array of values return '(' + value.join(',') + ')'; } return value; }); }; return exports; }));
Close