frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Nothing dream phone concept [video]

https://www.youtube.com/watch?v=ZpPiZiqWjyA
1•ivanjermakov•29s ago•0 comments

New Steam Controller reservations won't be fulfilled until 2027

https://store.steampowered.com/news/group/45479024/view/697641379212297809
2•haunter•3m ago•0 comments

Show HN: I made a startup idea validator for founders who move fast

https://ideas.trk7.app/use-cases/startup-idea-validation
1•cosmok•4m ago•0 comments

Claude Code scans your whole drive, admits it when caught

https://github.com/anthropics/claude-code/issues
2•cashmawy•6m ago•0 comments

OpenMW 0.51

https://openmw.org/2026/openmw-0-51-0-released/
1•haunter•7m ago•0 comments

Show HN: An online crate digging tool to discover music you can buy and stream

https://www.wedig.fyi
1•bepitulaz•7m ago•0 comments

Spanish electricity providers comparison tool

https://elemetric.comtom.engineering/
1•comtom•9m ago•0 comments

Show HN: Reachpad – document and knowledge sharing for your agents

https://reachpad.dev/
1•sakuraiben•10m ago•0 comments

I made ChatGPT look like a Google Doc

https://gptdisguise.vercel.app
1•yuljg•11m ago•1 comments

Show HN: StayUp – keep a Mac awake (lid closed) while AI agents are working

https://getstayup.app
1•nongknot•13m ago•0 comments

HorseWood Reviews: Is It Worth Considering in 2026?

https://finance.yahoo.com/sectors/healthcare/articles/horsewood-urgent-report-2026-horse-19110038...
1•tarikaus•13m ago•0 comments

Trump administration to pay £765M to cancel 4 more wind projects

https://www.nytimes.com/2026/06/17/climate/trump-wind-farms-cancel-millions.html
1•asplake•18m ago•1 comments

How animals communicate to work together across species boundaries

https://phys.org/news/2026-06-animals-communicate-species-boundaries.html
1•the-mitr•23m ago•1 comments

GLM-5.2 Beat Fable 5 at Website Design

https://twitter.com/Designarena/status/2068030598028087788
2•tosh•28m ago•0 comments

TOML Schema

https://toml-schema.org/
1•pramodbiligiri•34m ago•0 comments

Show HN: Make every bug perfectly reproducible

https://workers.io/
5•chaitanyya•34m ago•0 comments

Coding a Brick Tower

https://www.youtube.com/watch?v=DAMiS2PGTEE
2•dvrp•40m ago•0 comments

Show HN: Self-hostable academic paper manager (linxiv)

https://github.com/linxiv-dev/linXiv
2•jeuribe•40m ago•0 comments

Brain-computer interface trials are taking off

https://www.technologyreview.com/2026/06/19/1139270/brain-computer-interface-trials-are-taking-off/
1•joozio•47m ago•0 comments

Ask HN: Will we start seeing tools for LLM use?

1•bonigv•51m ago•1 comments

Federal regulators order grid operators speed power2energy-hungry AI datacenters

https://apnews.com/article/power-electricity-ai-plants-data-centers-grid-506e3d206871111f15c3c62f...
1•latentframe•57m ago•0 comments

Show HN: A Context Brain for You (and Your AI Agent)

https://gcontext.ai
1•bsampera•1h ago•0 comments

GitHub Copilot and Dev Productivity: An Observational Dose-Response Analysis

https://arxiv.org/abs/2606.00438
2•theanonymousone•1h ago•0 comments

Britain Learned and Unlearned Nuclear

https://worksinprogress.co/issue/how-the-uk-learned-and-unlearned-nuclear/
2•leonidasrup•1h ago•0 comments

Möbius Chess

https://mchess.io/v/m%C3%B6bius/
1•modinfo•1h ago•0 comments

Show HN: Passport Stamp Archive, browse real border stamps from around the world

https://ajin.im/is/building/stamps/
4•poppypetalmask•1h ago•0 comments

Doom Composer Bobby Prince Has Died

https://www.engadget.com/2198098/doom-composer-bobby-prince-has-died/
2•naves•1h ago•0 comments

Open source alternative to brain by perplexity

https://github.com/raphaelwkago-sketch/rudi
1•w4mwati•1h ago•0 comments

Show HN: Autonomy – Self-Harness/Self-Directed AI Agent Core Under Development

https://autonomy-landing-page.vercel.app/
2•agentic_vector•1h ago•0 comments

How R&D Affects Absorptive Capacity

https://camerongordon0.substack.com/p/how-r-and-d-affects-absorptive-capacity
1•iciac•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•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