Compare commits
2 commits
c519f5d380
...
2834bf98a8
Author | SHA1 | Date | |
---|---|---|---|
![]() |
2834bf98a8 | ||
![]() |
29ea51ae77 |
2 changed files with 58 additions and 1 deletions
|
@ -1,3 +1,5 @@
|
||||||
# SEGA dumptools
|
# SEGA dumptools
|
||||||
|
|
||||||
source: emuline.org and 1cc
|
source: emuline.org and 1cc (websites and discord)
|
||||||
|
|
||||||
|
Additions and documentation appreciated.
|
||||||
|
|
55
tools/Download/DownloadOrder_V1.php
Executable file
55
tools/Download/DownloadOrder_V1.php
Executable file
|
@ -0,0 +1,55 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
error_reporting(1);
|
||||||
|
|
||||||
|
if ($_POST["ID"])
|
||||||
|
|
||||||
|
{
|
||||||
|
|
||||||
|
$compressed = base64_encode(gzdeflate("game_id=".$_POST["ID"]."&ver=".$_POST["VERSION"]."&serial=A63E01B1628", -1, ZLIB_ENCODING_DEFLATE));
|
||||||
|
|
||||||
|
//print($compressed);
|
||||||
|
|
||||||
|
// use key 'http' even if you send the request to https://...
|
||||||
|
|
||||||
|
$options = array(
|
||||||
|
|
||||||
|
'http' => 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);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
|
|
||||||
|
<title>SEGA DOWNLOADORDER</title>
|
||||||
|
|
||||||
|
<b><form action="/index.php" method="post">
|
||||||
|
|
||||||
|
GAME ID:<input type="text" name="ID">
|
||||||
|
|
||||||
|
GAME VERSION:<input type="text" name="VERSION">
|
||||||
|
|
||||||
|
<input type="SUBMIT" value="SUBMIT"><br>
|
||||||
|
|
||||||
|
</form></b>
|
Loading…
Add table
Add a link
Reference in a new issue