├── .github └── dependabot.yml ├── .gitignore ├── .golangci.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── go.mod ├── go.sum └── scan.go /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulncheck-oss/cve-2023-36845-scanner/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulncheck-oss/cve-2023-36845-scanner/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulncheck-oss/cve-2023-36845-scanner/HEAD/.golangci.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulncheck-oss/cve-2023-36845-scanner/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulncheck-oss/cve-2023-36845-scanner/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulncheck-oss/cve-2023-36845-scanner/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulncheck-oss/cve-2023-36845-scanner/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulncheck-oss/cve-2023-36845-scanner/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulncheck-oss/cve-2023-36845-scanner/HEAD/go.sum -------------------------------------------------------------------------------- /scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulncheck-oss/cve-2023-36845-scanner/HEAD/scan.go --------------------------------------------------------------------------------