GH just fixed it, but there's a snapshot from few hours ago: https://web.archive.org/web/20240608060046/https://github.co...
Content Injection Attack on GitHub
41–50 of 52 posts
Re: Content Injection Attack on GitHub
#42https://news.ycombinator.com/item?id=40614571
but that one of course stopped working too
working snapshot (mildly nsfw):
https://web.archive.org/web/20240607215223/https://github.co...
there's another one from 2 hours earlier but that misses the cool rotating cube.
Re: Content Injection Attack on GitHub
#43Earlier quoted context omitted.
XSS tends to be the first step in a chain of exploits. There are examples of using it for account takeovers, but XSS being the first step, usually means it doesn't get called out directly. The particular chain sequence gets a name, and that is what gets put out in media responses.
Yes, finding some PoC for account takeover or something that involves XSS is cool and whatnot, but I'm asking whether these theoretical chain of exploits have ever actually been documented as being exploited to a significant degree.
What most companies realize early on is that you can't guarantee you'll prevent an XSS from slipping through. But, having a good template engine that sanitizes all strings automatically is good enough preventative measure, and putting all user-submitted content on a different subdomain or domain (like usercontent[dot]company[dot]com) with browser same-origin policy and perhaps CORS rules, will be enough to keep the impact contained. From there, just about everything else can be categorized as user error.
Re: Content Injection Attack on GitHub
#44Explanation for this with a better link: https://news.ycombinator.com/item?id=40615804
Re: Content Injection Attack on GitHub
#45Shame that either GitHub doesn’t have a bug bounty, or their program isn’t good enough to entice people to use it
Re: Content Injection Attack on GitHub
#46Re: Content Injection Attack on GitHub
#47Earlier quoted context omitted.
XSS tends to be the first step in a chain of exploits. There are examples of using it for account takeovers, but XSS being the first step, usually means it doesn't get called out directly. The particular chain sequence gets a name, and that is what gets put out in media responses.
Yes, finding some PoC for account takeover or something that involves XSS is cool and whatnot, but I'm asking whether these theoretical chain of exploits have ever actually been documented as being exploited to a significant degree.
That is what happens if you are the WP admin and think that you don't need to update your plugins because "it's just XSS, nothing major".
Re: Content Injection Attack on GitHub
#48GH just fixed it, but there's a snapshot from few hours ago: https://web.archive.org/web/20240608060046/https://github.co...
Re: Content Injection Attack on GitHub
#49Shame that either GitHub doesn’t have a bug bounty, or their program isn’t good enough to entice people to use it
$600 for a low seems pretty good to me.
Re: Content Injection Attack on GitHub
#50Earlier quoted context omitted.
Yes, finding some PoC for account takeover or something that involves XSS is cool and whatnot, but I'm asking whether these theoretical chain of exploits have ever actually been documented as being exploited to a significant degree.
You have to look a little further back into mid-2000s to see larger impact XSS attacks, but each FAANG has had to recover from them. I'm on mobile right now but I'll look for some examples later. What most companies realize early on is that you can't guarantee you'll prevent an XSS from slipping through. But, having a good template engine that sanitizes all strings automatically is good enough preventative measure, a…