-
Notifications
You must be signed in to change notification settings - Fork 17.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmd/go: add GOINSECURE for insecure dependencies #32966
Comments
What's the use-case for |
The only situation I can think of is if a user does not have permission to modify their system trust. Pythons pip tool has similar options (https://pip.pypa.io/en/stable/reference/pip/#general-options), trusted-host is similar to GO_INSECURE and cert similar to GO_TRUST. |
Second this. Ran into an issue using Athens go proxy because it uses go mod download and that doesn't support --insecure. |
I am in favor of
I'd like to hear more support for the use case before introducing complexity for it. (But OTOH I don't want users reverting to GOINSECURE when unnecessary.) |
Ah interesting, I hadn’t appreciated that complexity. I wonder if GOTRUST could be of some form like host1:certfile1,host2:certfile2,... so you could then choose a custom cert for specific hosts; and then it would only use that cert for access to that host and not touch system ones? The env variable looks a bit more complex though. I agree that forcing a users to use GOINSECURE to access a resource |
A usecase for GOINSECURE is that the package is hosted on an Intranet. Is it possible to add a switch to allow inscure fetch for ALL intranet hosted packages? |
@xrfang - If all the intranet module sources share a common domain, e.g foo.company.org, bar.company.org then you’d just set it to *.company.org. |
@witchard my suggestion is not based on domain matching, but by IP address, if any domain is resolved to internal IPs, or a specific CIDR range, then it is considered internal. I personally think it is not hard to implement, and might be useful. |
@xrfang oh I see, I guess that could work - so you’d put something like 192.168.1.0/24 in GOINSECURE? I wonder if anything similar has been considered for GONOSUMDB and GONOPROXY? I feel like the go team would probably want it to be consistent. |
That would not be secure. DNS resolution is ordinarily unsecured, so with such a configuration option enabled all an attacker would have to do to downgrade security for a package would be to fake its IP address. It's also unclear to me what use cases that addresses that can't be addressed with a GOINSECURE list. |
Based on the comments so far then, would it make sense to proceed with just GOINSECURE? GOINSECURE would be defined as: a comma separated list of hostnames (with globs) where insecure fetches (either over https due to untrusted authority, or over http) are allowed. Example: GOINSECURE=foo.com,*.bar.com. GOTRUST and anything based on ip subnets out of scope for now. |
@witchard this means, to achieve what I want, I just set GOTRUST=192.168.0.0/24, and leave GOINSECURE empty. Then any package repo that resolve to that ip range will be considered trusted, and allow an http fetch? @FiloSottile yes it is insecure, but I don't think it will be even more insecure to specify ip range than to specify package names. Both relies on DNS anyway. |
@xrfang what @FiloSottile is saying is that a malicious actor on your network could modify DNS to point github.com at a local IP and then (if you had GOINSECURE for local IPs) they could get control of your packages from github.com. This wouldn’t be good and so having a blanket setting for local IPs is probably not a good idea. I.e. it is less secure to allow IP ranges in GOINSECURE. GOINSECURE is essentially saying “I know packages from this domain are not coming to me over a trusted channel”. Therefore a malicious actor on your network could give you malicious packages for that domain, but for that domain only - and other packages from other domains are still protected. As such the only way you’d achieve what you want would only be to put all the domains for your local packages in GOINSECURE I’m afraid. |
@witchard OK thanks for pointing out. I didn't notice this possibility. However, I still consider that allow GOINSECURE to specify ip ranges is useful, provided that the implication is well documented. Its up to the core team to decide. |
It seems like the discussion here has converged on (1) adding GOINSECURE and (2) not adding GOTRUST. Is that accurate? Thanks. |
Yes that’s my understanding. What needs to happen next? I’m willing to put some time into developing the feature but might need some pointers towards the right areas of the code to look at. |
what about add a git+ssh vcs path pattern in cmd/go/internal/get/vcs.go? A dynamic vcs path parser
|
@wuxc, we want to move toward fewer hard-coded paths in the |
Using the .git suffix does actually help in my situation, and removes most of the need for GOINSECURE for my use case. This in conjunction with git url rewriting (https://www.jvt.me/posts/2019/03/20/git-rewrite-url-https-ssh/) enables me to import something like go.company.org/foo/bar.git which actually clones from ssh://long.internal.boring.git.url/foo/bar.git. The one annoying thing about this is that the git is part of the module path which (a) looks ugly, and (b) becomes part of the name for main binaries installed with go install. I wonder if something like GONOPROXY could be extended so that you could specify the vcs type, in this example: GONOPROXY=git:go.company.org. |
@witchard, |
Yes, fair enough. This is all just making me wonder that if there were ways to express custom module-path to repo mappings then perhaps the need for insecure fetch disappears somewhat. The current mechanism for custom module base to repo mappings (html meta tags at a trusted https custom domain) is challenging to meet in corporate environments with tightly controlled networks. GOINSECURE allows us to relax some of that by removing the requirement for trusted https, but some way to specify explicit mappings might allow us to not need to have GOINSECURE at all. Would it make sense for me to open a separate issue on this subject, or is it something that we wouldn’t want to consider? |
You can open a separate issue if you like, but just to set expectations I doubt that we will go that route. (We already have one mechanism for setting up custom import paths, so the bar for adding another should be very high — we don't add redundancy lightly.) |
Ok, I’ll leave it for now :-). What is the next step for progressing with this proposal? |
No new comments in the past week, so accepting. |
Enables insecure fetching of dependencies whos path matches those specified in the enironment variable GOINSECURE. Fixes golang#32966
Change https://golang.org/cl/205238 mentions this issue: |
Just a thought after an initial implementation on this... I think it makes sense that setting GOINSECURE should imply GONOPROXY. As insecure fetch implies you are accessing the resource directly. Does this make sense? |
Enables insecure fetching of dependencies whos path matches those specified in the enironment variable GOINSECURE. Fixes golang#32966
Enables insecure fetching of dependencies whos path matches those specified in the enironment variable GOINSECURE. Fixes golang#32966
Enables insecure fetching of dependencies whos path matches those specified in the enironment variable GOINSECURE. Fixes golang#32966
@witchard may be an outdated question but what version of go has this I am on
|
@dayadev it's going to be in Go 1.14, so you can use golang.org/dl/gotip to try it (but be warned that the dev tree is not stable). |
@FiloSottile Thank you! |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
What I'm trying to say is that I would expect GOINSECURE to work in that case but it doesn't and it's not obvious for me why not. |
@arvenil GOINSECURE applies to module import paths, not to the URL they are fetched from. That is intentional, because its intended use is for when a certain subset of modules are fetched over secure connections (like a VPN) without HTTPS. Anyway, your issue should not require GOINSECURE, and instead you should find a way to make HTTPS verification work as expected. The resources @bcmills shared can help you with that. |
As discussed in #32104, #31741 and #27332; there is sometimes a need for users to fetch dependencies in an insecure manner (e.g. where dependencies are on servers with certificates that are not trusted by the system, or where the server is not https at all). The current
go get
command supports a-insecure
flag for this use-case; however this is not supported by the newgo mod
commands. The-insecure
flag is probably overkill in most cases and could lead to users fetching dependencies insecurely by accident.I propose the addition of two new environment variables that would be used by all commands fetching dependencies. The first of these would provide the go tools with additional CA certificates to trust (in situations where the user is unable to modify the system trust, or where they only want to trust a certificate for the duration of the go command). The second would list servers where insecure fetching is allowed. For example, these could be:
GOTRUST=pathToCA1.pem,pathToCA2.pem
- Defines a comma separated list of CA certificate files to trust along side the system ones.GOINSECURE=foo.com,*.bar.com
- Defines a comma separated list of hostnames (possibly with globs) where insecure fetches (I guess either over https due to untrusted authority, or over http) are allowed.If this were implemented, then I would also propose the removal of the
-insecure
flag from go get.I would be willing to work on this issue if it were accepted, but I don't really know where to start!
The text was updated successfully, but these errors were encountered: