<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: dunder_cat</title><link>https://news.ycombinator.com/user?id=dunder_cat</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 17 Aug 2026 08:59:19 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=dunder_cat" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by dunder_cat in "Loupe – A iOS app that raises awareness about what native apps can see"]]></title><description><![CDATA[
<p>I'm in that camp of has a dating app installed but have no partner so the is-my-partner-cheating admittedly doesn't resonate with me. I've had to do some of this fingerprinting myself before for non-data-selling reasons so a lot of the system-level statistics didn't quite impress me [1], but that one was a gut-punch when I saw it pop up. It makes me wonder what apps out there have leveraged that as a signal for ads or other behavior modifications to exploit my search for a partner -- without at least having to spend a few pennies querying a data broker!<p>It makes sense that there's some discovery mechanism - since Google loves to use it to prefer Chrome, GMail, etc when you're in one of their apps. I wish that there were more restrictions though where you only get implicit permission to query from apps that have the same developer ID. Maybe a mutual allowlist that has to be formed, or some sort of privileged intent where you at least have to tell Apple what's going on and that gives them some contractual right to sanction you if you're using it for nefarious purposes instead.<p>[1] excluding the clipboard copy count, that was novel!</p>
]]></description><pubDate>Sun, 21 Jun 2026 19:20:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=48621759</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=48621759</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48621759</guid></item><item><title><![CDATA[New comment by dunder_cat in "Hey, n00b, we didn't hire you to complete tasks"]]></title><description><![CDATA[
<p>I like to always tell interns/new hires that I measure their productivity in the amount of questions they're asking (whether its to me, seeing them roam into people's cubes or in company chat systems). AI has changed that calculus a bit since they can use the magic talking box to query the codebase with varying degrees of accuracy or as a search engine for someone's random internal wiki article/ticket from years ago.<p>Nevertheless though, we're blessed with a codebase that is several orders of magnitude larger than what the human brain can fully internalize so if you're trying to do anything remotely interesting, you're going to have questions.</p>
]]></description><pubDate>Sat, 20 Jun 2026 16:10:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=48610332</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=48610332</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48610332</guid></item><item><title><![CDATA[New comment by dunder_cat in "GitLab announces workforce reduction and end of their CREDIT values"]]></title><description><![CDATA[
<p>After CVE-2023-7028 (account takeover via password reset, IIRC you just had to add a semi-colon between the correct email and the attacker email and it'd email both) was exploited against my cluster, the boasting about fully-automated changes and reviews scares me. I hope I'm far from the only one that hasn't forgotten issues like this.<p>I'm aware that the defective code was not written by AI but nonetheless, GitLab is what stands between many small organizations and their most precious resources. I was fortunate that 2FA stopped the damage, but what's going to happen the next time? What if my organization is permanently damaged because we taught the machines to go fast and break things, too [1]?<p>[1] VPN is an option but we're a non-profit with a number of non-technical users, so admittedly we're caught in a balance between making it harder to do things. As much as WireGuard is awesome, there's still a barrier.</p>
]]></description><pubDate>Tue, 12 May 2026 00:12:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=48102489</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=48102489</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48102489</guid></item><item><title><![CDATA[New comment by dunder_cat in ""Dirty Frag" (CVE-2026-43284): The Second Linux Root Exploit in Eight Days"]]></title><description><![CDATA[
<p>Also, meant to share some interesting readings. In the Kubernetes world, my RSS feed lit up with their blog post about user namespaces being generally available in k8s 1.36.<p>They actually provided some example CVEs that wouldn't have been possible if in addition to containers, they were also using user namespaces <a href="https://github.com/kubernetes/enhancements/tree/217d790720c5aef09b8bd4d6ca96284a0affe6c2/keps/sig-node/127-user-namespaces#motivation" rel="nofollow">https://github.com/kubernetes/enhancements/tree/217d790720c5...</a>. The first example talks about "CVE-2019-5736: Host runc binary can be overwritten from container. Completely mitigated with userns." So it seems like getting root in a regular container gives you more of an attack surface, but if user namespaces are deployed, then it's even harder to do anything useful with it. I am looking forward to the aforementioned writeups since user namespace escapes usually mean another kernel bug.</p>
]]></description><pubDate>Sat, 09 May 2026 20:50:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=48078129</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=48078129</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48078129</guid></item><item><title><![CDATA[New comment by dunder_cat in ""Dirty Frag" (CVE-2026-43284): The Second Linux Root Exploit in Eight Days"]]></title><description><![CDATA[
<p>Your understanding is fine. In many environments, you can still do a lot of damage just by popping a shell and being able to access the database/sensitive environment variables/sensitive code. Getting to root would just be the icing on the cake.<p>That being said, it's pretty common for non-containerized processes to drop permissions to a low-privileged service account (like nginx running as `nobody`), so it definitely thwarts defense-in-depth in those setups.<p>In containerized environments, my understanding is their use of namespaces means you still need something more clever than just "patch out the authentication logic in su via the page cache" to escalate permissions in the system to break out of the container. That doesn't mean it's impossible in these exploits (the original copyfail writeup alluded to a second writeup coming to this effect - distinct from dirtyfrag though), but it does mean you're not going to be able to just spam the PoCs floating around.</p>
]]></description><pubDate>Sat, 09 May 2026 20:45:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=48078079</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=48078079</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48078079</guid></item><item><title><![CDATA[New comment by dunder_cat in "Google Cloud fraud defense, the next evolution of reCAPTCHA"]]></title><description><![CDATA[
<p>Doesn't have to even be that advanced, people get conditioned to stuff like reCAPTCHA and friends & Cloudflare's interstitial landing page (when "I'm under attack" mode is on) and they won't bat an eye. That's how we get people piping `curl | bash` into their terminal to "solve" fake challenges.<p>As a side note though, I recently have tried to turn CSP on a website I run and the amount of garbage I see in the reports is astonishing. There's some noise from things like OpenDNS intercepting YouTube or Social embeds for people using the work-friendly or family-friendly options, but the sheer amount of things attempting to phone home to random URLs and random extension scripts injecting ads into the site would astonish you. My mental model of "toolbar hell" from the Windows XP days being gone has completely shattered.</p>
]]></description><pubDate>Thu, 07 May 2026 01:37:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=48044373</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=48044373</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48044373</guid></item><item><title><![CDATA[New comment by dunder_cat in "Google Cloud fraud defense, the next evolution of reCAPTCHA"]]></title><description><![CDATA[
<p>Is the QR code check mandatory and if not, is it the default?<p>The bulletpoint as-is just says:<p>> AI-resistant challenge: As we identify potentially fraudulent behavior from agents, we enable application providers to deter and mitigate malicious requests by requesting humans to be in the loop using the new QR code-based challenge. This AI-resistant mitigation challenge to prove human presence is designed to make automated fraud economically unviable.<p>Followed by<p>> Existing reCAPTCHA customers are automatically Fraud Defense customers, with no migration required, no action needed, and no change to pricing. Your existing site keys and integrations remain exactly as they are today.<p>It is probably me being a literal reader but "we enable application providers to deter and mitigate malicious requests by requesting humans to be in the loop" feels like it can be read as "Good news: by using reCAPTCHA, we're now interfering with agents that can solve the regular challenges" or "there's now a flag the application developer can set". This is the difference between me swapping off reCAPTCHA ASAP or just editing my configuration. I have to imagine someone somewhere anticipated the kind of reactions a number of us are collectively feeling (I too don't want to use my phone to browse the web more than I already do) and it feels irresponsible to publish a feature announcement without covering basic information like this for site administrators. Maybe they thought the second line about existing reCAPTCHA customers being moved over clears this up, but "Your existing ... integrations remain exactly as they are today" feels like again, literally, you won't have this new attestation requirement being presented to your users... but then why am I Fraud Defense customer!</p>
]]></description><pubDate>Thu, 07 May 2026 01:22:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=48044286</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=48044286</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48044286</guid></item><item><title><![CDATA[New comment by dunder_cat in "An AI agent deleted our production database. The agent's confession is below"]]></title><description><![CDATA[
<p>A more direct source (possibly the original source?) I know of is a YouTube video entitled "LISA11 - Fork Yeah! The Rise and Development of illumos" which detailed how the Solaris operating system got freed from Oracle after the Sun acquisition.<p>The whole hour talk is worth a watch, even when passively doing other stuff. It is a neat history of Solaris and its toolchain mixed with the inter-organizational politics.<p>YouTube link: <a href="https://www.youtube.com/watch?v=-zRN7XLCRhc" rel="nofollow">https://www.youtube.com/watch?v=-zRN7XLCRhc</a><p>Direct link to lawnmower quotes (~38.5 minute mark): <a href="https://youtu.be/-zRN7XLCRhc&t=2307" rel="nofollow">https://youtu.be/-zRN7XLCRhc&t=2307</a></p>
]]></description><pubDate>Sun, 26 Apr 2026 23:21:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=47915905</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=47915905</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47915905</guid></item><item><title><![CDATA[New comment by dunder_cat in "YouTube users get option to set their Shorts time limit to zero minutes"]]></title><description><![CDATA[
<p>Instagram needs to do this for Reels, too. I got quite addicted to these short-form videos during the pandemic and after I finished college things went immediately downhill once a lot of my mental activity could be somewhat "deferred". I could make up for the productivity hit by crunching but my life would be better without them. I remove things from my phone or put services into Pi-Hole but eventually I capitulate. Something about having the option to remove the most addicting parts of a service but not cutting yourself off completely has more success.<p>Edit: also to be somewhat objective, Instagram also offers a time limit. However, I've found that just by exiting the app (or it getting killed in the background), it basically clears the lockout so you don't even have to make the effort to click the "ignore" button.</p>
]]></description><pubDate>Thu, 16 Apr 2026 01:14:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=47787522</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=47787522</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47787522</guid></item><item><title><![CDATA[New comment by dunder_cat in "I ported Mac OS X to the Nintendo Wii"]]></title><description><![CDATA[
<p>Chiming in as well to say to the author when the victory lap here is over: please consider adding the RSS feed! I want to see whatever you do next, regardless of how long it takes.</p>
]]></description><pubDate>Thu, 09 Apr 2026 00:47:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=47698013</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=47698013</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47698013</guid></item><item><title><![CDATA[New comment by dunder_cat in "Further human + AI + proof assistant work on Knuth's "Claude Cycles" problem"]]></title><description><![CDATA[
<p>> Edit: This is going to have huge ramifications for the tech security industry as these systems will be able to break security systems as easily it solved the proof. The sooner the good guys, if there are any left, understand this the better it will be for everybody.<p>What can the good guys do? Fire up Claude to improve their systems? Unless you have it working fully autonomously to counter-act abuse, I don't see how you can beat the "bad guys". There may be some industries where this is a solved problem (e.g. you can do all the validation server-sided, religiously follow best practices to prevent and mitigate abuse), but a lot of stuff like multiplayer video games will be doomed unless they move to a "you must use a locked down system we control" model. I honestly don't consider it liberating as someone that has various hobby projects, that now in addition to plain old DDoS I'll also have people spin up layer 7 attacks with just their credit card. It almost makes me want to give up instead of pushing forward in a world where the worst of the worst has access to the best of the best.</p>
]]></description><pubDate>Sat, 28 Mar 2026 21:13:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=47558158</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=47558158</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47558158</guid></item><item><title><![CDATA[New comment by dunder_cat in "How we rebuilt Next.js with AI in one week"]]></title><description><![CDATA[
<p>I am curious, have you attempted to do this to any binary packed with commercial obfuscation/"virtualization" schemes (e.g. Orean's Themida/Code Virtualizer and VMProtect)?</p>
]]></description><pubDate>Wed, 25 Feb 2026 03:01:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=47146752</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=47146752</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47146752</guid></item><item><title><![CDATA[New comment by dunder_cat in "Discord cuts ties with identity verification software, Persona"]]></title><description><![CDATA[
<p>Seems to be down for me. <a href="https://web.archive.org/web/20260220192124/https://vmfunc.re/blog/persona/" rel="nofollow">https://web.archive.org/web/20260220192124/https://vmfunc.re...</a></p>
]]></description><pubDate>Tue, 24 Feb 2026 14:54:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=47137902</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=47137902</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47137902</guid></item><item><title><![CDATA[New comment by dunder_cat in "Wikipedia deprecates Archive.today, starts removing archive links"]]></title><description><![CDATA[
<p>Ah good to know. My pi-hole actually was blocking the blog itself since the ublock site list made its way into one of the blocklists I use. But I've been just avoiding links as much as possible because I didn't want to contribute.</p>
]]></description><pubDate>Fri, 20 Feb 2026 20:46:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=47093717</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=47093717</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47093717</guid></item><item><title><![CDATA[New comment by dunder_cat in "Wikipedia deprecates Archive.today, starts removing archive links"]]></title><description><![CDATA[
<p><a href="https://news.ycombinator.com/item?id=46624740">https://news.ycombinator.com/item?id=46624740</a> has the earliest writeup that I know of. It was running it via a script and intentionally using cache busting techniques to try to increase load on the hosted wordpress infrastructure.</p>
]]></description><pubDate>Fri, 20 Feb 2026 20:36:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=47093568</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=47093568</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47093568</guid></item><item><title><![CDATA[New comment by dunder_cat in "Windows: Prefer the Native API over Win32"]]></title><description><![CDATA[
<p>One thing that is amusing about the prevalence of advanced anti-cheat in Windows gaming is it's actually causing said API/ABIs to undergo ossification. A good data point is the invention of Syscall User Dispatch^1 on Linux which would allow a program to basically install a syscall handler when they originate from various regions of memory. I do not know how usable this is in practice, admittedly -- but I think the fact it was contributed at all speaks to the growing need.<p>^1 <a href="https://docs.kernel.org/admin-guide/syscall-user-dispatch.html" rel="nofollow">https://docs.kernel.org/admin-guide/syscall-user-dispatch.ht...</a></p>
]]></description><pubDate>Wed, 18 Feb 2026 17:31:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=47063632</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=47063632</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47063632</guid></item><item><title><![CDATA[New comment by dunder_cat in "News publishers limit Internet Archive access due to AI scraping concerns"]]></title><description><![CDATA[
<p>This exists although not in the traditional BOINC space, it's Archiveteam^1. I run two of their warrior^2 instances in my home k3s instance via the docker images. One of them is set to the "Team's choice" where it spends most of its time downloading Telegram chats. However, when they need the firepower for sites with imminent risk of closure, it will switch itself to those. The other one is set to their URL shortener project, "Terror of Tiny Town"^3.<p>Their big requirement is you need to not be doing any DNS filtering or blocking of access to what it wants, so I've got the pod DNS pointed to the unfiltered quad9 endpoint and rules in my router to allow the machine it's running on to bypass my PiHole enforcement+outside DNS blocks.<p>^1 <a href="https://wiki.archiveteam.org/" rel="nofollow">https://wiki.archiveteam.org/</a><p>^2 <a href="https://wiki.archiveteam.org/index.php/ArchiveTeam_Warrior" rel="nofollow">https://wiki.archiveteam.org/index.php/ArchiveTeam_Warrior</a><p>^3 <a href="https://wiki.archiveteam.org/index.php/URLTeam" rel="nofollow">https://wiki.archiveteam.org/index.php/URLTeam</a></p>
]]></description><pubDate>Sat, 14 Feb 2026 19:09:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=47017320</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=47017320</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47017320</guid></item><item><title><![CDATA[Windows Notepad App Remote Code Execution Vulnerability]]></title><description><![CDATA[
<p>Article URL: <a href="https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-20841">https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-20841</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46968445">https://news.ycombinator.com/item?id=46968445</a></p>
<p>Points: 23</p>
<p># Comments: 4</p>
]]></description><pubDate>Tue, 10 Feb 2026 23:18:31 +0000</pubDate><link>https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-20841</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=46968445</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46968445</guid></item><item><title><![CDATA[New comment by dunder_cat in "The switch to Linux and the beginning of my self-hosting journey"]]></title><description><![CDATA[
<p>There's nothing new or original in a lot of things that get posted here. Reading about someone starting a journey provides an interesting catalyst for discussion. What they did right, what they did wrong, other things to try, or even just providing a push to someone else to also try.<p>I'll take my turn on the soapbox to say I hope people keep posting about their adventures and misadventures in trying something new. I'd much rather be reading that than seeing yet another post on LLM-based agentic startups or pelicans riding bicycles.</p>
]]></description><pubDate>Tue, 10 Feb 2026 22:12:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=46967696</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=46967696</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46967696</guid></item><item><title><![CDATA[New comment by dunder_cat in "The Holy Grail of Linux Binary Compatibility: Musl and Dlopen"]]></title><description><![CDATA[
<p>Related discussion (the actual project is mentioned in the issue):
"Detour: Dynamic linking on Linux without Libc" <a href="https://news.ycombinator.com/item?id=45740241">https://news.ycombinator.com/item?id=45740241</a></p>
]]></description><pubDate>Mon, 26 Jan 2026 16:18:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=46767544</link><dc:creator>dunder_cat</dc:creator><comments>https://news.ycombinator.com/item?id=46767544</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46767544</guid></item></channel></rss>