!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/nginx/html/phpbb3/mobiquo/function/   drwxrwxr-x
Free 83.35 GB of 96.73 GB (86.17%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     get_quote_pm.php (1.78 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
*
* @copyright (c) 2009 Quoord Systems Limited
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/

defined('IN_MOBIQUO') or exit;

function 
get_quote_pm_func($xmlrpc_params)
{
    global 
$db$auth;
    
    
$params php_xmlrpc_decode($xmlrpc_params);
    
    
// get msg id from parameters
    
$msg_id intval($params[0]);
    
    if (!
$msg_id)
    {
        return 
get_error(1);
    }

    if (!
$auth->acl_get('u_sendpm'))
    {
        return 
get_error(2);
    }

    
$sql 'SELECT p.*, u.username as quote_username
            FROM ' 
PRIVMSGS_TABLE ' p, ' USERS_TABLE ' u
            WHERE p.author_id = u.user_id
            AND p.msg_id = '
.$msg_id;

    
$result $db->sql_query($sql);
    
$post $db->sql_fetchrow($result);
    
$db->sql_freeresult($result);
    
    
$msg_id = (int)$post['msg_id'];
    
    if (!
$post)
    {
        return 
get_error(20);
    }

    if ((!
$post['author_id'] || ($post['author_id'] == ANONYMOUS && $action != 'delete')) && $msg_id)
    {
        return 
get_error(25);
    }

    
$message_subject = ((!preg_match('/^Re:/'$post['message_subject'])) ? 'Re: ' '') . censor_text($post['message_subject']);
    
decode_message($post['message_text'], $post['bbcode_uid']);
    
$message '[quote=&quot;' $post['quote_username'] . '&quot;]' censor_text(trim($post['message_text'])) . "[/quote]\n";
    
    return new 
xmlrpcresp(
        new 
xmlrpcval(array(
                
'msg_id'        => new xmlrpcval($msg_id),
                
'msg_subject'   => new xmlrpcval(html_entity_decode(strip_tags($message_subject)), 'base64'),
                
'text_body'     => new xmlrpcval(html_entity_decode($message), 'base64'),
            ), 
'struct'
        
)
    );
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0026 ]--