Viewing profile — BonusPlay
BonusPlay
HN member- Joined
- Fri, May 03, 2024, 8:08 AM UTC
- HN karma
- 108
- Public activity
- 27 items
- HN profile
- View on Hacker News ↗
About BonusPlay
No profile information was provided.
Recent public activity
-
comment
Comment #47013220
From my perspective zig doesn't have "big cleanup" upfront. It's removing older features as it goes. stdlib changes as it wants from version to version. So do language features. Si…
-
comment
Comment #47013063
Instead of debating for years (like other languages), zig just tries things out. Worst case you can always rollback changes. IMO best APIs and designs are those that are battle tes…
-
comment
Comment #45671044
Except that many component manufacturers release their efi capsules signed with Microsoft PKI. So no, you can't fully remove them if you want to verify updates.
-
comment
Comment #45579181
If you're interested in the topic there's great YouTube channel that demonstrates such attacks IRL together with full tutorials. Below are 2 satellite related videos: 1) https://ww…
-
comment
Comment #44059660
Not the best name for the article. My first guess was version changes, or software being added/removed from repo. Turns out this is about source code modification.
-
comment
Comment #43469236
A problem I encountered while writing custom stdlib, is that certain language features expect stdlib to be there. For example, operator assumes, that std::partial_ordering exists. …
-
comment
Comment #43273837
Both AMD and Google note, that Zen[1-4] are affected, but what changed about Zen5? According to the timeline, it released before Google notified AMD [1]. Is it using different keys…
-
comment
Comment #43217624
Honestly I don't get why people are hating this response so much. Life is complex and vulnerabilities happen. They quickly contacted the reporter (instead of sending email to spam)…
-
comment
Comment #42212626
Seems like you assumed none of your tools got backdoored. I'd start bootstrapping from busybox.
-
comment
Comment #42134413
Linux Local Privilege Escalation, but the attacker has to be in sudo group in the first place. Great read, but this feels like academic research. Technically correct, but impractic…
-
comment
Comment #42125610
If you want to manage VMs, then you're probably using terraform + provider. However, SDN (Software Defined Networking) is not yet supported [1], which makes any kind of deployment …
-
comment
Comment #42125578
> Proxmox uses ZFS making snapshotting quick Proxmox only supports linear snapshots using ZFS (so no tree-like snapshots). This might be a deal-breaker for some usages.
-
comment
Comment #41944756
Yes, loopix. https://www.usenix.org/conference/usenixsecurity17/technical...
-
comment
Comment #41465610
GitHub is slowly rolling out feature over moe than a year [1], which will have positive impact on overall IT security. Spending 1 minute setting up 2FA is really not a big deal. [1…
-
comment
Comment #41377215
Depends how much patience you have. Firejail if you want ease of use (there are a lot of ready profiles to be used). Bubblewrap if you want more security, at the cost of having to …
-
comment
Comment #41370145
I'm not a rust expert by any means, but I believe there's a problem with lifetimes. There are many ways to implement double-linked lists (think C++ smart pointers), but when you tr…
-
comment
Comment #41048113
Sounds like amazing material for a CCC talk.
-
comment
Comment #40953205
While authelia is quite cool "infra-as-code" tool, since you have your entire configuration in yaml form, for those not willing to spend a few evenings configuring SSO, there is au…
-
comment
Comment #40939149
When performing forensic analysis, metrics don't usually help that much. I'd rather sift 2PB of logs, knowing that information I'm looking for is in there, than sit at the usual "2…
-
comment
Comment #40928778
From my experience, you either go full reproducible builds with nix, or none at all. Sitting in the middle results with additional downsides from modifying pipeline without core up…
-
comment
Comment #40885169
What's the point of having your 2FA codes synchronized across all your devices? Isn't it in the name "TWO FACTOR"? It's supposed to be a separate device and ability to "across devi…
-
comment
Comment #40835809
Just last week google CTF featured a reverse engineering challenge of a neo geo game! https://capturetheflag.withgoogle.com/challenges/rev-arcade Also, the neo geo development wiki…
-
comment
Comment #40611662
> SSH certificates are fail-secure Yeah... no. I think my private key stored on yubikey is harder to steal than session to your OIDC.
-
comment
Comment #40352921
The gotcha is that "global" args don't propagate automatically to all stages (thin includes 1 stage builds). I want this one arg in multiple stages, so I'll declare it above everyt…
-
comment
Comment #40316118
Note, that paper provides environment for AWS FPGAs, which you can rent on per-hour basis. As for cheaper FPGAs, the paper notes that the bottleneck is the size of on-chip memory. …