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 /
vicas-dev /
static /
cms /
js /
modules /
[ HOME SHELL ]
Name
Size
Permission
Action
shortcuts
[ DIR ]
drwxr-xr-x
cms.base.js
15.03
KB
-rw-r--r--
cms.changeform.js
1.34
KB
-rw-r--r--
cms.changetracker.js
4.36
KB
-rw-r--r--
cms.clipboard.js
7.44
KB
-rw-r--r--
cms.messages.js
4.1
KB
-rw-r--r--
cms.modal.js
42.13
KB
-rw-r--r--
cms.navigation.js
11.01
KB
-rw-r--r--
cms.pagetree.dropdown.js
3.49
KB
-rw-r--r--
cms.pagetree.js
38.41
KB
-rw-r--r--
cms.pagetree.stickyheader.js
4.85
KB
-rw-r--r--
cms.plugins.js
76.19
KB
-rw-r--r--
cms.sideframe.js
13.79
KB
-rw-r--r--
cms.structureboard.js
52.79
KB
-rw-r--r--
cms.toolbar.js
25.56
KB
-rw-r--r--
cms.tooltip.js
4.64
KB
-rw-r--r--
cms.wizards.js
1.61
KB
-rw-r--r--
dropdown.js
4.72
KB
-rw-r--r--
get-dist-path.js
1.16
KB
-rw-r--r--
jquery.noconflict.post.js
133
B
-rw-r--r--
jquery.noconflict.pre.js
159
B
-rw-r--r--
jquery.transition.js
2.12
KB
-rw-r--r--
jquery.trap.js
6.21
KB
-rw-r--r--
jquery.ui.custom.js
49.58
KB
-rw-r--r--
jquery.ui.nestedsortable.js
26.19
KB
-rw-r--r--
jquery.ui.touchpunch.js
1.26
KB
-rw-r--r--
keyboard.js
826
B
-rw-r--r--
loader.js
1.05
KB
-rw-r--r--
nextuntil.js
808
B
-rw-r--r--
preload-images.js
680
B
-rw-r--r--
scrollbar.js
402
B
-rw-r--r--
slug.js
1.11
KB
-rw-r--r--
tmpl.js
1.51
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.trap.js
/*! Copyright (c) 2011, 2012 Julien Wajsberg <felash@gmail.com> All rights reserved. Official repository: https://github.com/julienw/jquery-trap-input License is there: https://github.com/julienw/jquery-trap-input/blob/master/LICENSE This is version 1.2.0. */ (function( $, undefined ){ /* (this comment is after the first line of code so that uglifyjs removes it) Redistribution and use in source and binary forms, with or without modification, are permitted without condition. Although that's not an obligation, I would appreciate that you provide a link to the official repository. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED. */ /*jshint boss: true, bitwise: true, curly: true, expr: true, newcap: true, noarg: true, nonew: true, latedef: true, regexdash: true */ var DATA_ISTRAPPING_KEY = "trap.isTrapping"; function onkeypress(e) { if (e.keyCode === 9) { var goReverse = !!(e.shiftKey); if (processTab(this, e.target, goReverse)) { e.preventDefault(); e.stopPropagation(); } } } // will return true if we could process the tab event // otherwise, return false function processTab(container, elt, goReverse) { var $focussable = getFocusableElementsInContainer(container), curElt = elt, index, nextIndex, prevIndex, lastIndex; do { index = $focussable.index(curElt); nextIndex = index + 1; prevIndex = index - 1; lastIndex = $focussable.length - 1; switch(index) { case -1: return false; // that's strange, let the browser do its job case 0: prevIndex = lastIndex; break; case lastIndex: nextIndex = 0; break; } if (goReverse) { nextIndex = prevIndex; } curElt = $focussable.get(nextIndex); if (!curElt || curElt === elt) { return true; } try { curElt.focus(); } catch(e) { // IE sometimes throws when an element is not visible return true; } } while ($focussable.length > 1 && elt === elt.ownerDocument.activeElement); return true; } function filterKeepSpeciallyFocusable() { return this.tabIndex > 0; } function filterKeepNormalElements() { return !this.tabIndex; // true if no tabIndex or tabIndex == 0 } function sortFocusable(a, b) { return (a.t - b.t) || (a.i - b.i); } function getFocusableElementsInContainer(container) { var $container = $(container); var result = [], cnt = 0; fixIndexSelector.enable && fixIndexSelector.enable(); // leaving away command and details for now $container.find("a[href], link[href], [draggable=true], [contenteditable=true], :input:enabled, [tabindex=0]") .filter(":visible") .filter(filterKeepNormalElements) .each(function(i, val) { result.push({ v: val, // value t: 0, // tabIndex i: cnt++ // index for stable sort }); }); $container .find("[tabindex]") .filter(":visible") .filter(filterKeepSpeciallyFocusable) .each(function(i, val) { result.push({ v: val, // value t: val.tabIndex, // tabIndex i: cnt++ // index }); }); fixIndexSelector.disable && fixIndexSelector.disable(); result = $.map(result.sort(sortFocusable), // needs stable sort function(val) { return val.v; } ); return $(result); } function trap() { this.keydown(onkeypress); this.data(DATA_ISTRAPPING_KEY, true); return this; } function untrap() { this.unbind('keydown', onkeypress); this.removeData(DATA_ISTRAPPING_KEY); return this; } function isTrapping() { return !!this.data(DATA_ISTRAPPING_KEY); } $.fn.extend({ trap: trap, untrap: untrap, isTrapping: isTrapping }); // jQuery 1.6.x tabindex attr hooks management // this triggers problems for tabindex attribute // selectors in IE7- // see https://github.com/julienw/jquery-trap-input/issues/3 var fixIndexSelector = {}; if ($.find.find && $.find.attr !== $.attr) { // jQuery uses Sizzle (this is jQuery >= 1.3) // sizzle uses its own attribute handling (in jq 1.6.x and below) (function() { var tabindexKey = "tabindex"; var sizzleAttrHandle = $.expr.attrHandle; // this function comes directly from jQuery 1.7.2 (propHooks.tabIndex.get) // we have to put it here if we want to support jQuery < 1.6 which // doesn't have an attrHooks object to reference. function getTabindexAttr(elem) { // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ var attributeNode = elem.getAttributeNode(tabindexKey); return attributeNode && attributeNode.specified ? parseInt( attributeNode.value, 10 ) : undefined; } function fixSizzleAttrHook() { // in jQ <= 1.6.x, we add to Sizzle the attrHook from jQuery's attr method sizzleAttrHandle[tabindexKey] = sizzleAttrHandle.tabIndex = getTabindexAttr; } function unfixSizzleAttrHook() { delete sizzleAttrHandle[tabindexKey]; delete sizzleAttrHandle.tabIndex; } fixIndexSelector = { enable: fixSizzleAttrHook, disable: unfixSizzleAttrHook }; })(); } })( jQuery );
Close