Golang security checker
Vulnerability Management for Go - The Go Programming Language
Julie Qiu, for the Go security team 6 September 2022 We are excited to announce Go's new support for vulnerability management, our first step towards helping Go developers learn about known vulnerabilities that may affect them. This post provides an overview of what's available today and next steps for this project.
https://go.dev/blog/vuln

GitHub - securego/gosec: Golang security checker
Inspects source code for security problems by scanning the Go AST. Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. You may obtain a copy of the License here.
https://github.com/securego/gosec?utm_source=tldrnewsletter
commands
nikolaydubina/go-recipes
Handy commands to run in Go projects Use this when upgrading version of Go or finding old modules. $ go list -deps -json ./... | jq -rc 'select(.Standard!=true and .Module.GoVersion!=null) | [.Module.GoVersion,.Module.Path] | join(" ")' | sort -V | uniq 1.14 github.com/grpc-ecosystem/go-grpc-middleware 1.14 github.com/grpc-ecosystem/grpc-gateway 1.14 go.uber.org/multierr 1.15 gopkg.in/yaml.v2 1.16 github.com/deliveryhero/pd-ersatz/sts 1.16 github.com/deliveryhero/pd-pablo-payment-gateway ...
https://github.com/nikolaydubina/go-recipes?utm_source=tldrnewsletter

Seonglae Cho