16 comments

  • vldszn2 hours ago
    GitHub: "We are investigating unauthorized access to GitHub’s internal repositories. While we currently have no evidence of impact to customer information stored outside of GitHub’s internal repositories (such as our customers’ enterprises, organizations, and repositories), we are closely monitoring our infrastructure for follow-on activity."
    • TZubiri1 hour ago
      It reminds me of the famous &quot;mistakes were made&quot; Nixon quote.<p>&quot;We are investigating unauthorized access&quot; sounds much better than &quot;we&#x27;ve been hacked&quot;
  • keyle1 hour ago
    This is bad. If they came out announcing this, without a long winded explanation and further details, it&#x27;s because they&#x27;re staring at a bottomless pit and they haven&#x27;t put the lid on it yet.<p>For a Fortune 100, to go out of your way to spook investors is the least desirable approach.
    • eli1 hour ago
      Letting people know promptly is also the right thing to do and probably mandated by (at least some) customer contracts. You can&#x27;t tell just some people; it would leak anyway.
  • tiffanyh1 hour ago
    Is Twitter&#x2F;X the right channel to announce a <i>security</i> event like this?<p>I ask because I don’t see anything posted on their official blog or status page.<p><a href="https:&#x2F;&#x2F;github.blog&#x2F;" rel="nofollow">https:&#x2F;&#x2F;github.blog&#x2F;</a><p><a href="https:&#x2F;&#x2F;www.githubstatus.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.githubstatus.com&#x2F;</a>
    • cebert1 hour ago
      It’s a very popular messaging platform for tech enthusiasts.
      • yallpendantools48 minutes ago
        So? Is this where your corporate paying clients <i>should</i> find out about an issue of this severity?<p>Not to mention Twitter is not an open platform anymore! (A) I&#x27;m an employee in an organization paying for Github. (B) I don&#x27;t have a Twitter account. I already have a Github account because of (A). Why should (B) stop&#x2F;delay me from getting official comms about this?
        • insanitybit29 minutes ago
          Isn&#x27;t it the first stop for the USG at this point? I mean, I wish the world were a different place but here we are.
  • buryat27 minutes ago
    Sympathy to engineers and everyone at github, it&#x27;s good that they&#x27;re being open even if findings are limited. I&#x27;m sure they will figure out the root cause and will publish results to be a learning experience for everyone else
  • uzyn2 hours ago
    The security issue aside, seeing more companies push announcements like these on X as the only official source is a trend I&#x27;m not sure I like.<p>I can understand the rationale, this feels lighter and not something that belongs on status.github.com or the blog. Maybe what&#x27;s actually missing is an official channel for ephemeral stuff on a domain they own, somewhere between a status page and a tweet? Just sharing an observation.
  • dijksterhuis2 hours ago
    non-twitter link: <a href="https:&#x2F;&#x2F;xcancel.com&#x2F;github&#x2F;status&#x2F;2056884788179726685#m" rel="nofollow">https:&#x2F;&#x2F;xcancel.com&#x2F;github&#x2F;status&#x2F;2056884788179726685#m</a>
  • vldszn2 hours ago
    - Use Static analysis for GHA to catch security issues: <a href="https:&#x2F;&#x2F;github.com&#x2F;zizmorcore&#x2F;zizmor" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;zizmorcore&#x2F;zizmor</a><p>- set locally: pnpm config set minimum-release-age 4320 # 3 days in minutes <a href="https:&#x2F;&#x2F;pnpm.io&#x2F;supply-chain-security" rel="nofollow">https:&#x2F;&#x2F;pnpm.io&#x2F;supply-chain-security</a> for other package managers check: <a href="https:&#x2F;&#x2F;gist.github.com&#x2F;mcollina&#x2F;b294a6c39ee700d24073c0e5a4e93104" rel="nofollow">https:&#x2F;&#x2F;gist.github.com&#x2F;mcollina&#x2F;b294a6c39ee700d24073c0e5a4e...</a><p>- add Socket Free Firewall when installing npm packages on CI <a href="https:&#x2F;&#x2F;docs.socket.dev&#x2F;docs&#x2F;socket-firewall-free#github-actions" rel="nofollow">https:&#x2F;&#x2F;docs.socket.dev&#x2F;docs&#x2F;socket-firewall-free#github-act...</a>
    • keyle1 hour ago
      The only way to &#x27;harden your github actions&#x27; is to not use github actions.
      • vldszn1 hour ago
        Makes sense tbh :)
    • robbiet48056 minutes ago
      Thanks for making me aware of zizmor, just ran and fixed all issues on our core repos.
      • vldszn45 minutes ago
        You are welcome! Recently discovered it and found it genuinely useful. Fixed a bunch of issues in my workflows too :)
    • benoau2 hours ago
      You also need to make sure you take care using PR titles and descriptions in your GHA because if they contain `text` it *may be executed lmfao.<p>edited: not &quot;will&quot;, may depending on your GHA
      • CGamesPlay2 hours ago
        Can you cite this? It&#x27;s not YAML execution syntax, surely Github doesn&#x27;t do it, the only vector I can see is if you put it unquoted into a shell script inside of a GHA yaml.
        • benoau43 minutes ago
          <a href="https:&#x2F;&#x2F;github.com&#x2F;orgs&#x2F;community&#x2F;discussions&#x2F;27065" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;orgs&#x2F;community&#x2F;discussions&#x2F;27065</a><p><a href="https:&#x2F;&#x2F;stackoverflow.com&#x2F;questions&#x2F;77090044&#x2F;github-actions-adding-to-issue-title-breaking-with-backticks" rel="nofollow">https:&#x2F;&#x2F;stackoverflow.com&#x2F;questions&#x2F;77090044&#x2F;github-actions-...</a><p><a href="https:&#x2F;&#x2F;www.praetorian.com&#x2F;blog&#x2F;pwn-request-hacking-microsoft-github-repositories-and-more&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.praetorian.com&#x2F;blog&#x2F;pwn-request-hacking-microsof...</a><p>All you need is user content containing `backticked`, and a github action referencing that via eg &quot;github.event.issue.title&quot; where the shell would normally execute `backticked` as a command (like echo, cat, etc).
        • theteapot1 hour ago
          I think he means template-injection -- <a href="https:&#x2F;&#x2F;woodruffw.github.io&#x2F;zizmor&#x2F;audits&#x2F;#template-injection" rel="nofollow">https:&#x2F;&#x2F;woodruffw.github.io&#x2F;zizmor&#x2F;audits&#x2F;#template-injectio...</a>
          • benoau30 minutes ago
            Yes that&#x27;s it.
      • vldszn2 hours ago
        Maybe zizmor could catch this <a href="https:&#x2F;&#x2F;github.com&#x2F;zizmorcore&#x2F;zizmor" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;zizmorcore&#x2F;zizmor</a> but not sure 100%
        • insanitybit39 minutes ago
          Yeah, zizmor checks for template injection.
  • MallocVoidstar1 hour ago
    <a href="https:&#x2F;&#x2F;pbs.twimg.com&#x2F;media&#x2F;HItbXhvW4AAMD8W?format=jpg&amp;name=orig" rel="nofollow">https:&#x2F;&#x2F;pbs.twimg.com&#x2F;media&#x2F;HItbXhvW4AAMD8W?format=jpg&amp;name=...</a><p>All of their repos have been copied and are up for sale. Attackers are TeamPCP, the creators of the Shai-Hulud malware.
    • mpetrovich40 minutes ago
      If that’s true and they do intend on shredding their copy on sale, what stops GitHub from buying it back themselves? (through a proxy, obv)
      • ferguess_k18 minutes ago
        I probably wouldn&#x27;t believe that &quot;shredding&quot;. Also there will be legal consequences I think?
  • killingtime741 hour ago
    Time to switch to Gitlab, Bitbucket or self-hosted
  • surrTurr51 minutes ago
    &quot;Someone broke into our house and we have no clue if they&#x27;re still hiding under the bed or in the drawer. TV is gone.&quot;
  • waynesonfire2 hours ago
    Are they required to announce that they&#x27;re being hacked in real time?
    • tonetegeatinst1 hour ago
      Microsoft owned so many a CYA to explain why the liability insurance goes up to investors?
  • mstank2 hours ago
    Is it just me or is this happening way more frequently in the last 4 or 5 months? Coincidently around the same time the models got a lot more capable?
    • insanitybit35 minutes ago
      I think AI has helped to a degree. I think a <i>lot</i> of people have known about massive gaps in security, but it&#x27;s been a sort of &quot;why would I?&quot; and a gap that didn&#x27;t feel worth hopping for attackers.<p>The gap is smaller now.<p>I&#x27;ve been talking about package worms for... fuck, a decade. Insane. I&#x27;ve even thought about publishing one to prove a point but, well, it&#x27;s illegal obviously. And ethically questionable.<p>Someone just vibecoded up what we&#x27;ve all known was possible for a long, long time. Just like a lot of other vibe coded projects.<p>I remember talking to a malware author a long time ago and I think this would have been exactly what he would have loved. He liked building custom C2 protocols, tiny malware, etc, but when we discussed a particular idea for owning massive amounts of infrastructure his response was basically &quot;that&#x27;s a lot of effort to get a krebs article and FBI attention&quot;. Now it&#x27;s not so much effort!
    • tom_2 hours ago
      It&#x27;s more likely that it isn&#x27;t coincidental at all: software development-oriented LLMs became a lot better towards the end of 2025, and so there&#x27;s a non-zero chance that people are using them to find new security exploits.<p>(People are not sleeping on this and it is not something people have failed to notice. I don&#x27;t use LLMs at all and even <i>I</i> have noticed it - largely because there is approximately nobody that isn&#x27;t talking about it.)
      • tptacek1 hour ago
        There is a 100% chance that people are using LLMs to find vulnerabilities and build exploits. If it was possible for something to be a 101% chance, that&#x27;s what it would be.
        • tom_27 minutes ago
          Apologies to all - I am British. The phrase &quot;non-zero&quot; does cover every case other than zero, but the intent is that it covers some cases more than others. What I&#x27;m trying to say is: yes. My intent was just to push back on this specific (and slightly bizarre to me) instance of kind-of-vagueposting, to my eyes written to imply that it might be some sort of unnoticed conspiracy, detectable only by the most enlightened of observers, attuned to the subtle signals that most people miss: that people are using LLMs to find security exploits.
      • OptionOfT57 minutes ago
        I think the other side is much more important. With company mandates to use AI as much as possible, there has been a deluge of low-quality PRs. Everybody is feeling tired from reviewing those, and quite possibly numerous security issues have been introduced since.
        • tom_19 minutes ago
          Ahh, that&#x27;s a good point, and I actually hadn&#x27;t thought of that angle! I was thinking of it purely from the point of view of the attackers using LLMs to generate interesting new exploits, with a side helping of letting myself get mildly annoyed, possibly incorrectly, by the writing style.<p>But yes, it&#x27;s also possible the defenders have been kind of forced into having the slop machine shit out a huge pile of shit-ass changes, one way or another, that end up making the attackers&#x27; job even easier. (Even assuming no mechanisation at their end! Which is of course in nearly-June of 2026, probably unrealistic. And LLMs do appear to be really quite good at that side of the equation...)
        • skydhash34 minutes ago
          The most dangerous is where the new feature works well and is using safe APIs, but integration is quietly broken somewhere. The risk of incoherent state is way higher because you no longer have a small set of people that knows the complete theory of the software and can find discrepancies.
    • guluarte52 minutes ago
      I heard an engineer at Anthropic was submitting 150 PRs per day. That&#x27;s one PR every 5 to 10 minutes, so you can guess the level of review and quality control involved.
    • darig1 hour ago
      [dead]
    • bob10292 hours ago
      I think it&#x27;s more about the popularity than the capability. The chances you might accidentally put a Github access token into an undesired security context goes up dramatically when you actually create and use one on a regular basis. The developers at GH are certainly using these tools just like the rest of us.
  • jonnyasmar2 hours ago
    [flagged]
  • syngrog662 hours ago
    between all the Linux LPEs and Claude&#x27;s known security flaws, alone, I&#x27;d be shocked if Github and Microsoft hadnt gotten hacked by now. reasonable bet we mainly hear it when big shops get bit
    • TZubiri1 hour ago
      Before 2026 I hosted client code on GitHub, now it feels suboptimal, code is both an intellectual property asset and security risk. Especially if the company is software based, self-hosting your code just has a much better risk profile for almost no cost.<p>It&#x27;s also one of those things that warms your team up and gets them ready for actual work, a team that has to self host their git and other infra, like self-hosting DNS servers with bind, will have a much better work ethic than engineers who click buttons on a SaaS and conflate their role as users of a system instead of admins of one.<p>Additionally, using github actions, and relying on Pull Requests (Tm) (R) (C) has always been (useful) vendor lock in (and a security risk in case of GH Actions). It wasn&#x27;t enough to lock down a choice, but it tilts the balance in favour of less dependencies, which with the increase of CVEs and supply chain vulns, seems to be the name of the game for this new era. Build it in house, ignore the dogma.
  • kiernanmcgowan2 hours ago
    Mythos has broken containment