frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Setting a wallpaper in less than 250 Kb: A practical guide to reducing Rust's ru

https://www.lgfae.com/posts/2025-11-21-SettingAWallpaperWithLessThan250KB.html
1•fanf2•14s ago•0 comments

Linus and Linus

https://youtu.be/mfv0V1SxbNA?si=d9ocAg9EWneSDRiu
1•sonderotis•14s ago•0 comments

Building the Perfect Linux PC with Linus Torvalds [video]

https://www.youtube.com/watch?v=mfv0V1SxbNA
1•ingve•1m ago•0 comments

Patching Pulse Oximeter Firmware

https://stefan-gloor.ch/pulseoximeter-hack
1•stgl•2m ago•0 comments

Show HN: Solarm – a simple iOS sunrise alarm I made to improve waking up

1•nktskr•3m ago•0 comments

Show HN: Unmarker.it – Client-Side Tool to Disrupt Invisible AI Watermarks

https://www.unmarker.it/
1•ing-norante•4m ago•0 comments

Digital Art of Rafaël Rozendaal

https://www.newrafael.com/internet
1•8organicbits•5m ago•0 comments

David Lerner, Mr. Fix-it of Apple Computers and Tekserve co-founder, dies at 72

https://www.nytimes.com/2025/11/26/technology/personaltech/david-lerner-dead.html
1•bookofjoe•6m ago•0 comments

Program-of-Thought Prompting Outperforms Chain-of-Thought by 15%

https://arxiv.org/abs/2211.12588
1•mkagenius•7m ago•0 comments

Teens build pop-up arcade in Japan [video]

https://www.youtube.com/watch?v=kkbf092Los0
2•Charmunk•7m ago•1 comments

Confidential Compute Open Network

https://cocoon.org
1•jeudesprits•14m ago•0 comments

NixOS 25.11 Released

https://nixos.org/blog/announcements/2025/nixos-2511/
9•trulyrandom•20m ago•0 comments

DEP-18: A proposal for Git-based collaboration in Debian

https://optimizedbyotto.com/post/debian-collaboration-on-git/
1•ottoke•23m ago•1 comments

Don't push AI down our throats

https://gpt3experiments.substack.com/p/dont-push-ai-down-our-throats
23•nutanc•25m ago•5 comments

X's move to show users' location is a great step toward online transparency

https://www.washingtonpost.com/opinions/2025/11/25/elon-musk-x-location-democracy/
3•bookofjoe•25m ago•0 comments

Global Stock Leaderboards Are Ruled by Europe in Rare Dominance

https://www.bloomberg.com/news/articles/2025-11-30/global-stock-leaderboards-are-ruled-by-europe-...
2•layer8•26m ago•1 comments

There is No Quintic Formula [video]

https://www.youtube.com/watch?v=9HIy5dJE-zQ
4•DamnInteresting•26m ago•1 comments

Does 'Laziness' Start in the Brain?

https://www.theguardian.com/books/2025/nov/30/does-laziness-start-in-the-brain-apathy-motivation
5•billybuckwheat•29m ago•1 comments

Extinction rates have *slowed* over the last 100 years

https://royalsocietypublishing.org/doi/10.1098/rspb.2025.1717
2•bilsbie•32m ago•0 comments

The Complete Xbox Ally and Ally X Hands-On Review (Windows vs. Bazzite)

https://boilingsteam.com/complete-xbox-ally-and-ally-x-hands-on-review/
2•ekianjo•33m ago•0 comments

Show HN: I Built Tinyfocus – A Minimal Tool to Help Solo Founders Focus

https://www.tinyfoc.us/landing
2•arlindb•36m ago•0 comments

47.2M Developers Worldwide: Global Trends for 2025

https://www.slashdata.co/post/global-developer-population-trends-2025-how-many-developers-are-there
2•birdculture•40m ago•0 comments

Recent study: typical statins do cause muscle discomfort

https://www.nature.com/articles/s41467-025-66522-0
2•hereme888•41m ago•1 comments

Max Verstappen beats Piastri to take F1 title race to Abu Dhabi GP

https://www.theguardian.com/sport/2025/nov/30/max-verstappen-beats-piastri-to-take-f1-title-race-...
2•tosh•42m ago•0 comments

Writing a Good Claude.md

https://www.humanlayer.dev/blog/writing-a-good-claude-md
5•objcts•45m ago•0 comments

Show HN: AI vs. Real – A simple game I built for guessing real images

https://apps.apple.com/us/app/ai-vs-real/id6754675618
1•aliibnepasha•45m ago•1 comments

Tell HN: ChatGPT has 13B revenue but can't make a working website

3•0xbadcafebee•46m ago•2 comments

Show HN: Schema Pilot – Visual Database Designer with Instant Prisma

1•Punyakrit•50m ago•0 comments

SafeShare – strip tracking parameters from links before you share them

https://github.com/J-AI-71/Supersystem
3•safeshare•54m ago•2 comments

Vector Graphics in Godot Better Than Adobe Flash

