frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

White House launches Trump TV following press bans

https://thehill.com/homenews/administration/6103061-white-house-launches-trump-tv/
1•consumer451•4m ago•0 comments

Anthropic Principle

https://en.wikipedia.org/wiki/Anthropic_principle
1•binyu•8m ago•0 comments

Et Tu, Brute? Economic Misalignment in Personal AI Agents

https://arxiv.org/abs/2609.24927
1•sbulaev•15m ago•0 comments

I said no and Apple said yes

https://dbushell.com/2026/09/22/apple-intelligence/
2•thatslast•17m ago•0 comments

Robot bunnies deployed in Florida to fight invasive pythons

https://www.popsci.com/environment/robot-bunnies-florida-invasive-pythons/
1•EvanAnderson•19m ago•1 comments

Police hugging AI so tight, soon we'll all be pre-crime suspects

https://responsiblestatecraft.org/pentagon-artificial-intelligence/
1•DeepLogin•25m ago•0 comments

The Sun Doesn't Shine on Me (2006)

https://fullhoffman.com/2006/03/20/the-sun-doesnt-shine-on-me/
1•tosh•27m ago•0 comments

KeiroLabs – Web research infrastructure for AI agents

https://keirolabs.cloud/
2•Akuma_9031•27m ago•1 comments

EncryptedLLM: Privacy-Preserving Large Language Model Inference

https://ICML.cc/virtual/2025/poster/45395
1•rrr_oh_man•29m ago•0 comments

The agents never stop. A council can

https://blog.flurdy.com/2026/09/the-agent-council-stopping-together
1•flurdy•30m ago•1 comments

How to cut back on social media addiction

https://www.shuaibkhan.com/p/how-to-cut-back-on-social-media-addiction
2•shuaib•31m ago•0 comments

Show HN: Z8Log – Structured logging your AI coding agent can query

https://z8log.com/welcome
1•relatedcode•32m ago•0 comments

Trusted directories for listing your Mac app

https://www.reddit.com/r/SideProject/s/OUdUEmRdMO
1•a_chmerev•32m ago•0 comments

RippleNav – A web instrument provides real-time visual feedback on thought focus

https://access.ripplenav.org/
1•RRwood•34m ago•0 comments

Saudi's Ceer unveils first EVs

https://www.reuters.com/world/middle-east/saudis-ceer-unveils-first-evs-bid-build-regional-auto-p...
1•Propelloni•35m ago•0 comments

Welcome Silona Bonewald, New MetaBrainz Foundation Executive Director

https://blog.metabrainz.org/2026/09/22/welcome-silona-bonewald-new-metabrainz-foundation-executiv...
2•aerozol•36m ago•1 comments

Show HN: Easytris – Tetris that wants you to win

https://medv.io/easytris/
1•medv•38m ago•0 comments

A Tribute to Donald Knuth (2024)

https://paramrathour.github.io/blog/knuth/
1•signa11•39m ago•0 comments

Create AI Image Free – No Sign-Up Needed

https://www.createaiimage.net/
1•wsm123456•39m ago•0 comments

Scanner says the HTML attachment is clean. What happens when you open it?

https://mohitkhare.com/blog/file-attack-html-smuggling/
1•mkfeuhrer•42m ago•0 comments

Chewbacca's Ancestor Is Real

https://maxhawtdawg.com/
1•zacksiri•42m ago•0 comments

The Set of Math-Sterpieces

https://paramrathour.github.io/blog/math-book-recommendations/
1•signa11•45m ago•0 comments

Reverse-Engineering Jane Street's ASIC

https://mooofin.github.io/portfolio/blog/jane-street-asic.html
1•allenleee•45m ago•0 comments

How people are testing AI agents?

1•sanathbhat•46m ago•0 comments

Frontier Overhangs

https://stratechery.com/2026/frontier-overhangs/
1•tosh•49m ago•0 comments

Some Old Expectations for the New Apple

https://taoofmac.com/space/blog/2026/09/22/0709
2•rcarmo•51m ago•0 comments

Physics Problem Finder

https://beneke7.github.io/physics-problems-corpus/
1•bbene•52m ago•0 comments

The Armored Sarcophagus Saving Ukrainian Soldiers

https://www.theatlantic.com/international/2026/09/ukraine-frontline-medical-evacuations/688638/
1•mkesper•55m ago•0 comments

OpenCode Reloaded

https://anoma.ly/notes/opencode-reloaded/
2•pretext•59m ago•1 comments

Proposed Group: Browser Data Portability Community Group

https://www.w3.org/community/blog/2026/09/11/proposed-group-browser-data-portability-community-gr...
2•enos_feedler•1h ago•1 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...

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.
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