frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

German tourist wins payout after losing sun lounger race

https://www.bbc.com/news/articles/c5y72g09d7jo
1•vrganj•28s ago•0 comments

A PHP license change is imminent

https://lwn.net/Articles/1063993/
1•tosh•2m ago•0 comments

Visualizing History: The Polish System

https://publicdomainreview.org/collection/visualizing-history-the-polish-system/
1•sebg•6m ago•0 comments

Lazarus Group Uses Git Hooks to Hide Malware

https://opensourcemalware.com/blog/dprk-git-hooks-malware
1•speckx•6m ago•0 comments

From Stringly to Strongly Typed

https://eignex.com/posts/from-stringly-to-strongly-typed/
1•monom•7m ago•0 comments

3D-printed house could help solve Japan's construction crisis

https://www.cnn.com/2026/05/07/business/japans-3d-printing-construction-sector-crisis-hnk-spc
1•breve•7m ago•0 comments

The Missing Piece in AI

https://twitter.com/ElironK300/status/2049640389565379013
1•Eli2315•8m ago•0 comments

AI coding agents read Git log as their first debugging step

https://thoughts.jock.pl/p/how-to-use-github-ai-builders-basics-2026
1•joozio•11m ago•0 comments

The AI fitness instructors selling unreal gains

https://www.bbc.com/sport/articles/c5ye7dnxv86o
1•breve•11m ago•0 comments

When DNSSEC goes wrong: how we responded to the .de TLD outage

https://blog.cloudflare.com/de-tld-outage-dnssec/
1•jgrahamc•11m ago•0 comments

How to Work and Compound with AI

https://eugeneyan.com/writing/working-with-ai/
1•swyx•13m ago•0 comments

BTQ Technologies Corp – legal matter

1•nicolaslexandre•14m ago•0 comments

Show HN: SereneUI – A VSCode-inspired, open-source UI for Postgres

https://github.com/serenedb/serenedb/tree/main/serene-ui
2•gnusi•14m ago•0 comments

Spring: The Documentary

https://www.youtube.com/watch?v=0Gb1z-2SjHY
1•doppp•14m ago•0 comments

Linux Kernel 6.12.86 and 6.18.27 released

https://www.linuxcompatible.org/story/linux-kernel-61286-and-61827-released/
1•pamcake•16m ago•1 comments

What Changed My Mind About Dependency Injection in TypeScript

https://www.vswaroop04.com/writing/di-repository-adapter
1•vswaroop04•17m ago•0 comments

My Initial Thoughts on Thunderbird Pro

https://kevquirk.com/my-inital-thoughts-on-thundermail
1•herbertl•18m ago•0 comments

Llama and Spec: MTP Support

https://github.com/ggml-org/llama.cpp/pull/22673
1•jhoho•18m ago•0 comments

What it feels like to swap

https://ruibento.medium.com/what-it-feels-like-to-swap-96d83a545c5e
1•jgrahamc•19m ago•0 comments

Can I delete the Chrome's OptGuideOnDeviceModel safely? (2025)

https://superuser.com/questions/1930445/can-i-delete-the-chromes-optguideondevicemodel-safely-its...
1•jjgreen•19m ago•0 comments

Show HN: Design proteins from one formula, zero training data – runs in browser

https://aidoctrine.github.io/uct-protein/
1•AlekseN•19m ago•0 comments

Fooling large language models just keeps getting simpler

https://www.theregister.com/software/2026/04/29/fooling-large-language-models-just-keeps-getting-...
1•speckx•20m ago•0 comments

Show HN: I vibe-coded an illegal streaming platform

https://streamvaults.ru/
1•hannil55•21m ago•1 comments

Open-Source Framework to Stop Spamming Your Users (and Increase Conversions)

https://github.com/furkatkasimov/lamf/
1•qatlama•22m ago•0 comments

The GRU's Hogwarts: Inside[..]elite spy school for Russian military intelligence

https://theins.press/en/inv/292314
1•defly•26m ago•0 comments

PS5-Linux

https://github.com/ps5-linux/ps5-linux-loader
2•26d0•26m ago•0 comments

