frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Stof Playground

https://play.stof.dev
1•cj_cummings•59s ago•0 comments

Show HN: A New Mnemonic Scheme – Seedless, Passphrase-Sealed, Builtin Multichain

https://github.com/mscikdf/mscikdf-playground
1•mscikdf•1m ago•0 comments

Introducing GovOps

https://gluufederation.medium.com/introducing-govops-02063b72db4b
1•idm_guru•2m ago•0 comments

Drawing with Chaos

https://yberreby.com/posts/strangedraw/
1•yberreby•2m ago•0 comments

The Shai-Hulud 2.0 npm worm: analysis, and what you need to know

https://securitylabs.datadoghq.com/articles/shai-hulud-2.0-npm-worm/
1•saikatsg•5m ago•0 comments

Show HN: Lissajous Curve Music Visualization

https://github.com/ThatXliner/ljv
1•thatxliner•6m ago•0 comments

Show HN: Interpret your Liver Labs like a top Longevity Clinic would

https://www.longevity-tools.com/liver-function-interpreter
1•zsolt224•6m ago•0 comments

Master Spring Data AOT in IntelliJ Idea

https://blog.jetbrains.com/idea/2025/11/spring-data-aot/
1•quapster•7m ago•0 comments

The role of masturbation in relieving symptoms associated with menopause

https://lww.com/_layouts/1033/OAKS.Journals/Error/JavaScript.html
1•rclkrtrzckr•7m ago•0 comments

The Ruby community needs to know what happened last week at SF Ruby Conf

https://blog.adrianthedev.com/sf-ruby-2025-and-the-thousand-people-framework
1•nonconstant•8m ago•0 comments

Why Are You Productive for "Only" 5-6 Hours Each Day?

https://ashleyjanssen.com/why-are-you-productive-for-only-5-6-hours-each-day/
1•speckx•10m ago•0 comments

A Gentle, Incrementally Comprehensive Introduction to GPUs

https://eyeamansh.substack.com/p/a-gentle-incrementally-comprehensive
1•anshyyy•12m ago•0 comments

Vendor lock-in vs. open metadata architecture? What works?

https://medium.com/datastrato/if-youre-not-all-in-on-databricks-why-metadata-freedom-matters-35cc...
1•wey-gu•12m ago•1 comments

Cloudflare outage should not have happened

https://ebellani.github.io/blog/2025/cloudflare-outage-should-not-have-happened-and-they-seem-to-...
4•b-man•13m ago•0 comments

Fox News hires Palantir to build AI newsroom tools

https://www.axios.com/2025/11/18/fox-news-palantir-ai-newsroom-tools
3•doener•14m ago•0 comments

From Software Engineer to AI Environment Architect

https://infini-ai-lab.github.io/ai-environment-architect/
1•lovecoding_•16m ago•0 comments

Fears About A.I. Prompt Talks of Super PACs to Rein in the Industry

https://www.nytimes.com/2025/11/25/us/politics/ai-super-pac-anthropic.html
3•JumpCrisscross•17m ago•0 comments

Chinese Regulators May Kill Retractable Car Door Handles

https://hackaday.com/2025/11/26/chinese-regulators-may-kill-retractable-car-door-handles-that-nev...
2•speckx•17m ago•0 comments

Jayne in Brief

https://pgadey.ca/experimental/jayne-latex2html/
1•surprisetalk•19m ago•0 comments

Containership Dali Contact with Francis Scott Key Bridge [video]

https://www.youtube.com/watch?v=bu7PJoxaMZg
1•surprisetalk•19m ago•0 comments

More than half of new articles on the internet are being written by AI

https://theconversation.com/more-than-half-of-new-articles-on-the-internet-are-being-written-by-a...
3•geox•19m ago•1 comments

'Sovereign AI' Takes Off as Countries Seek to Avoid Overreliance on Superpowers

https://www.wsj.com/tech/ai/sovereign-ai-takes-off-as-countries-seek-to-avoid-overdependence-on-s...
1•JumpCrisscross•19m ago•0 comments

Date Me Directory

https://dateme.directory/browse
1•surprisetalk•19m ago•0 comments

Crick: A Mind in Motion review, the charismatic philanderer who changed science

https://www.theguardian.com/books/2025/nov/25/crick-a-mind-in-motion-by-matthew-cobb-review-the-c...
1•Lio•22m ago•0 comments

React Challenges – Improving the typical "React challenge platform" experience

https://www.reactchallenges.com
1•DuffmanCC•23m ago•1 comments

Launching the Julia Security Working Group

https://www.julialang.org/blog/2025/11/launching-security-wg/
1•postflopclarity•23m ago•0 comments

Slop Detective – Fight the Slop Syndicate

https://slopdetective.kagi.com/
2•speckx•24m ago•0 comments

The Chinese periodic table goes hard [video]

https://www.youtube.com/watch?v=8ol7DsPnHcE
1•surprisetalk•24m ago•0 comments

Protection of dogs and cats: deal on EU rules to stop abuse

https://www.europarl.europa.eu/news/en/press-room/20251121IPR31539/protection-of-dogs-and-cats-de...
3•JumpCrisscross•26m ago•0 comments

Extract structured information from Hacker News and keep in sync with Postgres

https://cocoindex.io/blogs/custom-source-hackernews
1•badmonster•27m 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.