Skip to content

Instantly share code, notes, and snippets.

View greenreader9's full-sized avatar
🔎
Searching for cool projects

Greenreader9 greenreader9

🔎
Searching for cool projects
View GitHub Profile
@Logicbloke
Logicbloke / kahoot.php
Created May 31, 2020 02:30
Cheat: Revealing all questions and answers of a Kahoot quiz.
<?php
error_reporting(null);
if(!isset($_GET["pin"]))
die("No PIN?");
$url = "https://kahoot.it/rest/challenges/pin/".$_GET["pin"];
$response = file_get_contents($url);
$jresponse = json_decode($response, TRUE);