Two Chapters on Code Reviews Worth Your Afternoon

https://verbosemode.dev/p/two-chapters-on-code-reviews-worth
1•ablx000•30m ago•0 comments

Motivation, Productivity Barriers, and Engineering Friction

https://pankajpipada.com/posts/2026-05-07-motivation-productivity-barriers/
1•ppipada•31m ago•1 comments

VoidZero Announces Rolldown 1.0

https://voidzero.dev/posts/announcing-rolldown-1-0
3•crousto•31m ago•0 comments

Anthropomorphism Is the New Skeuomorphism

https://danielgrantco.substack.com/p/anthropomorphism-is-the-new-skeuomorphism
1•djgrant•32m ago•0 comments
Open in hackernews

Offical XRP NPM package has been compromised and key stealing malware introduced

https://www.aikido.dev/blog/xrp-supplychain-attack-official-npm-package-infected-with-crypto-stealing-backdoor
55•flxga•1y ago

Comments

MichealCodes•1y ago
Cryptocurrency packages used at scale should have wallet decoys setup for early detection of vulnerabilities like this.
nailer•1y ago
Red teaming this, you’d delay exfiltration of the private key until the balance passes beyond a certain amount and you’re on mainnet.
ohgr•1y ago
I see the model of "download any old shit off the internet and run it in production" is working out so well.
nailer•1y ago
I don’t have much opinion of XRP but this is their official package, not a community package.
tobyhinloopen•1y ago
Fun fact: installing some common starter packages will explode to install over a 1000 npm packages, each of them can inject malware, even if the package isn’t used, and you’ll never know.

Many packages will have over a 100 dependencies if you include the dev dependencies, so you can easily break a 1000.

mouse_•1y ago
That is a very fun fact.
nailer•1y ago
Yes that is how dependencies work.
poincaredisk•1y ago
The crazy part here is that in most other ecosystems 100 dependencies is "crazy high" territory, and in JS it's apparently "we're just getting started". It's known for its approach to micropackaging everything in a separate library.
greatgib•1y ago
The crazy thing is more that multiple versions of the same package could be installed as dependencies of dependencies...

They were thinking to be the cool kids supporting multiple versions and that the old way to do packaging, like debian and co that expects everyone to use the same version, was the old legacy fart way to do things.

Just, developers before were engineers first and so designed things well especially to avoid this situation of dependency hell and supply chain injection. But the web dev crowd decided to do "better" and now to have old problems as new problems...

nailer•1y ago
npm design allows multiple versions of the same package if required, but deduplicates otherwise. It’s a smart design that more package managers should and will follow.

Smart developers spend their time working on original code rather than rewriting the wheel.

nailer•1y ago
Yes. It’s an engineering failure to have multiple copies of the same logic. That isn’t specific to JavaScript.
tough•1y ago
does the postinstall script step has anything to do with this?

i noticed bun doesn't run them by default unless you whitelist them

koolba•1y ago
That fetch(…) is sending the mnemonic of the private key out to that remote server.

Interestingly if this is happening in a long running process and that exploit server is offline, the promise for the fetch will reject. And the default behavior for unhandled promise rejections would be for the node process to crash.

So if anybody tried testing this version of the library in a net gapped environment, it would crash and fail out in CI.

The attacker should have silenced the error with a .catch(_ => {}).

mschuster91•1y ago
> Previously only the packed JavaScript code had been modified.

Honestly it's time for the npm ecosystem to move to a model where only build agents running on npm's own infrastructure can upload binary artifacts, or to mandate reproducible builds.

And for a select set of highly used packages, someone from NPM should be paid to look over each release's changeset.

Both would have massively impeded the attacker.

mindcrash•1y ago
Official and thorough support for SBOM* within major package repositories can not come sooner.

* https://en.wikipedia.org/wiki/Software_supply_chain

abhisek•1y ago
We run similar npm package monitors. The use of exotic tld domains such as 0x9c.xyz kind of gave it away because YARA Forge rules have native signatures to detect such domains.

It will be interesting t explore how the project got compromised and malicious packages published to the registry.

nailer•1y ago
.xyz isn’t exotic for blockchains.