This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $secret = '83415d06-ec4e-11e6-a41b-6c40088ab51e'; | |
| $headers = array(); | |
| $headers[] = 'Content-Type: application/json'; | |
| $headers[] = 'X-AppVersion: 3.27.0'; | |
| $headers[] = "X-Uniqueid: ac94e5d0e7f3f".rand(111,999); | |
| $headers[] = 'X-Location: -6.405821,106.064193'; | |
| echo "\n"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name TTAV | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Educational Purpose (they said) | |
| // @author kangoka | |
| // @include https://fireliker.com/* | |
| // @include https://lputorrents.xyz/* | |
| // @match https://bugsliker.me/index.php?info=Session_Expired | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if (window.location.href.search("quizizz.com/join/game/") == -1 && window.location.href.search("gameType=") == -1) { | |
| if (window.location.href.search("quizizz.com/join/pre-game/") != -1) { | |
| alert("You cannot execute this while paused. If you are not paused please DM phanatagama_ on instagram") | |
| throw new Error("You cannot execute this while paused. If you think this is an error please DM phanatagama_ on instagram!"); | |
| } else if (window.location.href.search("quizizz.com/join/quiz/") != -1) { | |
| alert("You need to start the game before running this script. If you think this is an error please DM phanatagama_ on instagram") | |
| throw new Error("You need to start the game before running this script. If you think this is an error please DM phanatagama_ on instagram"); | |
| } else { | |
| alert("You aren't on a quizizz quiz. If you think this is an error please DM phanatagama_ on instagram") | |
| throw new Error("You aren't on a quizizz quiz. If you think this is an error please DM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var x = document.createElement("link"); | |
| x.rel = 'stylesheet'; | |
| x.type = 'text/css' | |
| x.href = "https://cdn.jsdelivr.net/gh/EastArctica/JS-Plugins@master/Un-Released/Kahoot/KahootModal.css" | |
| document.head.appendChild(x); | |
| var xhttp = new XMLHttpRequest() | |
| var URL = window.location.href | |
| var found = URL.search("https://quizizz.com/join/game/"); | |
| if (found == 0) { found = true } |
NewerOlder