Skip to content
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

build(deps): Bump github.com/tinylib/msgp from 1.1.5 to 1.1.8 in /receiver/fluentforwardreceiver #2063

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jan 2, 2023

Bumps github.com/tinylib/msgp from 1.1.5 to 1.1.8.

Release notes

Sourced from github.com/tinylib/msgp's releases.

v1.1.6

Capture some small changes since the v1.1.5 release. The biggest user-facing change is the lack of diagnostics printed to stderr unless -v is passed explicitly.

Commits
  • 8a5e756 README: update link to docs website, and add docs reference badge
  • aab9129 go.mod: update go version to 1.15 to match what's tested
  • 87d7486 fix some godoc comments, and add docs links
  • 15e1d85 gofumpt code
  • 0fc7365 gofmt for current versions of go and remove stray whitespace
  • f75b7bc go.mod: github.com/philhofer/fwd v1.1.2
  • 64463c4 go mod tidy
  • 7f4e0b9 remove .travis.yml
  • aedaed6 add github actions and golangci-lint
  • ea4a7b2 Update tinygo version to v0.26.0 to fix version detection
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [github.com/tinylib/msgp](https://github.com/tinylib/msgp) from 1.1.5 to 1.1.8.
- [Release notes](https://github.com/tinylib/msgp/releases)
- [Commits](tinylib/msgp@v1.1.5...v1.1.8)

---
updated-dependencies:
- dependency-name: github.com/tinylib/msgp
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Jan 2, 2023
@guardrails
Copy link

guardrails bot commented Jan 2, 2023

⚠️ We detected 76 security issues in this pull request:

Mode: paranoid | Total findings: 76 | Considered vulnerability: 76

Insecure Network Communication (13)
Docs Details
💡 Title: Insecure gRPC server connection, Severity: Medium
💡 Title: Insecure gRPC server connection, Severity: Medium
💡 Title: Plaintext HTTP Server, Severity: High
💡 Title: Plaintext HTTP Server, Severity: High
💡 Title: Plaintext HTTP Server, Severity: High
💡 Title: Insecure SSL/TLS versions allowed, Severity: Medium
💡 Title: Look For Bad TLS Connection Settings, Severity: High
tr.TLSClientConfig = &tls.Config{
💡 Title: Look For Bad TLS Connection Settings, Severity: High
TLSClientConfig: &tls.Config{InsecureSkipVerify: false},
💡 Title: Look For Bad TLS Connection Settings, Severity: High
InsecureSkipVerify: insecureSkipVerify,
💡 Title: Look For Bad TLS Connection Settings, Severity: High
💡 Title: Look For Bad TLS Connection Settings, Severity: High
clientOptions.HTTPTransport = &http.Transport{TLSClientConfig: &tls.Config{InsecureSkipVerify: true}}
💡 Title: Look For Bad TLS Connection Settings, Severity: High
InsecureSkipVerify: config.TLSSetting.Insecure,
💡 Title: Look For Bad TLS Connection Settings, Severity: High
InsecureSkipVerify: config.NoVerifySSL,

More info on how to fix Insecure Network Communication in Go.


Insecure Use of Dangerous Function (3)
Docs Details
💡 Title: Review use of exec.Command(), Severity: High
childProcess := exec.Command(args[0], args[1:]...) // #nosec
💡 Title: Audit Use of Command Execution, Severity: High
💡 Title: Audit Use of Command Execution, Severity: High
cmd := exec.Command(execPath, args...)

More info on how to fix Insecure Use of Dangerous Function in Go.


Insecure Use of SQL Queries (1)
Docs Details
💡 Title: SQL Injection - go-pg ORM string concatenation, Severity: High
return path.Join(dir, fmt.Sprintf("msg.%d.bin", i))

More info on how to fix Insecure Use of SQL Queries in Go.


Insecure File Management (11)
Docs Details
💡 Title: File Path Provided As Taint Input, Severity: High
f.dataFile, err = os.OpenFile(dataFileName, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0600)
💡 Title: File Path Provided As Taint Input, Severity: High
metadata, err := ioutil.ReadFile(metadataFilePath)
💡 Title: File Path Provided As Taint Input, Severity: High
💡 Title: File Path Provided As Taint Input, Severity: High
💡 Title: File Path Provided As Taint Input, Severity: High
💡 Title: File Path Provided As Taint Input, Severity: High
💡 Title: File Path Provided As Taint Input, Severity: High
certBytes, err := ioutil.ReadFile(certPath)
💡 Title: File Path Provided As Taint Input, Severity: High
if file, err = ioutil.ReadFile(path); err == nil {
💡 Title: File Path Provided As Taint Input, Severity: High
if value, err := ioutil.ReadFile(filepath.Join(etc, "system-release")); err == nil {
💡 Title: File Path Provided As Taint Input, Severity: High
if value, err := ioutil.ReadFile(filepath.Join(etc, "redhat-release")); err == nil {
💡 Title: File Path Provided As Taint Input, Severity: High
if value, err := ioutil.ReadFile(filepath.Join(etc, "centos-release")); err == nil {

More info on how to fix Insecure File Management in Go.


Hard-Coded Secrets (48)
Docs Details
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
producerConfig.AccessKeySecret = config.AccessKeySecret
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
Password: config.Authentication.Password,
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Hex High Entropy String, Severity: Medium
💡 Title: Hex High Entropy String, Severity: Medium
want: "f23b42eac289a0fdcde48fcbe3ab1a32",
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
nrConfig.MetricsConfig.APIKey = "a1b2c3d4"
💡 Title: Secret Keyword, Severity: Medium
nrConfig.MetricsConfig.APIKeyHeader = "api-key"
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
c.TracesConfig.APIKeyHeader = "api-key"
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
cfg := mockConfig{useAPIKeyHeader: false}
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
cfg.ClientSecret = testcase.settings.ClientSecret
💡 Title: Base64 High Entropy String, Severity: Medium
SelfLink: "/api/v1/namespaces/kube-system/pods/coredns-7554568866-26jdf",
💡 Title: Base64 High Entropy String, Severity: Medium
SelfLink: "/api/v1/namespaces/kube-system/pods/coredns-7554568866-26jdf",
💡 Title: Hex High Entropy String, Severity: Medium
💡 Title: Hex High Entropy String, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Hex High Entropy String, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
KeystorePassword: "mykeystorepassword",
💡 Title: Secret Keyword, Severity: Medium
TruststorePassword: "mytruststorepassword",
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Secret Keyword, Severity: Medium
💡 Title: Private Key, Severity: Medium

More info on how to fix Hard-Coded Secrets in General.


👉 Go to the dashboard for detailed results.

📥 Happy? Share your feedback with us.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file go Pull requests that update Go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants