]> source.dussan.org Git - gitea.git/commit
Support allowed hosts for webhook to work with proxy (#27655) (#27674)
authorGiteabot <teabot@gitea.io>
Wed, 18 Oct 2023 13:07:20 +0000 (21:07 +0800)
committerGitHub <noreply@github.com>
Wed, 18 Oct 2023 13:07:20 +0000 (15:07 +0200)
commitca4418eff12d92a4da29bba4331451bf6cd0b620
treeca00e6c5ce55ba1c0eb3c78f0680cae27ca537f1
parent80c0c8815203128703eae741e712289393458687
Support allowed hosts for webhook to work with proxy (#27655) (#27674)

Backport #27655 by @wolfogre

When `webhook.PROXY_URL` has been set, the old code will check if the
proxy host is in `ALLOWED_HOST_LIST` or reject requests through the
proxy. It requires users to add the proxy host to `ALLOWED_HOST_LIST`.
However, it actually allows all requests to any port on the host, when
the proxy host is probably an internal address.

But things may be even worse. `ALLOWED_HOST_LIST` doesn't really work
when requests are sent to the allowed proxy, and the proxy could forward
them to any hosts.

This PR fixes it by:

- If the proxy has been set, always allow connectioins to the host and
port.
- Check `ALLOWED_HOST_LIST` before forwarding.

Co-authored-by: Jason Song <i@wolfogre.com>
modules/hostmatcher/http.go
services/webhook/deliver.go
services/webhook/deliver_test.go