!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

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

Safe-mode: OFF (not secure)

/var/www/html/gamesdaddy/cloudarcade/content/themes/default/   drwxr-xr-x
Free 13.05 GB of 57.97 GB (22.51%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     functions.php (2.19 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

function list_categories(){
    
$categories get_all_categories();
    echo 
'<ul class="links list-categories">';
    foreach (
$categories as $item) {
        echo 
'<a href="'get_permalink('category'$item->slug) .'"><li>'esc_string($item->name) .'</li></a>';
    }
    echo 
'</ul>';
}
function 
list_games($type$amount){
    echo 
'<div class="row">';
    
$data get_game_list($type$amount);
    
$games $data['results'];
    foreach ( 
$games as $game ) { ?>
    <div class="col-4 list-tile">
        <a href="<?php echo get_permalink('game'$game->slug?>">
            <div class="list-game">
                <div class="list-thumbnail"><img src="<?php echo get_small_thumb($game?>" class="small-thumb" alt="<?php echo esc_string($game->title?>"></div>
                <div class="list-content">
                    <div class="list-title"><?php echo esc_string($game->title); ?></div>
                </div>
            </div>
        </a>
    </div>
    <?php }
    echo 
'</div>';
}
function 
list_games_by_category($cat$amount){
    echo 
'<div class="row">';
    
$data get_game_list_category($cat$amount);
    
$games $data['results'];
    foreach ( 
$games as $game ) { ?>
        <?php include  TEMPLATE_PATH "/includes/grid.php" ?>
    <?php }
    echo 
'</div>';
}
function 
list_games_by_categories($cat$amount){
    echo 
'<div class="row">';
    
$data get_game_list_categories($cat$amount);
    
$games $data['results'];
    foreach ( 
$games as $game ) { ?>
        <?php include  TEMPLATE_PATH "/includes/grid.php" ?>
    <?php }
    echo 
'</div>';
}

function 
show_user_profile_header(){

    global 
$login_user;

    if(
$login_user){
    
?>
    <div class="user-avatar">
        <img src="<?php echo get_user_avatar() ?>">
    </div>
    <ul class="user-links hidden">
        <li>
            <strong>
                <?php echo $login_user->username ?>
            </strong>
            <div class="label-xp"><?php echo $login_user->xp ?>xp</div>
        </li>
        <hr>
        <a href="<?php echo get_permalink('user'$login_user->username?>">
            <li><?php _e('My Profile'?></li>
        </a>
        <a href="<?php echo get_permalink('user'$login_user->username?>&edit">
            <li><?php _e('Edit Profile'?></li>
        </a>
        <hr>
        <a href="<?php echo DOMAIN ?>admin.php?action=logout">
            <li class="text-danger"><?php _e('Log Out'?></li>
        </a>
    </ul>
    <?php
    
}
}

?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0048 ]--