https://old.reddit.com/r/godot/comments/1p339f9/vector_graphics_in_godot_better_than_adobe_flash/
1•ShenCiao•56m ago•0 comments
Open in hackernews

CRLF Injection in `–proxy-header` allows extra HTTP headers (CWE-93)

https://hackerone.com/reports/3133379
11•oblivionsage•6mo ago

Comments

blueflow•6mo ago
Check the man-page first. You need to know how a program is supposed to behave before you can know that an observed behavior is off-spec and warrants a bug.
robertlagrant•6mo ago
I don't understand the "This is not supposed to happen". Can someone explain?

To me this is the same as

  --proxy-header "X-Test: hello" --proxy-header "X-Evil: owned"
flotzam•6mo ago
Imagine running

  curl --proxy-header "X-Test: $UNTRUSTED_USER_INPUT"
wang_li•6mo ago
That is not a bug in curl, at most it's a bug in whatever gathered $UNTRUSTED_USER_INPUT.
flotzam•6mo ago
People still expect an API to reject illegal values. Calling the parameter --proxy-header (singular) could lead someone to assume that multiline strings are illegal values, even if there's a note in the docs somewhere saying otherwise.
blueflow•6mo ago
Then the people assuming random things without doing research are to blame, not curl.
flotzam•6mo ago
Apportioning blame doesn't get rid of bugs; misuse resistant APIs do.
blueflow•6mo ago
Reading docs ("research") is essential part of engineering.

Lets ask the question reversed: How did people know in the first place what kind of string they need to give to --proxy-header?

flotzam•6mo ago
> Reading docs ("research") is essential part of engineering.

Sure, but so is safety engineering. Making mechanisms more obvious to use correctly or fail safe if used incorrectly improves outcomes when flawed human beings use them. It also makes them more pleasant to use in general.

Besides, look at the man page in question. It's talking about this in terms of encoding niceties and doesn't even spell out the possibility of deliberate, let alone malicious multiline values:

"curl makes sure that each header you add/replace is sent with the proper end-of-line marker, you should thus not add that as a part of the header content: do not add newlines or carriage returns, they only mess things up for you."

That's inducing a wrong/incomplete mental model of how this parameter works.

blueflow•6mo ago
> doesn't even spell out the possibility of deliberate, ... multiline values

It does for me, as any kind of extra newlines results in a multi-line string.

> ... malicious ...

Like Daniel said, garbage in, garbage out. If you pass user inputs to curl, one should check what curl does with these values and take proper care.

robertlagrant•6mo ago
> do not add newlines or carriage returns, they only mess things up for you

I disagree, but I would say that curl might as well add this as a validation check than a documentation warning.

blueflow•6mo ago
This is explained in the ticket:

  One of the reasons we still allow that is that this "feature" was used quite deliberately by users in the past and I have hesitated to change that for the risk that it will break some users use cases.
robertlagrant•6mo ago
Yes, I'm not sure if I agree with this or not. Those users don't have to upgrade. But obviously I'm not maintaining a key tool for the world. It's just my opinion.
soraminazuki•6mo ago
One shouldn't construct shell commands from untrusted user input in the first place unless they know exactly what they're doing and is aware of all the pitfalls. It's the worst possible tool to be using if the aim is to avoid security issues with minimal effort. Debating about this particular curl quirk distracts from the bigger issue IMO.
robertlagrant•6mo ago
> That is not a bug in curl, at most it's a bug in whatever gathered $UNTRUSTED_USER_INPUT.

But that could just contain the bad header only, could it not?

jeroenhd•6mo ago
I suppose it kind of depends. I agree with the curl team here that this is a case of garbage in/garbage out, but I can imagine this going wrong with a binary protocol like HTTP2 on the front and a text protocol like HTTP 1.1 behind a reverse proxy. The \r\n will make it to the proxy as a separate header, but will be turned into two headers on the upstream.

That said, this would be a (reverse) proxy vulnerability, not one in curl.

ale42•6mo ago
I'm not sure where is the security issue here. As already noted, one can just put several --proxy-header arguments, so the functionality is equivalent.

The only way this would do something unexpected (and not necessarily dangerous besides breaking the service) would be if the curl command would be used in a scenario like: (1) curl is used by some script to access some API or other URL, (2) a user can configure the script to give a specific value to an header, let's say an authentication token or similar, but the user can't directly alter the curl command (e.g. because they can only change URL and TOKEN with a web interface). Here the user would be able to add an header IF the script is not properly sanitizing the input (so the supposed security issue IMHO would be in the script), but if adding an additional header breaks security, the underlying system has a problem too...

In a very far-stretched scenario, one can possibly add two CRLFs and have the rest of the header (if any) considered by the server as data. IF the request is a POST/PUT/... request, and IF the server returns (or allows later access to) the data, and IF the attacker manipulating the supposedly-restricted single-header can see the output of the call (or retrieve the saved data), then we'd have an information disclosure issue. Would it disclose anything sensitive? Not sure, unless there's an auth token or something AFTER the header. And again, I'd rather incriminate the curl caller for not sanitizing the input if this happens.