├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── cmd └── sastsweep │ └── sastsweep.go ├── common ├── feed │ └── repos.go ├── logger │ └── logger.go ├── report │ ├── html.go │ ├── templates.go │ ├── types.go │ └── util.go ├── sastsweep │ ├── display.go │ ├── downloader.go │ ├── extractor.go │ ├── sast.go │ └── types.go ├── types.go └── util.go ├── github-search.py ├── go.mod ├── go.sum ├── poc.mp4 └── runner ├── banner.go ├── options.go └── runner.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmd/sastsweep/sastsweep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/cmd/sastsweep/sastsweep.go -------------------------------------------------------------------------------- /common/feed/repos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/common/feed/repos.go -------------------------------------------------------------------------------- /common/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/common/logger/logger.go -------------------------------------------------------------------------------- /common/report/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/common/report/html.go -------------------------------------------------------------------------------- /common/report/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/common/report/templates.go -------------------------------------------------------------------------------- /common/report/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/common/report/types.go -------------------------------------------------------------------------------- /common/report/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/common/report/util.go -------------------------------------------------------------------------------- /common/sastsweep/display.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/common/sastsweep/display.go -------------------------------------------------------------------------------- /common/sastsweep/downloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/common/sastsweep/downloader.go -------------------------------------------------------------------------------- /common/sastsweep/extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/common/sastsweep/extractor.go -------------------------------------------------------------------------------- /common/sastsweep/sast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/common/sastsweep/sast.go -------------------------------------------------------------------------------- /common/sastsweep/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/common/sastsweep/types.go -------------------------------------------------------------------------------- /common/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/common/types.go -------------------------------------------------------------------------------- /common/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/common/util.go -------------------------------------------------------------------------------- /github-search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/github-search.py -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/go.sum -------------------------------------------------------------------------------- /poc.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/poc.mp4 -------------------------------------------------------------------------------- /runner/banner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/runner/banner.go -------------------------------------------------------------------------------- /runner/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/runner/options.go -------------------------------------------------------------------------------- /runner/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chebuya/sastsweep/HEAD/runner/runner.go --------------------------------------------------------------------------------