Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
insepet /
tienda /
js /
jquery /
plugins /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
ajaxfileupload
[ DIR ]
drwxrwxrwx
alerts
[ DIR ]
drwxrwxrwx
autocomplete
[ DIR ]
drwxrwxrwx
bxslider
[ DIR ]
drwxrwxrwx
chosen
[ DIR ]
drwxrwxrwx
cluetip
[ DIR ]
drwxrwxrwx
fancybox
[ DIR ]
drwxrwxrwx
footable
[ DIR ]
drwxrwxrwx
footable-sort
[ DIR ]
drwxrwxrwx
growl
[ DIR ]
drwxrwxrwx
imgareaselect
[ DIR ]
drwxrwxrwx
jgrowl
[ DIR ]
drwxrwxrwx
jqzoom
[ DIR ]
drwxrwxrwx
jstree
[ DIR ]
drwxrwxrwx
select2
[ DIR ]
drwxrwxrwx
smartWizard
[ DIR ]
drwxrwxrwx
tabpane
[ DIR ]
drwxrwxrwx
thickbox
[ DIR ]
drwxrwxrwx
timepicker
[ DIR ]
drwxrwxrwx
treeview-categories
[ DIR ]
drwxrwxrwx
validate
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
index.php
1.29
KB
-rwxrwxrwx
jquery.autosize.js
3.1
KB
-rwxrwxrwx
jquery.chosen.js
39.49
KB
-rwxrwxrwx
jquery.colorpicker.js
17.46
KB
-rwxrwxrwx
jquery.cooki-plugin.js
1.66
KB
-rwxrwxrwx
jquery.dimensions.js
2.46
KB
-rwxrwxrwx
jquery.dragtable.js
16.52
KB
-rwxrwxrwx
jquery.easing.js
4.84
KB
-rwxrwxrwx
jquery.excanvas.js
18.96
KB
-rwxrwxrwx
jquery.fieldselection.js
1.75
KB
-rwxrwxrwx
jquery.flip.js
11.5
KB
-rwxrwxrwx
jquery.flot.js
36.67
KB
-rwxrwxrwx
jquery.highlight.js
1.33
KB
-rwxrwxrwx
jquery.hoverIntent.js
1.57
KB
-rwxrwxrwx
jquery.idTabs.js
2.1
KB
-rwxrwxrwx
jquery.ifxtransfer.js
1.97
KB
-rwxrwxrwx
jquery.jqminmax.js
1.91
KB
-rwxrwxrwx
jquery.jscroll.js
14.68
KB
-rwxrwxrwx
jquery.pngFix.js
2.51
KB
-rwxrwxrwx
jquery.scrollTo.js
2.61
KB
-rwxrwxrwx
jquery.serialScroll.js
1.97
KB
-rwxrwxrwx
jquery.sortable.js
2.8
KB
-rwxrwxrwx
jquery.tablednd.js
11.83
KB
-rwxrwxrwx
jquery.tablefilter.js
1.87
KB
-rwxrwxrwx
jquery.tagify.js
3.75
KB
-rwxrwxrwx
jquery.typewatch.js
2.24
KB
-rwxrwxrwx
jquery.validate-creditcard.js
3.81
KB
-rwxrwxrwx
jquery.validate.js
20.57
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.cooki-plugin.js
/*! * jQuery Cookie Plugin * https://github.com/carhartl/jquery-cookie * * Copyright 2011, Klaus Hartl * Dual licensed under the MIT or GPL Version 2 licenses. * http://www.opensource.org/licenses/mit-license.php * http://www.opensource.org/licenses/GPL-2.0 */ (function($) { $.cookie = function(key, value, options) { // key and at least value given, set cookie... if (arguments.length > 1 && (!/Object/.test(Object.prototype.toString.call(value)) || value === null || value === undefined)) { options = $.extend({}, options); if (value === null || value === undefined) { options.expires = -1; } if (typeof options.expires === 'number') { var days = options.expires, t = options.expires = new Date(); t.setDate(t.getDate() + days); } value = String(value); return (document.cookie = [ encodeURIComponent(key), '=', options.raw ? value : encodeURIComponent(value), options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE options.path ? '; path=' + options.path : '', options.domain ? '; domain=' + options.domain : '', options.secure ? '; secure' : '' ].join('')); } // key and possibly options given, get cookie... options = value || {}; var decode = options.raw ? function(s) { return s; } : decodeURIComponent; var pairs = document.cookie.split('; '); for (var i = 0, pair; pair = pairs[i] && pairs[i].split('='); i++) { if (decode(pair[0]) === key) return decode(pair[1] || ''); // IE saves cookies with empty string as "c; ", e.g. without "=" as opposed to EOMB, thus pair[1] may be undefined } return null; }; })(jQuery);
Close