frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Wlog: Claude Code token/cost/tool dashboard, single binary, no Grafana

https://github.com/openwong2kim/wlog
1•wong2kim•1m ago•0 comments

Watch me build out an 80s style BBS over SSH

1•buffer_overlord•4m ago•0 comments

A1 Road Collision Density Visualisation

https://visquill.com/gallery/uk-a1
1•zeristor•5m ago•0 comments

Show HN: Algorithm-free video hosting that doesn't recompress your master

https://longplayplatform.com/
1•longplay•5m ago•0 comments

The Startup Graveyard – what killed 16 startups

https://kasspian.com/graveyard
2•izhonline•5m ago•1 comments

Modellot – Plain language in, ODCS data contracts out (EU Data Act compliant)

https://www.modellot.com/
1•sasanin•8m ago•0 comments

Semantic Search in Under 3MB

https://blog.lukesalamone.com/posts/creating-tiny-semantic-search/
1•salamo•8m ago•0 comments

Show HN: Describe a research topic, get a daily-updated ArXiv/S2 dataset

https://fineset.io
1•dangerlego5•9m ago•0 comments

What's in America's Code?

https://www.boozallen.com/expertise/cybersecurity/whats-in-americas-code.html
1•ironyman•12m ago•0 comments

Show HN: Enigma Simulator – Encrypt Like WWII

https://enigma-simulator.waibsite.app/
1•dreamcin•18m ago•0 comments

Change 'arxiv' to 'autoarxiv' in URL to run agent on any paper

https://digg.com/tech/m9r4hegw
2•weinzierl•19m ago•0 comments

The Traditional Vi

https://ex-vi.sourceforge.net/
2•exvi•20m ago•0 comments

Gemini models increasingly stucking in thinking loop

3•StizzurpXDD•20m ago•3 comments

Reject Agility, Embrace Specification

https://lewiscampbell.tech/blog/260622.html
2•LAC-Tech•21m ago•0 comments

vilearn – an interactive vi tutorial

https://git.sr.ht/~libele/vilearn
1•exvi•22m ago•0 comments

Microsoft accidentally kills epic Outlook email threads

https://www.theregister.com/personal-tech/2026/06/22/microsoft-accidentally-kills-epic-outlook-em...
1•01-_-•22m ago•0 comments

Tencent Is Said to Mull Exits from Game Studios Like Marvelous

https://www.bloomberg.com/news/articles/2026-06-23/tencent-in-talks-to-offload-marvelous-and-othe...
2•01-_-•23m ago•0 comments

Building Blocks of GenAI Product Evaluation

https://yinghonglan.substack.com/p/building-blocks-of-genai-product
1•rented_mule•23m ago•0 comments

Will Apple Pull a SpaceX?

https://hitesh.in/2026/apple-ai-inference-silicon/
3•antrix•24m ago•1 comments

PDFWix Free online PDF and document conversion Tool

2•PDFWix•30m ago•0 comments

Why Bulletproof React Became the Most Popular React Architecture on GitHub

https://jsdev.space/bulletproof-react-architecture-guide/
1•javatuts•32m ago•0 comments

We Are Witnessing the Slow Death of the Prestige Career

https://www.theguardian.com/commentisfree/2026/jun/22/consulting-ai-prestige-careers
2•mindcrime•34m ago•0 comments

Manticore Search 27.1.5: Auth, sharding, conversational&faster vector search

https://medium.com/@s_nikolaev/manticore-search-27-1-5-5fe42cbc5787
1•snikolaev•35m ago•0 comments

Wrst – Build smartwatch apps with React and TypeScript

https://www.wrst.dev/
1•karolbisztyga•36m ago•0 comments

Smoobu website builder suffers from bad UX, I used their API instead

https://waldo.vanderlore.de/blog/str-booking-guide/
1•waldov•37m ago•0 comments

What happens when OKF runs inside an AI tool

https://tenureai.dev/writing/open-knowledge-format-ai-memory-benchmark/
4•jflynt76•38m ago•0 comments

Millions in UK could claim share of £3B after Apple case given green light

https://www.bbc.co.uk/news/articles/c932d1r0p96o
3•fredley•39m ago•0 comments

SHOW HN: Huskmail - A disposable email with private inboxes and trial library

https://huskmail.xyz
2•draggodra•40m ago•2 comments

Sorites Paradox (Paradox of the Heap)

https://en.wikipedia.org/wiki/Sorites_paradox
3•chistev•48m ago•1 comments

Downed US pilot reported 'jellyfish' drone formation before crash

https://www.cnn.com/2026/06/23/politics/iran-drones-f-15-pilot-intelligence
1•farseer•48m 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...

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