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 /
tv4 /
[ HOME SHELL ]
Name
Size
Permission
Action
lang
[ DIR ]
drwxrwxr-x
LICENSE.txt
395
B
-rw-rw-r--
README.md
14.54
KB
-rw-rw-r--
package.json
1.43
KB
-rw-rw-r--
tv4.async-jquery.js
1.45
KB
-rw-rw-r--
tv4.js
54.87
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tv4.async-jquery.js
// Provides support for asynchronous validation (fetching schemas) using jQuery // Callback is optional third argument to tv4.validate() - if not present, synchronous operation // callback(result, error); if (typeof (tv4.asyncValidate) === 'undefined') { tv4.syncValidate = tv4.validate; tv4.validate = function (data, schema, callback, checkRecursive, banUnknownProperties) { if (typeof (callback) === 'undefined') { return this.syncValidate(data, schema, checkRecursive, banUnknownProperties); } else { return this.asyncValidate(data, schema, callback, checkRecursive, banUnknownProperties); } }; tv4.asyncValidate = function (data, schema, callback, checkRecursive, banUnknownProperties) { var $ = jQuery; var result = tv4.validate(data, schema, checkRecursive, banUnknownProperties); if (!tv4.missing.length) { callback(result, tv4.error); } else { // Make a request for each missing schema var missingSchemas = $.map(tv4.missing, function (schemaUri) { return $.getJSON(schemaUri).success(function (fetchedSchema) { tv4.addSchema(schemaUri, fetchedSchema); }).error(function () { // If there's an error, just use an empty schema tv4.addSchema(schemaUri, {}); }); }); // When all requests done, try again $.when.apply($, missingSchemas).done(function () { var result = tv4.asyncValidate(data, schema, callback, checkRecursive, banUnknownProperties); }); } }; }
Close