From 29ea51ae7742bfa2589b99e5df55b47e034762d8 Mon Sep 17 00:00:00 2001 From: SEGA CORPORATION <> Date: Tue, 12 Jul 2022 22:15:01 -0400 Subject: [PATCH] add downloadorder php --- tools/Download/DownloadOrder_V1.php | 55 +++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100755 tools/Download/DownloadOrder_V1.php diff --git a/tools/Download/DownloadOrder_V1.php b/tools/Download/DownloadOrder_V1.php new file mode 100755 index 0000000..a84cba0 --- /dev/null +++ b/tools/Download/DownloadOrder_V1.php @@ -0,0 +1,55 @@ + array( + + 'header' => "Pragma: DFI", + + 'method' => 'POST', + + 'content' => $compressed + + ) + + ); + + $context = stream_context_create($options); + + $result = file_get_contents('http://naominet.jp/sys/servlet/DownloadOrder', false, $context); + + if ($result === FALSE) { exit("error dl\n"); /* Handle error */ } + + //print($result); + + $response = gzuncompress(base64_decode($result)); + + print($response); + +} + +?> + +SEGA DOWNLOADORDER + +
+ +GAME ID: + +GAME VERSION: + +
+ +
\ No newline at end of file