frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: My-app.engineer – Deploy your vibe-coded SaaS in minutes

https://my-app.engineer/
1•myappengineer•4m ago•0 comments

Google fined €403M by Irish data watchdog over location data

https://www.rte.ie/news/business/2026/0921/1592330-google-fined-403m-by-dpc/
1•austinallegro•4m ago•0 comments

Mac Studio M5 Max review: The best reason to run AI locally

https://tbreak.com/mac-studio-m5-max-review-local-ai/
1•throwfaraway4•4m ago•0 comments

Super El Niño bursts through temperature record months ahead of peak

https://www.theguardian.com/environment/2026/sep/21/super-el-nino-temperature-record
1•helsinkiandrew•5m ago•0 comments

When Claude CLI asks for feedback, responding authorizes conversation capture

1•mmaunder•6m ago•0 comments

It's Raining Boxes: Amazon Drones Overwhelm a Texas Suburb

https://www.nytimes.com/2026/09/21/us/politics/amazon-drone-delivery-texas.html
1•ilamont•6m ago•0 comments

Jev, Prolog, Pi, and the dream of probabilistic logic programming

https://deepclause.substack.com/p/jev-prolog-pi-and-the-dream-of-probabilistic
1•arto•7m ago•0 comments

JevEmon: Typed Decisions over GBA RAM to Walk Pokémon FireRed

https://github.com/daniel4x/JevEmon
1•alfasiii•7m ago•0 comments

I made an LLM using 521 Jev models

https://jevs.chat/
1•skillseeddev•8m ago•1 comments

We Write Code by Hand

https://handcraftedcode.org/
1•batmang•9m ago•0 comments

Show HN: I built a camera that you talk with instead of seeing your own face

https://www.makiroll.app
1•madsmadsdk•10m ago•0 comments

I Don't Want to Read What You Didn't Write

https://blog.colinbreck.com/i-dont-want-to-read-what-you-didnt-write/
1•cyndunlop•11m ago•0 comments

Bunker mentality: the Nordics' cold war shelters being given a new lease of life

https://www.theguardian.com/artanddesign/2026/sep/21/bunker-mentality-nordics-cold-war-shelters-s...
1•bookofjoe•13m ago•0 comments

How to Bring a Geothermal Well Back from the Dead

https://www.wired.com/story/zanskar-geothermal-well-back-from-dead/
1•jahnu•13m ago•0 comments

A unified evolutionary explanation of Parkinson's disease

https://pubmed.ncbi.nlm.nih.gov/42586095/
1•e12e•16m ago•1 comments

Show HN: I analysed 169,123 Chess Olympiad moves and gave out 132 silly awards

https://www.olympiadstats.fun
2•pompomltd•16m ago•0 comments

ChatGPT Is a Nightmare (A Lesson on Bad UX)

https://saasexperts.co/blog/how-to-use-chatgpt-desktop-bad-ux/
1•feech•17m ago•2 comments

Abolish Patents

https://gomakethings.com/articles/abolish-patents/
2•surprisetalk•17m ago•0 comments

Website toolbox with super simple AI builder

https://nanomo.app/login
1•mountain-hawk•18m ago•0 comments

Visions in Uzbekistan

https://animationobsessive.substack.com/p/visions-in-uzbekistan-828
2•vinhnx•18m ago•0 comments

How to Make Your AI Agent EU AI Act Compliant: A Practical Guide

https://medium.com/@MirArshadTalpur/how-to-make-your-ai-agent-eu-ai-act-compliant-a-practical-gui...
1•Arshad-Talpur•22m ago•0 comments

Show HN: Sokkan – an HITL Claude Code cockpit that remembers, at session startup

https://github.com/ninabot-ch/sokkan
1•micaudn•24m ago•1 comments

Show HN: Open-source shared memory for teams of AI coding agents

https://github.com/motif-Labs/motif
1•merthdotxyz•24m ago•0 comments

Googlebook: The laptop your Android phone has been waiting for

https://blog.google/products-and-platforms/devices/googlebook/pre-order-googlebook/
2•thm•27m ago•1 comments

Australia considers banning the use of smart glasses in government buildings

https://www.reuters.com/business/media-telecom/australia-considers-banning-use-smart-glasses-gove...
1•MC995•29m ago•1 comments

You're Already a Meat Proxy

https://twitter.com/obie/status/2101779116056088732
2•obiefernandez•30m ago•0 comments

Et Tu, MacBook? Unprivileged Keystroke Inference via Built-In IMU Side Channel

https://arxiv.org/abs/2609.21569
3•sbulaev•30m ago•0 comments

DeepSeek is training a 2T-parameter model and plans to build an 8T-parameter one

https://twitter.com/wallstengine/status/2101982843656388644
3•theanonymousone•31m ago•0 comments

OpenAI Weighs Funding Round at over $1.2T Valuation

https://www.bloomberg.com/news/articles/2026-09-15/openai-weighing-funding-round-at-over-1-2-tril...
2•dgellow•33m ago•0 comments

HP Googlebook 14c

https://www.hp.com/us-en/shop/pdp/hp-googlebook-14c-cf0815nr
2•theanonymousone•34m ago•0 comments
Open in hackernews

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

https://hackerone.com/reports/3133379
11•oblivionsage•1y ago

Comments

blueflow•1y 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•1y 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•1y ago
Imagine running

  curl --proxy-header "X-Test: $UNTRUSTED_USER_INPUT"
wang_li•1y ago
That is not a bug in curl, at most it's a bug in whatever gathered $UNTRUSTED_USER_INPUT.
flotzam•1y 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•1y ago
Then the people assuming random things without doing research are to blame, not curl.
flotzam•1y ago
Apportioning blame doesn't get rid of bugs; misuse resistant APIs do.
blueflow•1y 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•1y 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.

jeroenhd•1y 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•1y 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.

blueflow•1y 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•1y 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•1y 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•1y 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•1y 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•1y 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?