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 /
cai /
admins /
sort /
docs /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
bootstrap.min.js
58.6
KB
-rwxr-x--x
demo-build-table.js
5.47
KB
-rwxr-x--x
docs.js
7.98
KB
-rwxr-x--x
jquery-1.2.6.min.js
54.43
KB
-rwxr-x--x
jquery-1.4.4.min.js
76.76
KB
-rwxr-x--x
jquery-2.2.4.min.js
83.57
KB
-rwxr-x--x
jquery-latest.min.js
86.08
KB
-rwxr-x--x
jquery-migrate-3.1.0.min.js
8.78
KB
-rwxr-x--x
jquery-ui.min.js
247.72
KB
-rwxr-x--x
jquery.jui_theme_switch.min.js
3.62
KB
-rwxr-x--x
jquery.magnific-popup.min.js
20.44
KB
-rwxr-x--x
jquery.tipsy.min.js
4.38
KB
-rwxr-x--x
prettify.js
13.31
KB
-rwxr-x--x
rangeslider.min.js
6.25
KB
-rwxr-x--x
search-ie.js
864
B
-rwxr-x--x
search.js
10.78
KB
-rwxr-x--x
select2-3.4.6.min.js
62.49
KB
-rwxr-x--x
sugar.min.js
66.88
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : docs.js
/*jshint browser:true, jquery:true, unused:false */ /*global prettyPrint:false */ (function($) { $(function() { var $t, t, v, animating, clicked, cleanupCode = function(code) { return code.replace(/([<>\"\'\t\n]|…)/g, function(m) { return { '<' : '<', '>' : '>', "'" : ''', '"' : '"', '\t': ' ', '\n': '<br/>', // needed for IE '…' : '&#133;' // pager custom controls ellipsis }[m];}); }; $('a.external').each(function() {this.target = '_new';}); // get javascript source if ($('#js').length) { $('#javascript pre').addClass('mod').html( cleanupCode( $('#js').html() ) ); } if ($('#js2').length) { $('#javascript2 pre').addClass('mod').html( cleanupCode( $('#js2').html() ) ); } if ($('#css').length) { $('pre.lang-css').not('.locked').addClass('mod').html( cleanupCode( $('#css').html() ) ); } if ($('#demo').length && $('#html pre').length) { $('#html pre').addClass('mod').html( cleanupCode( $('#demo').html() ) ); } // apply to already pre-formatted blocks to add <br> for IE $('pre.prettyprint:not(.mod)').each(function() { $t = $(this); $t.html( cleanupCode( $t.html() ) ); }); // apply prettyprint in several settimeouts window['PR_SHOULD_USE_CONTINUATION'] = true; if (typeof prettyPrint !== 'undefined') { prettyPrint(); } // hide child rows $('#root .tablesorter-childRow').hide(); // toggle child row content, not hiding the row since we are using rowspan $('#root .toggle').click(function() { $(this).closest('tr').nextUntil('tr:not(.tablesorter-childRow)').toggle(); return false; }); animating = false; clicked = false; $('.collapsible').hide(); $('a.permalink').click(function() { var $el = $(this); setTimeout(function() { if (!animating && !clicked) { animating = true; $el.closest('tr').find('.collapsible').slideToggle(); setTimeout(function() { animating = false; }, 200); } }, 200); return false; }); $('#root .permalink').dblclick(function() { clicked = true; window.location.hash = '#' + $(this).closest('tr')[0].id; showProperty(); setTimeout(function() { clicked = false; }, 500); return false; }); $('.toggleAll, .showAll, .hideAll').click(function() { t = $.trim($(this).text()); // use nextAll to ignore any <br> or other elements between this link and the table $(this).parent().nextAll('table:first').find('.collapsible')[t](); return false; }); // update version number $t = $('.current-version'); if ($t.length) { $t.html($.tablesorter.version); } // add high visibility tags for newest versions t = $.tablesorter.version.replace(/(v|version|\+)/g, '').split('.'); v = [ parseInt(t[0], 10) || 1, parseInt(t[1], 10) || 0, parseInt(t[2], 10) || 0 ]; $('.version').each(function() { var i; $t = $(this); i = $t.text().replace(/(v|version|\+)/g, '').split('.'); t = [ parseInt(i[0], 10) || 1, parseInt(i[1], 10) || 0, parseInt(i[2], 10) || 0 ]; if (t[0] === v[0] && t[1] >= v[1] - 1 ) { $t.prepend('<span class="label ' + ( t[0] === v[0] && t[1] < v[1] ? ' label-default' : ' label-success' ) + '">'+ ($t.hasClass('updated') ? 'Updated' : 'New') + '</span> '); // updates for current version are brighter if (t[2] <= v[2] - 1) { // new labels for revisions > 1 back are lighter $t.addClass('older'); } } }); $t = $('.accordion'); if ($t.length) { var hashId, hash = window.location.hash; // add accodion ids $t.each(function() { $(this).children('h3').each(function(i) { var txt = $(this).find('a').text().toLowerCase().replace(/[-:()\"]/g,'').replace(/[\s+\/]/g,'_'); this.id = txt; if (hash && txt === hash.slice(1)) { hashId = i; } }); }); // set up accordions $t.each(function() { var $this = $(this); $this.accordion({ active: $this.hasClass('start-closed') ? false : hashId, animate: false, heightStyle: 'content', collapsible: true, create: function() { $this.children('h3').each(function(i) { this.id = $(this).find('a').text().toLowerCase().replace(/[-:()\"]/g,'').replace(/[\s+\/]/g,'_'); $(this).before('<a class="accordion-link link" data-index="' + i + '" href="#' + this.id + '"></a>'); }); $this.find('.accordion-link').click(function() { $this.accordion( 'option', 'active', $(this).data('index') ); }); }, activate: function(e, ui) { // refresh zebra widget when rows are visible ui.newPanel.find('table').trigger('applyWidgets'); var $opt = ui.newPanel.find('table.options'); // options tables are hidden, so colgroup won't find any visible columns to get widths if ( $opt.length && $opt[0].config ) { $.tablesorter.fixColumnWidth( $opt ); } } }); openAccordion( hash, $this ); }); $t.find('table.options').not('.tablesorter-jui').tablesorter({ widthFixed: true, widgets: ['stickyHeaders'] }); $('.intlink').click(function() { openAccordion( $(this).attr('href') ); }); } }); function openAccordion( hash, $accordion ) { // hash is not a jQuery selector if ( /[=,]/.test(hash) ) { return false; } var t, id, $hash; if ( !$accordion ) { $accordion = $(hash).closest('.accordion'); } $hash = $accordion.find(hash); if ( $hash.length ) { if ( $hash.hasClass('ui-accordion-header') && !$hash.hasClass('ui-accordion-header-active') ) { $hash.click(); // open parent accordion of nested accordion } else if ( !$accordion.children(hash).length ) { // div should have an id of ui-accordion-#-panel-# id = $(hash).closest('.ui-accordion-content').attr('id').match(/\d+$/); if (id && id.length) { $accordion.accordion('option', 'active', Number(id[0]) - 1); } } // open table row of nested accordion if ( ($accordion.find(hash).closest('tr').attr('id') || '') !== '') { t = $accordion.find(hash).closest('tr'); t.find('.collapsible').show(); if (t.closest('table').hasClass('hasStickyHeaders')) { setTimeout(function() { window.scrollTo( 0, t.offset().top - t.parents('table')[0].config.widgetOptions.$sticky.outerHeight() ); }, 200); } } } } function showProperty() { var prop, $t, wo, stickyHt, h = window.location.hash; if (h && !/[=,]/.test(h)) { prop = $(h); if (prop.length && !/h3|a|table/i.test(prop[0].nodeName)) { prop.find('.collapsible').show(); if (h === '#csschildrow') { $('#root .tablesorter-childRow').show(); } // move below sticky header; added delay as there could be some lag setTimeout(function() { $t = prop.closest('table'); if ($t.length && $t[0].config) { wo = $t[0].config.widgetOptions; if ( wo.$sticky ) { stickyHt = wo.$sticky.outerHeight(); h = ( wo.$sticky ? wo.$sticky.height() : '' ) || $t.hasClass('hasStickHeaders') ? stickyHt : 0; if ($t.hasClass('options') || $t.hasClass('api')) { window.scrollTo( 0, prop.offset().top - h ); } } } }, 200); } } } // update stickyHeader when menu closes $('#main-nav-check').bind('change', function() { setTimeout(function() { $(window).scroll(); }, 350); // transition animation 300ms }); $(window).bind('load', function() { if ($('#root').length) { $(window).bind('hashchange', function() { showProperty(); }); showProperty(); } }); // append hidden parsed value to cell // used by feet-inch-fraction & metric parser demos window.addParsedValues = function($t, cols, format) { var r, val, $r = $t.find('tbody tr'), c = $t[0].config.cache[0].normalized; $r.each(function(i) { r = this; $.each(cols, function(v,j) { val = format ? format(c[i][j]) : c[i][j]; if (val !== '') { r.cells[j].innerHTML += ' <span class="val hidden removeme">(<span class="results">' + val + '</span>)</span>'; } }); }); $('.toggleparsedvalue').bind('click', function() { $('.val').toggleClass('hidden'); return false; }); }; })(jQuery);
Close