Skip to content

Commit a6d0a9f

Browse files
Support only HTTPS for remote upgrade PGP (#2268)
Support only HTTPS for remote upgrade PGP (#2268)
1 parent e26754d commit a6d0a9f

10 files changed

+22
-24
lines changed

_meta/config/common.p2.yml.tmpl

-3
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,6 @@ inputs:
114114
# target_directory: "${path.data}/downloads"
115115
# # timeout for downloading package
116116
# timeout: 120s
117-
# # file path to a public key used for verifying downloaded artifacts
118-
# # if not file is present agent will try to load public key from elastic.co website.
119-
# pgpfile: "${path.data}/elastic.pgp"
120117
# # install_path describes the location of installed packages/programs. It is also used
121118
# # for reading program specifications.
122119
# install_path: "${path.data}/install"

_meta/config/common.reference.p2.yml.tmpl

-3
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,6 @@ inputs:
6565
# target_directory: "${path.data}/downloads"
6666
# # timeout for downloading package
6767
# timeout: 120s
68-
# # file path to a public key used for verifying downloaded artifacts
69-
# # if not file is present agent will try to load public key from elastic.co website.
70-
# pgpfile: "${path.data}/elastic.pgp"
7168
# # install_path describes the location of installed packages/programs. It is also used
7269
# # for reading program specifications.
7370
# install_path: "${path.data}/install"

_meta/config/elastic-agent.docker.yml.tmpl

-3
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,6 @@ inputs:
6464
# target_directory: "${path.data}/downloads"
6565
# # timeout for downloading package
6666
# timeout: 120s
67-
# # file path to a public key used for verifying downloaded artifacts
68-
# # if not file is present agent will try to load public key from elastic.co website.
69-
# pgpfile: "${path.data}/elastic.pgp"
7067
# # install_path describes the location of installed packages/programs. It is also used
7168
# # for reading program specifications.
7269
# install_path: "${path.data}/install"

_meta/elastic-agent.fleet.yml

-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ fleet:
1313
# target_directory: "${path.data}/downloads"
1414
# # timeout for downloading package
1515
# timeout: 120s
16-
# # file path to a public key used for verifying downloaded artifacts
17-
# # if not file is present Elastic Agent will try to load public key from elastic.co website.
18-
# pgpfile: "${path.data}/elastic.pgp"
1916
# # install_path describes the location of installed packages/programs. It is also used
2017
# # for reading program specifications.
2118
# install_path: "${path.data}/install"

_meta/elastic-agent.yml

-3
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,6 @@ inputs:
6464
# target_directory: "${path.data}/downloads"
6565
# # timeout for downloading package
6666
# timeout: 120s
67-
# # file path to a public key used for verifying downloaded artifacts
68-
# # if not file is present agent will try to load public key from elastic.co website.
69-
# pgpfile: "${path.data}/elastic.pgp"
7067
# # install_path describes the location of installed packages/programs. It is also used
7168
# # for reading program specifications.
7269
# install_path: "${path.data}/install"

elastic-agent.docker.yml

-3
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,6 @@ inputs:
6464
# target_directory: "${path.data}/downloads"
6565
# # timeout for downloading package
6666
# timeout: 120s
67-
# # file path to a public key used for verifying downloaded artifacts
68-
# # if not file is present agent will try to load public key from elastic.co website.
69-
# pgpfile: "${path.data}/elastic.pgp"
7067
# # install_path describes the location of installed packages/programs. It is also used
7168
# # for reading program specifications.
7269
# install_path: "${path.data}/install"

elastic-agent.reference.yml

-3
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,6 @@ inputs:
7171
# target_directory: "${path.data}/downloads"
7272
# # timeout for downloading package
7373
# timeout: 120s
74-
# # file path to a public key used for verifying downloaded artifacts
75-
# # if not file is present agent will try to load public key from elastic.co website.
76-
# pgpfile: "${path.data}/elastic.pgp"
7774
# # install_path describes the location of installed packages/programs. It is also used
7875
# # for reading program specifications.
7976
# install_path: "${path.data}/install"

elastic-agent.yml

-3
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,6 @@ inputs:
120120
# target_directory: "${path.data}/downloads"
121121
# # timeout for downloading package
122122
# timeout: 120s
123-
# # file path to a public key used for verifying downloaded artifacts
124-
# # if not file is present agent will try to load public key from elastic.co website.
125-
# pgpfile: "${path.data}/elastic.pgp"
126123
# # install_path describes the location of installed packages/programs. It is also used
127124
# # for reading program specifications.
128125
# install_path: "${path.data}/install"

internal/pkg/agent/application/upgrade/artifact/download/verifier.go

+18
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import (
1313
"io"
1414
"io/ioutil"
1515
"net/http"
16+
"net/url"
1617
"os"
1718
"path/filepath"
1819
"strings"
@@ -176,7 +177,24 @@ func PgpBytesFromSource(source string, client http.Client) ([]byte, error) {
176177
return nil, errors.New("unknown pgp source")
177178
}
178179

180+
func CheckValidDownloadUri(rawURI string) error {
181+
uri, err := url.Parse(rawURI)
182+
if err != nil {
183+
return err
184+
}
185+
186+
if !strings.EqualFold(uri.Scheme, "https") {
187+
return fmt.Errorf("failed to check URI %q: HTTPS is required", rawURI)
188+
}
189+
190+
return nil
191+
}
192+
179193
func fetchPgpFromURI(uri string, client http.Client) ([]byte, error) {
194+
if err := CheckValidDownloadUri(uri); err != nil {
195+
return nil, err
196+
}
197+
180198
resp, err := client.Get(uri)
181199
if err != nil {
182200
return nil, err

internal/pkg/agent/cmd/upgrade.go

+4
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ func upgradeCmd(streams *cli.IOStreams, cmd *cobra.Command, args []string) error
8282

8383
pgpUri, _ := cmd.Flags().GetString(flagPGPBytesURI)
8484
if len(pgpUri) > 0 {
85+
if uriErr := download.CheckValidDownloadUri(pgpUri); uriErr != nil {
86+
return uriErr
87+
}
88+
8589
// URI is parsed later with proper TLS and Proxy config within downloader
8690
pgpChecks = append(pgpChecks, download.PgpSourceURIPrefix+pgpUri)
8791
}

0 commit comments

Comments
 (0)