<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: anthonyryan1</title><link>https://news.ycombinator.com/user?id=anthonyryan1</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 04 May 2026 08:41:23 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=anthonyryan1" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by anthonyryan1 in "Shai-Hulud compromised a dev machine and raided GitHub org access: a post-mortem"]]></title><description><![CDATA[
<p>One approach I started using a could of years ago was storing SSH private keys in the TPM, and using it via PKCS11 in SSH agent.<p>One benefit of Microsoft requiring them for Windows 11 support is that nearly every recent computer has a TPM, either hardware or emulated by the CPU firmware.<p>It guarantees that the private key can never be exfiltrated or copied. But it doesn't stop malicious software on your machine from doing bad things from your machine.<p>So I'm not certain how much protection it really offers on this scenario.<p>Linux example:
<a href="https://wiki.gentoo.org/wiki/Trusted_Platform_Module/SSH" rel="nofollow">https://wiki.gentoo.org/wiki/Trusted_Platform_Module/SSH</a><p>macOS example (I haven't tested personally):
<a href="https://gist.github.com/arianvp/5f59f1783e3eaf1a2d4cd8e952bb4acf" rel="nofollow">https://gist.github.com/arianvp/5f59f1783e3eaf1a2d4cd8e952bb...</a></p>
]]></description><pubDate>Sun, 14 Dec 2025 16:18:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=46264135</link><dc:creator>anthonyryan1</dc:creator><comments>https://news.ycombinator.com/item?id=46264135</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46264135</guid></item><item><title><![CDATA[New comment by anthonyryan1 in "Framework Laptop 13 gets ARM processor with 12 cores via upgrade kit"]]></title><description><![CDATA[
<p>Does this board boot Linux via a device tree, or have hardware discovery?<p>How about UEFI vs arm-specific bootloaders?<p>I tried arm32 Linux a few years back, and the largest hindrance at the time was the device trees and non-UEFI boot process. Given up on exploring the platform further (except maybe for SBC like raspberry pi) until that situation improves.</p>
]]></description><pubDate>Fri, 05 Dec 2025 18:17:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=46165062</link><dc:creator>anthonyryan1</dc:creator><comments>https://news.ycombinator.com/item?id=46165062</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46165062</guid></item><item><title><![CDATA[New comment by anthonyryan1 in "Cloudflare 1.1.1.1 Incident on July 14, 2025"]]></title><description><![CDATA[
<p>Additionally, as long as you don't set strict-order, dnsmasq will automatically use all-servers for retries.<p>If you were using systemd-resolved however, it retries all servers in the order they were specified, so it's important to interleave upstreams.<p>Using the servers in the above example, and assuming IPv4 + IPv6:<p><pre><code>    1.1.1.1
    2001:4860:4860::8888
    9.9.9.9
    2606:4700:4700::1111
    8.8.8.8
    2620:fe::fe
    1.0.0.1
    2001:4860:4860::8844
    149.112.112.112
    2606:4700:4700::1001
    8.8.4.4
    2620:fe::9
