frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Programming has changed dramatically due to AI in the last 2 months (Karpathy)

https://twitter.com/karpathy/status/2026731645169185220
1•bakigul•2m ago•0 comments

Demo of an indie AI collaboration app – beyond Codex and Claude Code desktop

1•seeksky•4m ago•1 comments

AIQuotaBar – macOS menu bar app that shows Claude and ChatGPT usage limits

https://github.com/yagcioglutoprak/AIQuotaBar
1•toprak123•9m ago•0 comments

Git City – Your GitHub as a 3D City

https://www.thegitcity.com/
1•duck•9m ago•1 comments

Mumsnet campaign demands ban on social media for under-16s

https://www.theguardian.com/society/2026/feb/26/mumsnet-campaign-demands-ban-social-media-under-16s
1•pmg101•11m ago•0 comments

Shipcast – Turn your Git commits into tweets, automatically

https://shipcast.dev/
1•guoyu•12m ago•0 comments

Show HN: LucidExtractor – Extract web data in plain English, no selectors

https://lucidextractor.liceron.in
1•yukendiran_j•16m ago•0 comments

A larger cage: about the ongoing calls for "digital sovereignty"

https://www.structural-integrity.eu/a-larger-cage-about-the-ongoing-calls-for-digital-sovereignty/
1•doener•17m ago•0 comments

Earth's heat to power 10k homes in renewable energy first for UK

https://www.bbc.co.uk/news/articles/cewzg77k721o
2•RobinL•17m ago•0 comments

Show HN: Snaplake – Query past database states without restoring backups

https://snaplake.clroot.io
1•clroot•18m ago•0 comments

Show HN: Context Harness – Local first context engine for AI tools

https://github.com/parallax-labs/context-harness
1•__parallaxis•18m ago•0 comments

Perplexity Computer

https://www.perplexity.ai/hub/blog/introducing-perplexity-computer
1•kamaal•18m ago•0 comments

Show HN: I Made an AI Skill to Help Write Tlaps Proofs

https://github.com/younes-io/agent-skills/blob/main/skills/tlaps-workbench/SKILL.md
1•youio•18m ago•0 comments

Implementing a Clear Room Z80 / ZX Spectrum Emulator with Claude Code

https://antirez.com/news/160
1•boyter•20m ago•0 comments

RUS-Pat Bringing Optical Color to Ultrasound

https://www.caltech.edu/about/news/bringing-optical-color-to-ultrasound
1•Liquidity•20m ago•0 comments

Show HN: SendView – Mail merge from Airtable/GSheets, sends through your email

https://sendview.app/
2•jbrake•27m ago•0 comments

Evidence for the weak Sapir-Whorf hypothesis

https://twitter.com/colingorrie/status/2026658482959565246
2•MrBuddyCasino•27m ago•0 comments

Apple's Touch-Screen Laptop to Have Dynamic Island, New Mac Interface

https://www.bloomberg.com/news/articles/2026-02-24/apple-s-touch-screen-macbook-pro-to-have-dynam...
3•mpweiher•28m ago•0 comments

Show HN: Trust-gated developer communities with portable identity (AT Protocol)

https://github.com/JohannaWeb/ProjectFalcon
2•JohannaWeb•30m ago•0 comments

A Logic Named Joe(1946)

https://www.baen.com/chapters/W200506/0743499107___2.htm
2•largbae•30m ago•0 comments

Open-Source Discord Alternatives

https://lwn.net/SubscriberLink/1058319/7f10cd1d82956e9f/
2•mkesper•31m ago•0 comments

Burned $250 in tokens on Day 1 with OpenClaw

2•aposded•32m ago•0 comments

You are likely unable to connect to http://archive.ph

https://twitter.com/pberrini/status/2026884672584867986
2•petethomas•33m ago•1 comments

Show HN: Sleeping LLM – A language model that remembers by sleeping

https://github.com/vbario/sleeping-llm
2•vbaranov87•35m ago•0 comments

Show HN: Check Your Latency

https://3nt.lat/
2•dpweb•37m ago•0 comments

Apple's Multibillion-Dollar Push to Make Chips in the U.S. [video]

https://www.youtube.com/watch?v=ktFlaBhpMu8
1•Austin_Conlon•38m ago•0 comments

Date-fns: Modern JavaScript date utility library

https://date-fns.org/
1•nateb2022•38m ago•0 comments

OVH Is Raising Prices

1•babaganoosh89•41m ago•1 comments

ZES – sign data with post-quantum crypto without the API ever seeing it

https://pq-api.cyclecore.ai/try
1•dev_PQC-focus•44m ago•1 comments

Show HN: Nullroom.io – Experimental, stateless P2P messaging and file sharing

https://www.nullroom.io/
2•vdw•46m 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.