Skip to content

Instantly share code, notes, and snippets.

View kylegg's full-sized avatar
🤗

kyle:) kylegg

🤗
View GitHub Profile
@kylegg
kylegg / pspoc.php
Created June 1, 2024 05:04
The backend logic behind free Roblox private servers. Access codes are signed and then returned all right here. https://www.roblox.com/games/16875821750/Any-Game-Reserved-Server-POC
<?php
//
// kylegg 2024
//
// Response is always text/plain for our API.
header('Content-Type: text/plain');
// Generic function I wrote for validating url parameters in like 30 seconds, its not pretty but it works.
function getQueryParameter(string $name, Closure $cl): mixed