frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

NYC's Multibillion-Dollar Black Box Contracts

https://nysfocus.com/2026/05/06/new-york-city-contracting-master-agreements
1•h2si•51s ago•0 comments

Quantizing Tangent Frames

https://zeux.io/2026/04/30/quantizing-tangent-frames/
1•ibobev•1m ago•0 comments

Testing Vue Components in the Browser

https://jvns.ca/blog/2026/05/02/testing-vue-components-in-the-browser/
1•ibobev•2m ago•0 comments

Links to CSS Colour Palettes

https://jvns.ca/blog/2026/05/04/css-colour-palettes/
1•ibobev•2m ago•0 comments

Hiker finds 6th C. gold sword fitting

https://www.thehistoryblog.com/archives/76004
2•speckx•2m ago•0 comments

Kids can't use computers and this is why it should worry you (2013)

http://www.coding2learn.org/blog/2013/07/29/kids-cant-use-computers/
1•downbad_•3m ago•1 comments

Nobody understands the point of hybrid cars [video]

https://www.youtube.com/watch?v=KnUFH5GX_fI
1•CharlesW•3m ago•0 comments

Show HN: AI Generated Videos for your Code diffs

https://steerable.dev/
1•bmusuku•4m ago•0 comments

Is AI 2027 coming true?

https://secondthoughts.ai/p/is-ai-2027-coming-true
1•baxtr•4m ago•0 comments

Clozure CL

https://ccl.clozure.com/
1•tosh•4m ago•0 comments

The Fallacy of Premature Optimization (2009)

https://ubiquity.acm.org/article.cfm?id=1513451
1•downbad_•4m ago•1 comments

WebTransport is now available across all major browsers

https://caniuse.com/?search=webtransport
1•apitman•5m ago•0 comments

OpenAI launches GPT-Realtime-2

https://twitter.com/OpenAI/status/2052438194625593804
1•vthallam•5m ago•0 comments

Natural Language Autoencoders

https://www.neuronpedia.org
1•pretext•6m ago•0 comments

Build a Beeper Bridge

https://blog.beeper.com/2025/10/28/build-a-beeper-bridge/
1•luu•8m ago•0 comments

Lisp in Space (2022)

https://www.corecursive.com/lisp-in-space-with-ron-garret/
1•tosh•8m ago•0 comments

Memory Arena – AI coding agents that learn from past tournaments

https://memoryarena.xyz/arena
1•casanovaabraham•8m ago•0 comments

Lumon Terminal – A Severance-Inspired Apple Terminal Theme

https://github.com/onehorizonai/lumon-terminal
2•gusnewman•9m ago•1 comments

Show HN: Live SEO monitoring dashboard in 100 lines of Python

https://seoscoreapi.com/demo/dashboard
1•avansledright•10m ago•0 comments

Two OpenClaw Agents Negotiate a YC SAFE with Agentic Power of Attorney

https://www.juanfiguera.com/notes/system-prompt-and-vibes/
1•juanfiguera•11m ago•0 comments

Notes on the xAI/Anthropic data center deal

https://simonwillison.net/2026/May/7/xai-anthropic/
2•droidjj•12m ago•0 comments

Show HN: Bundlebase – Docker for Data

https://nvoxland.github.io/bundlebase/
2•nvoxland•13m ago•0 comments

The Self Is an Evolutionary Engineering Solution – What Does This Mean for LLMs?

https://darkomulej.substack.com/p/four-roads-to-a-vanishing-self
1•Darius-BC•13m ago•0 comments

How to Build an Agent Platform

https://www.ashpreetbedi.com/agent-platform
2•yashsolanky•13m ago•0 comments

Bell fires small number of employees who allegedly falsified attendance

https://mobilesyrup.com/2026/05/06/bell-employees-fired-in-office-mandate/
1•milkglass•14m ago•0 comments

Advancing voice intelligence with new models in the API

https://openai.com/index/advancing-voice-intelligence-with-new-models-in-the-api/
6•meetpateltech•15m ago•0 comments

JavaScript server-side interoperability with rcompat

https://bytecode.news/posts/2026/05/javascript-server-side-interoperability-with-rcompat
6•terrablue•17m ago•0 comments

The case against bearer secrets

https://credctl.com/blog/vercel-context-ai-breach/
1•matzhouse•18m ago•0 comments

OpenAI's WebRTC Problem

https://moq.dev/blog/webrtc-is-the-problem/
2•atgctg•18m ago•0 comments

Tesla's 4680 battery cells are underperforming and frustrating buyers

https://electrek.co/2026/05/07/tesla-4680-battery-cell-performance-data-shows-cant-build-own-cells/
2•Klaster_1•20m 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.