frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Earth's first major extinction was worse than we thought

https://www.science.org/content/article/earth-s-first-major-extinction-was-worse-we-thought
2•thunderbong•2m ago•0 comments

Treasure hunter freed from jail after refusing to turn over shipwreck gold

https://www.bbc.com/news/articles/cg4g7kn99q3o
2•tartoran•4m ago•0 comments

CloudPipe – download anything to Google Drive

https://cloudpipe.app
2•darkhasi•8m ago•0 comments

Am I a Forward Deployed Engineer? Maybe. Take the Quiz

https://wanjiko.substack.com/p/am-i-a-forward-deployed-engineer
1•contextwindow•11m ago•1 comments

DeerFlow 2.0: open-source SuperAgent harness that researches, codes, creates

https://github.com/bytedance/deer-flow
2•nateb2022•13m ago•0 comments

Add all your GitHub stars on your readme, autoupdating

https://starsum.jia.build/
1•Audgeviolin07•17m ago•0 comments

A Superpower Goes Offline

https://www.politico.com/news/2026/03/14/russias-self-inflicted-communication-crisis-00827197
2•mitchbob•23m ago•0 comments

Memegen Pro

https://memegen.pro/
1•decimalenough•24m ago•0 comments

Why do we need lots of Nuclear power long term?

https://www.gridstatus.io/live/ercot
1•chris222•26m ago•1 comments

$3k sequencing rescue dog's mast cell tumor DNA

https://twitter.com/IterIntellectus/status/2032858964858228817
2•gmays•26m ago•1 comments

Cats May Hold the Key to Treating Human Cancer

https://scitechdaily.com/cats-may-hold-the-key-to-treating-human-cancer/
2•y1n0•27m ago•0 comments

Accessibility and the AI autumn (2020) [video]

https://www.youtube.com/watch?v=PJE_gnTreBo
1•azhenley•30m ago•0 comments

Great Ideas in Computer Architecture

https://www.d.umn.edu/~gshute/arch/great-ideas.html
3•b-man•39m ago•0 comments

Estimating $π$ with a Coin

https://arxiv.org/abs/2602.14487
2•Anon84•42m ago•0 comments

Show HN: Korupedia – a knowledge base maintained by AI agents, not humans

https://korupedia.com
2•benryanx•42m ago•3 comments

What role is cyber warfare played in Iran?

https://www.bbc.com/news/articles/c5yr0576ygvo
1•y1n0•43m ago•0 comments

The war on Iran is about China

https://sharptext.net/2026/loud-and-clear/
4•qwikhost•44m ago•0 comments

China's Winning Energy Strategy

https://www.semafor.com/article/03/10/2026/chinas-winning-energy-strategy
2•KnuthIsGod•44m ago•0 comments

Open-Source Minecraft Web Client

https://mcraft.fun/
3•LelouBil•44m ago•0 comments

US solar installations fall as Trump policies hit sector

https://www.semafor.com/article/03/12/2026/us-solar-installations-fall-as-trump-policies-hit-sector
6•KnuthIsGod•46m ago•0 comments

ProfitPlay – Open prediction market arena for AI agents

https://github.com/jarvismaximum-hue/profitplay-starter
2•jarvis_maximum•52m ago•0 comments

Getting started with Claude for software development

https://steveklabnik.com/writing/getting-started-with-claude-for-software-development/
2•vinhnx•52m ago•0 comments

Clawme-Personal AI Assistant Built for OpenClaw

https://clawme.org/
2•RyanMu•55m ago•0 comments

Detecting LLM-generated phishing emails by the artifacts bad actors leave behind

https://lukemadethat.substack.com/p/forgetful-foes-and-absentminded-advertisers
2•costaud-sec•1h ago•1 comments

Tell HN: iPhone 6s still getting security updates

4•uticus•1h ago•2 comments

KB Arena – benchmark RAG strategies on your docs (open source)

https://github.com/xmpuspus/kb-arena
3•xmpuspus•1h ago•2 comments

Show HN: Obolus – compare taxes, budgets and wealth

https://www.obolusfinanz.de/en
2•sanzation•1h ago•0 comments

GPU-Accelerated OCR API for Documents, Images and PDFs

https://docpose.cloud/ocr
2•maniazi83•1h ago•1 comments

Department of War Official Demos Palantir Tooling

https://www.youtube.com/watch?v=yrtDgoqWmgM
3•stingrae•1h ago•0 comments

Why AI agents need to learn to read the room

https://ideas.fin.ai/p/why-ai-agents-need-to-learn-to-read
2•zdw•1h 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•10mo ago

Comments

MichealCodes•10mo ago
Cryptocurrency packages used at scale should have wallet decoys setup for early detection of vulnerabilities like this.
nailer•10mo 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•10mo ago
I see the model of "download any old shit off the internet and run it in production" is working out so well.
nailer•10mo ago
I don’t have much opinion of XRP but this is their official package, not a community package.
tobyhinloopen•10mo 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_•10mo ago
That is a very fun fact.
nailer•10mo ago
Yes that is how dependencies work.
poincaredisk•10mo 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•10mo 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•10mo 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•10mo ago
Yes. It’s an engineering failure to have multiple copies of the same logic. That isn’t specific to JavaScript.
tough•10mo 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•10mo 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•10mo 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•10mo ago
Official and thorough support for SBOM* within major package repositories can not come sooner.

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

abhisek•10mo 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•10mo ago
.xyz isn’t exotic for blockchains.