</code></pre>
will failover faster and more successfully on systemd-resolved, than if you specify all Cloudflare IPs together, then all  Google IPs, etc.<p>Also note that Quad9 is default filtering on this IP while the other two or not, so you could get intermittent differences in resolution behavior. If this is a problem, don't mix filtered and unfiltered resolvers. You definitely shouldn't mix DNSSEC validatng and not DNSSEC validating resolvers if you care about that (all of the above are DNSSEC validating).</p>
]]></description><pubDate>Wed, 16 Jul 2025 12:38:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=44581619</link><dc:creator>anthonyryan1</dc:creator><comments>https://news.ycombinator.com/item?id=44581619</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44581619</guid></item><item><title><![CDATA[New comment by anthonyryan1 in "Death by a Thousand Slops"]]></title><description><![CDATA[
<p>As the only developer maintaining a big bounty program. I believe they are all trending downward.<p>I've recently cut bounties to zero for all but the most severe issues, hoping to refocus the program on rewarding interesting findings instead of the low value reports.<p>So far it's done nothing to improve the situation, because nobody appears to read the rewards information before emailing. I think reading scope/rewards takes too much time per company for these low value reports.<p>I think that speaks volumes about how much time goes into the actual discoveries.<p>Open to suggestions to improve the signal to noise ratio from anyone whose made notable improvements to a bug bounty program.</p>
]]></description><pubDate>Mon, 14 Jul 2025 12:42:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=44559501</link><dc:creator>anthonyryan1</dc:creator><comments>https://news.ycombinator.com/item?id=44559501</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44559501</guid></item><item><title><![CDATA[New comment by anthonyryan1 in "Linux Kernel Defence Map – Security Hardening Concepts"]]></title><description><![CDATA[
<p>This is by the author of the very helpful kernel-hardening-checker: <a href="https://github.com/a13xp0p0v/kernel-hardening-checker">https://github.com/a13xp0p0v/kernel-hardening-checker</a><p>An interesting tool for analyzing your personal kernel config file and pointing out areas for security improvement. It's more comprehensive than KSPP (<a href="https://kspp.github.io/" rel="nofollow">https://kspp.github.io/</a>) but sometimes goes a little too far, suggesting disabling kernel features you may actively use.<p>Definitely worth trying!</p>
]]></description><pubDate>Wed, 09 Apr 2025 13:04:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=43631590</link><dc:creator>anthonyryan1</dc:creator><comments>https://news.ycombinator.com/item?id=43631590</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43631590</guid></item><item><title><![CDATA[New comment by anthonyryan1 in "Exposed RSS"]]></title><description><![CDATA[
<p>Even worse than this are sites that have RSS feeds and Cloudflare in front. Because my RSS reader doesn't look much different than a bot, and won't complete Cloudflare's CAPTCHA.</p>
]]></description><pubDate>Sat, 13 Jan 2024 23:59:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=38986014</link><dc:creator>anthonyryan1</dc:creator><comments>https://news.ycombinator.com/item?id=38986014</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38986014</guid></item><item><title><![CDATA[New comment by anthonyryan1 in "Some Pixel owners still can't dial 911 during an emergency"]]></title><description><![CDATA[
<p>If it's possible the power button is getting bumped repeatedly in your pocket. You could search your Android settings, and make sure "Emergency SOS" is turned off.</p>
]]></description><pubDate>Sat, 30 Sep 2023 13:07:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=37715061</link><dc:creator>anthonyryan1</dc:creator><comments>https://news.ycombinator.com/item?id=37715061</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37715061</guid></item><item><title><![CDATA[New comment by anthonyryan1 in "Apple M2 Ultra SoC isn’t faster than AMD and Intel last year desktop CPUs"]]></title><description><![CDATA[
<p>Where are the performance per watt numbers?<p>Anyone can get the performance crown by having an unlimited energy budget. Performance per watt is much more valuable in data centers (TCO) and consumer devices (battery life).</p>
]]></description><pubDate>Sat, 10 Jun 2023 16:35:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=36271988</link><dc:creator>anthonyryan1</dc:creator><comments>https://news.ycombinator.com/item?id=36271988</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36271988</guid></item><item><title><![CDATA[New comment by anthonyryan1 in "Testing Noctua’s NH-P1 with Ryzen 7700x and Intel’s i9-13900K"]]></title><description><![CDATA[
<p>I feel compelled to mention that this space has existed as a niche community for many years now.<p>I've personally been using a NoFan CR-80EH in my workstations for over 10 years. I think it's subjectively the most beautiful heatsink I've ever seen.<p>You do need to plan your build to accomodate such a cooler though.
- Open Air case to allow free movement of air in and out of your case
- 65W TDP CPU<p>While a lot of people feel like 65 watt TDP is limiting, there are some impressive chips you can use under that threshold that don't feel like a compromise. Eg the Ryzen 9 7900 (not-X).<p>And if the rest of your office is quiet, eliminating ambient background noise is a delightful improvement.</p>
]]></description><pubDate>Sun, 29 Jan 2023 14:26:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=34568387</link><dc:creator>anthonyryan1</dc:creator><comments>https://news.ycombinator.com/item?id=34568387</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34568387</guid></item><item><title><![CDATA[New comment by anthonyryan1 in "JSZip - Create .zip files with Javascript"]]></title><description><![CDATA[
<p>What version of nginx are you using with it? The last time I looked into that particular plugin it did not appear to work correctly.</p>
]]></description><pubDate>Thu, 17 Nov 2011 18:25:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=3248615</link><dc:creator>anthonyryan1</dc:creator><comments>https://news.ycombinator.com/item?id=3248615</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=3248615</guid></item></channel></rss>