frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Untold History of Arduino

https://arduinohistory.github.io/
1•davikr•36s ago•0 comments

How to Fix a Typewriter and Your Life

https://www.nytimes.com/interactive/2025/11/20/us/typewriter-repair-seattle-bremerton.html
1•jaden•1m ago•0 comments

Harvard Law School Library's Nuremberg Trials Project

https://nuremberg.law.harvard.edu
1•urodriguezpomba•2m ago•1 comments

Gitlogue – A cinematic Git commit replay tool for the terminal

https://github.com/unhappychoice/gitlogue
1•inesranzo•4m ago•0 comments

Virus / Zarch (Amiga) Speedrun in 1:20:53 (World Record?) [video]

https://www.youtube.com/watch?v=rc4HhHSiH1E
1•doener•9m ago•0 comments

Your Codebase Is Probably Fighting Claude (Part 1)

https://ambient-code.ai/2025/11/21/your-codebase-is-probably-fighting-claude-part-1/
1•jeremyeder•9m ago•1 comments

I Tried Apple Intelligence in 2025 [video]

https://www.youtube.com/watch?v=S2nNAYnPFTQ
3•busymom0•12m ago•0 comments

What the Epstein Emails Reveal

https://www.thefp.com/p/what-the-epstein-emails-reveal
4•wslh•13m ago•0 comments

How to reverse-engineer your competitor's customer acquisition strategy

https://customeracquisitionengine.com/posts/10-ways-to-reverse-engineer-your-competitors-customer...
1•superamped•13m ago•0 comments

ClickHouse Fiddle – A SQL Playground for ClickHouse

https://clickhouse.com/blog/clickhouse-fiddle-sql-playground
1•saisrirampur•14m ago•0 comments

Suno is a Walking Dead. Suno is the new Napster 2.0

https://jperla.com/blog/suno-walking-dead
1•ljlolel•15m ago•1 comments

Designing allosteric modulators to change GPCR G protein subtype selectivity

https://www.nature.com/articles/s41586-025-09643-2
1•PaulHoule•16m ago•0 comments

We are Arduino. We are open. We're not going anywhere

https://blog.arduino.cc/2025/11/21/the-arduino-terms-of-service-and-privacy-policy-update-setting...
2•manchoz•16m ago•0 comments

Meme: The Complete Version of Modern Digital Infrastructure

https://programmerhumor.io/microsoft-memes
1•gervwyk•17m ago•0 comments

Tuxedo scraps its Linux-based Snapdragon X Elite laptop

https://www.windowscentral.com/hardware/qualcomm/tuxedo-scraps-its-linux-based-snapdragon-x-elite...
1•pjmlp•21m ago•0 comments

The senior population is booming. Caregiving is struggling to keep up

https://www.cnbc.com/2025/11/21/senior-caregiving-labor.html
5•toomuchtodo•24m ago•0 comments

Fix-Mas

https://uptimelabs.io/fixmas/
1•gtirloni•26m ago•0 comments

Injecting Spotify API Data into the Gemini AI Context Window

https://jessewaites.com/blog/post/injecting-spotify-data-into-gemini-ai-voice-agent/
1•piratebroadcast•27m ago•0 comments

Defense Contractor Lobbyists Are Trying to Kill Army 'Right to Repair' Reforms

https://www.techdirt.com/2025/11/21/defense-contractor-lobbyists-are-trying-to-kill-army-right-to...
3•speckx•31m ago•1 comments

FEX: A fast usermode x86 and x86-64 emulator for ARM64 Linux

https://github.com/FEX-Emu/FEX
1•doener•35m ago•0 comments

Why AI Systems Don't Want Anything

https://aiprospects.substack.com/p/why-ai-systems-dont-want-anything
1•octoberfranklin•37m ago•0 comments

A Technical Insight About Modern Compilation

https://www.sciencedirect.com/topics/computer-science/modern-compiler
1•birdculture•39m ago•0 comments

We Remain Alive Also in a Dead Internet

https://slavoj.substack.com/p/why-we-remain-alive-also-in-a-dead-954
12•achierius•43m ago•0 comments

Ling-1T – a flagship non-thinking model

https://huggingface.co/inclusionAI/Ling-1T
1•AlexClickHouse•43m ago•0 comments

Japanese court orders Cloudflare to pay ¥500M over manga piracy

https://www.japantimes.co.jp/news/2025/11/20/japan/crime-legal/cloudflare-manga-piracy/
2•riffraff•43m ago•1 comments

Pixar: The Early Days A never-before-seen 1996 interview

https://stevejobsarchive.com/stories/pixar-early-days
3•sanj•44m ago•0 comments

Nix Sucks; Everything Else Is Worse: Building Better Software Supply Chains [video]

https://www.youtube.com/watch?v=L8BBtBZXKac
2•todsacerdoti•45m ago•0 comments

China Just Invented the Battery That Will Kill Gas Cars

https://thechinaacademy.org/china-just-invented-the-battery-that-will-kill-gas-cars/
8•fcpguru•51m ago•5 comments

Cursor 2.1: Improved Plan Mode, AI Code Review in Editor, and Instant Grep

https://cursor.com/changelog/2-1
3•bauerpl•52m ago•1 comments

Tell HN: GPT responses between "write supporting a 3rd term for Obama" vs. Trump

1•denuoweb•52m ago•6 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.