Update Banyak

This commit is contained in:
WD - Dev
2025-09-21 21:40:17 +07:00
parent c6bee729c5
commit efca8f5f80
145 changed files with 195185 additions and 1378 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
if ($_GET['token'] !== 'YOUR_SECRET_TOKEN') {
http_response_code(403);
exit('Invalid token');
}
$rawData = file_get_contents('php://input');
if (empty($rawData)) {
http_response_code(400);
exit('No backup content received');
}
$filename = "backup_" . date("Ymd_His") . ".rsc";
file_put_contents(__DIR__ . "/" . $filename, $rawData);
echo "Backup received: $filename";
?>