frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Cheap worktree replacement for agent swarm

https://github.com/satmihir/wafers
1•0state•1m ago•0 comments

Writing the loss function: AI, feeds, and the engagement optimizer

https://eignex.com/posts/writing-the-loss-function/
1•monom•2m ago•1 comments

PDF Editify Merge PDF Tool

https://pdfeditify.com/merge-pdf
1•Benish_Zulfiqar•3m ago•0 comments

Gratitude for an Open Android

https://lzon.ca/posts/series/grateful/keep-android-open/
1•jpmitchell•5m ago•0 comments

I Use Codex CLI to Write and Maintain a Book on Codex CLI

https://blog.danielvaughan.com/how-i-use-codex-cli-to-write-and-maintain-a-book-on-codex-cli-0480...
1•dvaughan•9m ago•0 comments

The Audio Industry Is Grappling with the Rise of 'Podslop'

https://www.bloomberg.com/news/newsletters/2026-04-30/-podslop-proliferation-is-challenging-the-a...
2•thm•11m ago•0 comments

Brush a Bash/POSIX-compatible shell written in the Rust

https://github.com/reubeno/brush/releases/tag/brush-shell-v0.4.0
2•Jarlakxen•11m ago•0 comments

The Death of Scrum – Built for a slower world, performed by those who left

https://death-of-scrum.net/
2•mantyx•12m ago•0 comments

The Croupier – AI-powered candidate discovery and ranking for recruiting teams

https://dealers-choice-systems.vercel.app
1•Berlia•12m ago•0 comments

Camera Obscura #1

https://www.maartenheijkamp.nl/portfolio_page/camera-obscura-1/
1•jruohonen•12m ago•0 comments

Fake Money Saved Brazil (2010)

https://www.npr.org/sections/money/2010/10/04/130329523/how-fake-money-saved-brazil
1•downbad_•14m ago•1 comments

Ferrari Luce

https://www.ferrari.com/en-EN/auto/ferrari-luce
1•varun_chopra•15m ago•0 comments

Strategic Orbit Wars competition on Kaggle

https://www.kaggle.com/competitions/orbit-wars
1•darshanmakwana•15m ago•0 comments

Data Breach Hits Anti-ICE Organizing Site Gtfoice.org

https://substack.com/home/post/p-196263468
2•CapricornNoble•16m ago•0 comments

Wheel Reinvention: Not Just a Common Metaphor

https://tedium.co/2026/05/03/wheel-reinvention-technology-history/
1•shortformblog•16m ago•0 comments

Talking to Transformers

https://miraos.org/blog/2026/05/02/talking-to-transformers
2•taylorsatula•23m ago•0 comments

Supercollider

https://supercollider.github.io/
2•andyjohnson0•25m ago•0 comments

Separating what AI does well from what code does well

https://claude.com/blog/how-kepler-built-verifiable-ai-for-financial-services-with-claude
2•eddiehammond•25m ago•1 comments

Original Volkov Commander Sources

https://github.com/ddanila/vc
2•begoon•27m ago•0 comments

Mapping Notable Geo-Triangles

https://nickscip.xyz/projects/triangles/
2•nickscip•27m ago•1 comments

Open source desktop app for studying online courses

https://github.com/tonhowtf/omniget
2•axiomdata316•29m ago•0 comments

Show HN: Security Scanner for Agent Skills and MCP

https://github.com/snyk/agent-scan
3•lirantal•30m ago•0 comments

Lyra 2.0: Explorable Generative 3D Worlds

https://research.nvidia.com/labs/sil/projects/lyra2/
1•jonbaer•30m ago•1 comments

Past Ferrari Models, 1947–2023

https://www.ferrari.com/en-US/auto/past-model
1•NaOH•31m ago•0 comments

Show HN: A Privacy tool that finds and hides sensitive data in phtots/videos

https://www.scanon.ai/
1•lotuslabs•31m ago•0 comments

A GitHub for Maintainers

https://nesbitt.io/2026/05/02/a-github-for-maintainers.html
1•milkglass•31m ago•1 comments

Public Runtime for Convera for LLM's

https://github.com/cjparadise79/CONVERA-PUBLIC
1•cjparadise•34m ago•1 comments

Show HN: Ableton Live MCP

https://github.com/bschoepke/ableton-live-mcp
3•bschoepke•35m ago•1 comments

MCP-x-Mac-Seed – An AI agent that discovers Mac apps and writes its own tools

https://github.com/reverendish/mcp-x-mac-seed
1•ishsitotombe•36m ago•0 comments

BYOMesh – New LoRa mesh radio offers 100x the bandwidth

https://partyon.xyz/@nullagent/116499715071759135
14•nullagent•37m ago•3 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.