Skip to content

Instantly share code, notes, and snippets.

View dbedoyat's full-sized avatar
🌍
Hello!

David Bedoya dbedoyat

🌍
Hello!
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);