Last active
January 2, 2017 13:16
-
-
Save yoshikaw/70ff2af74cfd1e6e325b3fae8f7086c9 to your computer and use it in GitHub Desktop.
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 xhr = new XMLHttpRequest(); | |
xhr.addEventListener('loadend', function(){ | |
if (xhr.status !== 200) return; | |
eval('(function(){' | |
+ xhr.response.replace(/exit;/g, 'return;') | |
+ '}())'); | |
}); | |
xhr.open('GET', 'https://raw.githubusercontent.com/inoue-katsumi/misc/master/docOraJE.js'); | |
xhr.send(); |
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 xhr = new XMLHttpRequest(); | |
xhr.addEventListener('loadend', function(){ | |
if (xhr.status === 200) eval(xhr.response); | |
}); | |
xhr.open('GET', 'https://raw.githubusercontent.com/inoue-katsumi/misc/master/docOraJE.js'); | |
xhr.send(); |
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 script = document.createElement('script'); | |
script.src = 'https://rawcdn.githack.com/inoue-katsumi/misc/master/docOraJE.js'; | |
document.getElementsByTagName('head')[0].appendChild(script) |
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 script = document.createElement('script'); | |
script.src = 'https://raw.githubusercontent.com/inoue-katsumi/misc/master/docOraJE.js'; | |
document.getElementsByTagName('head')[0].appendChild(script) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment