frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Web Rewind by Opera

https://web-rewind.com
1•lovegrenoble•2m ago•0 comments

The free media database that anyone can edit

https://www.omdb.org/en/us/captcha
1•Frotag•3m ago•0 comments

Techno‑Feudal Elite Are Attempting to Build a Twenty‑First‑Century Fascist State

https://collapseofindustrialcivilization.com/2026/02/16/americas-oligarchic-techno-feudal-elite-a...
2•measurablefunc•3m ago•0 comments

Why?

1•romulussilvia•6m ago•0 comments

Codified Context: Infrastructure for AI Agents in a Complex Codebase

https://arxiv.org/abs/2602.20478
1•Anon84•14m ago•0 comments

Ask HN: What Happened to HTTPS://Www.keyvalues.com/?

1•alexgotoi•15m ago•0 comments

Show HN: Time-travel debugging and side-by-side diffs for AI agents

https://github.com/clay-good/agent-replay
1•hireclay•16m ago•0 comments

Bind 2 Port 0

https://bengarcia.dev/b2p0
1•hahahacorn•16m ago•0 comments

Starts Club – YC-style startup idea validator

2•androbuddy•21m ago•0 comments

Show HN: Aegis-DB – Multi-paradigm database in Rust,in production

https://github.com/AutomataNexus/Aegis-DB
1•AutomataNexus•21m ago•1 comments

Show HN: Cc-connect – Remote control Claude Code from your favorite chat app

https://github.com/chenhg5/cc-connect
1•cg33•21m ago•2 comments

Watch your Claude Code hooks in real time

https://felipeelias.github.io/2026/02/28/hook-lab.html
1•felipeelias•22m ago•1 comments

Retroforth: A Modern, Pragmatic Forth

https://retroforth.org/
2•tosh•22m ago•0 comments

Show HN: Cagent – Agent in a Cage

https://github.com/noperator/cagent
1•noperator•23m ago•0 comments

Histomap Reborn

https://histomap.robennals.org/app
2•Ozzie_osman•24m ago•0 comments

Show HN: GEKO (up to 80% compute savings on LLM fine-tuning)

https://github.com/ra2157218-boop/GEKO
1•SyedAbdurR2hman•25m ago•0 comments

Simple System for Now – Daniel Terhorst-North [video]

https://www.youtube.com/watch?v=aIh2XBS4pr0
1•danebalia•26m ago•1 comments

OpenRockets Foundation Gains Fiscal Sponsorship via the Hack Foundation

https://mag.openrockets.com
1•Matheww•27m ago•1 comments

How I'm Using Local Large Language Models

https://www.jvt.me/posts/2026/02/28/local-ai/
1•zdw•32m ago•0 comments

Qwen3.5-35B-A3B-GGUF from Unsloth

https://huggingface.co/unsloth/Qwen3.5-35B-A3B-GGUF
1•vincirufus•32m ago•0 comments

Monitor the Situation

https://monitor-the-situation.com/middle-east
3•bookofjoe•32m ago•0 comments

Claw21 – Blackjack for Agents

https://clawhub.ai/stainlu/blackjack
1•stainlu•34m ago•1 comments

C-Mera

https://github.com/kiselgra/c-mera
1•tosh•36m ago•0 comments

Attention Military Members and Veterans: You Have Been Defrauded

https://beendefrauded.substack.com/p/attention-military-members-and-veterans
1•htwatchdogs•40m ago•0 comments

The March of Nines

https://sruthipoddutur.substack.com/p/the-march-of-nines-part-1
9•sruthipsr•40m ago•0 comments

Kbtz: A task tracker and TUI workspace for coding agents

https://github.com/virgil-king/kbtz
1•ostrich_network•41m ago•0 comments

Switch between different Claude Code profiles

https://github.com/kimrgrey/claudini
1•kimrgrey•42m ago•0 comments

Wish List: SSH Keys in Passwords

https://sixcolors.com/post/2026/01/wish-list-ssh-keys-in-passwords/
1•watermelon0•43m ago•0 comments

Tablesaw: Java Dataframe and Visualization Library

https://github.com/jtablesaw/tablesaw
1•saikatsg•43m ago•0 comments

Who Will Command the Robot Armies? (2016)

https://idlewords.com/talks/robot_armies.htm
1•diafygi•43m ago•1 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.