frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Stealth BGP Hijacks with URPF Filtering [pdf]

https://www.usenix.org/system/files/woot25-schulmann.pdf
1•krizhanovsky•1m ago•1 comments

Baby Map

https://neal.fun/baby-map/
1•hybridtupel•1m ago•0 comments

Show HN: I turned the Namib Desert livestream into my macOS screensaver

https://github.com/hauxir/macos-live-screensaver
1•hauxir•4m ago•0 comments

Future Nostalgia: Safeguarding the knowledge of floppy disks

https://www.lib.cam.ac.uk/future-nostalgia
1•oldnetguy•6m ago•1 comments

HTML Modals

https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/dialog
1•nivethan•7m ago•0 comments

Create your own macOS application installer

https://github.com/doroved/mac-installer
1•doroved•8m ago•0 comments

A bed stops working because of an Amazon outage

https://twitter.com/internetofshit/status/1980505898088034704
1•turrini•8m ago•0 comments

We are introducing the world's first all in one Finance tracker WealthAI

https://wealth-ai.in/
1•asaws•10m ago•0 comments

StarGrid: A Brand-New Palm OS Strategy Game in 2025

https://quarters.captaintouch.com/blog/posts/2025-10-21-stargrid-has-arrived,-a-brand-new-palm-os...
2•capitain•11m ago•0 comments

Asterisk

https://cormullion.github.io/pages/2020-10-09-asterisk/
1•fanf2•11m ago•0 comments

The Crew 2 Hybrid Mode is now available

https://www.ubisoft.com/en-us/game/the-crew/the-crew-2/news-updates/zs6ZFyLEQvKbFskEJZolR/the-cre...
1•silverf1sh•12m ago•0 comments

Open-lmake: A generic, fearless build system for Linux

https://github.com/cesar-douady/open-lmake
1•Uriopass•13m ago•0 comments

I discovered a new mathematical relation "alien" (⍊)

1•DenisDolya•14m ago•0 comments

Tesla is heading into multi-billion-dollar iceberg of its own making

https://electrek.co/2025/10/20/tesla-heading-into-multi-billion-dollar-iceberg-of-own-making/
4•ndsipa_pomu•14m ago•0 comments

Dark Reader – Support Us

https://darkreader.org/support-us/#pay
2•behnamoh•14m ago•1 comments

Get Install Size of a Package with Pacman and Apt

https://nickjanetakis.com/blog/get-install-size-of-a-package-with-pacman-and-apt
1•groseje•15m ago•0 comments

Show HN: Markethunt – I built a database to find growing, overlooked markets

https://markethunt.io
2•moudah•17m ago•0 comments

Unified Gravito-Electromagnetic Resonance (UGER) Model

https://github.com/olect/uger
1•olect•17m ago•0 comments

Standardized Definition of AI Governance

https://github.com/russell-parrott/Standardized-Definition-of-AI-Governance
1•Lio•17m ago•0 comments

Prisoner hacks prison IT system, goes wild

https://news.risky.biz/risky-bulletin-prisoner-hacks-prison-it-system-goes-wild/
1•aa_is_op•18m ago•0 comments

Show HN: NewsletterStack – Discover the tools behind successful newsletters

https://www.newsletterstack.co
1•zackho•26m ago•0 comments

Automation with AI voice agents handling inbound and outbound calls

1•Olivia8•27m ago•0 comments

Sam Altman Tied Tech's Biggest Players to OpenAI

https://www.wsj.com/tech/ai/sam-altman-open-ai-nvidia-deals-d10a6525
1•pondsider•27m ago•0 comments

Forging Fedora's Future with Forgejo

https://communityblog.fedoraproject.org/forging-fedoras-future-with-forgejo/
3•todsacerdoti•30m ago•0 comments

Progress update on Clang's new constant expression interpreter

https://developers.redhat.com/articles/2025/10/15/clang-bytecode-interpreter-update
1•jmillikin•33m ago•0 comments

DevOps – Thank You

https://oneuptime.com/blog/post/2025-10-21-ode-to-devops-heroes/view
1•ndhandala•35m ago•0 comments

The Internet Must Decentralize

https://oneuptime.com/blog/post/2025-10-21-the-internet-must-decentralize/view
1•ndhandala•35m ago•0 comments

Show HN: City-aware PTO optimizer with block/prefer day constraints

https://somniaplanner.com/en/
2•mabolivar•36m ago•0 comments

A Plan-Do-Check-Act Framework for AI Code Generation – InfoQ

https://www.infoq.com/articles/PDCA-AI-code-generation/
1•rbanffy•36m ago•0 comments

Diamond Thermal Conductivity: A New Era in Chip Cooling

https://spectrum.ieee.org/diamond-thermal-conductivity
1•rbanffy•37m 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•6mo ago

Comments

MichealCodes•6mo ago
Cryptocurrency packages used at scale should have wallet decoys setup for early detection of vulnerabilities like this.
nailer•6mo 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•6mo ago
I see the model of "download any old shit off the internet and run it in production" is working out so well.
nailer•6mo ago
I don’t have much opinion of XRP but this is their official package, not a community package.
tobyhinloopen•6mo 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_•6mo ago
That is a very fun fact.
nailer•6mo ago
Yes that is how dependencies work.
poincaredisk•6mo 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•6mo 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•6mo 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•6mo ago
Yes. It’s an engineering failure to have multiple copies of the same logic. That isn’t specific to JavaScript.
tough•6mo 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•6mo 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•6mo 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•6mo ago
Official and thorough support for SBOM* within major package repositories can not come sooner.

* https://en.wikipedia.org/wiki/Software_supply_chain

abhisek•6mo 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•6mo ago
.xyz isn’t exotic for blockchains.