Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion projects/scanning/secrets/wraith
Submodule wraith updated 65 files
+44 −0 .github/workflows/ci.yml
+72 −0 .golangci.yml
+0 −20 .travis.yml
+25 −0 CHANGELOG.md
+13 −5 Makefile
+4 −3 README.md
+20 −17 cmd/root.go
+50 −0 cmd/root_test.go
+9 −6 cmd/scanGithub.go
+10 −7 cmd/scanGithubEnterprise.go
+7 −4 cmd/scanGitlab.go
+5 −2 cmd/scanLocalGitRepo.go
+2 −2 cmd/scanLocalPath.go
+42 −26 cmd/updateRules.go
+72 −0 cmd/updateRules_test.go
+7 −8 core/analysis.go
+0 −771 core/bindata.go
+8 −8 core/browser_test.go
+6 −0 core/embed.go
+5 −4 core/findings.go
+57 −0 core/findings_test.go
+12 −16 core/git.go
+14 −78 core/github.go
+17 −69 core/gitlab.go
+9 −15 core/io.go
+66 −0 core/io_additional_test.go
+8 −9 core/localRepo.go
+9 −9 core/log.go
+3 −8 core/matchfile.go
+62 −0 core/matchfile_test.go
+12 −36 core/router.go
+9 −22 core/session.go
+7 −13 core/signatures.go
+88 −0 core/signatures_internal_test.go
+ core/static/fonts/open-iconic.eot
+ core/static/fonts/open-iconic.otf
+0 −0 core/static/fonts/open-iconic.svg
+ core/static/fonts/open-iconic.ttf
+ core/static/fonts/open-iconic.woff
+ core/static/images/gopher_full.png
+ core/static/images/gopher_head.png
+ core/static/images/spinner.gif
+0 −0 core/static/index.html
+0 −0 core/static/javascripts/application.js
+0 −0 core/static/javascripts/backbone.js
+0 −0 core/static/javascripts/bootstrap.js
+0 −0 core/static/javascripts/clipboard.js
+0 −0 core/static/javascripts/hexdump.js
+0 −0 core/static/javascripts/highlight.js
+0 −0 core/static/javascripts/highlight_worker.js
+0 −0 core/static/javascripts/jquery-3.3.1.js
+0 −0 core/static/javascripts/popper.js
+0 −0 core/static/javascripts/underscore.js
+0 −0 core/static/stylesheets/application.css
+0 −0 core/static/stylesheets/bootstrap.css
+0 −0 core/static/stylesheets/highlight.css
+0 −0 core/static/stylesheets/openiconic.css
+2 −2 core/stats.go
+0 −1 docs/user/BlogPost.md
+0 −13 docs/user/notes.md
+66 −55 go.mod
+171 −602 go.sum
+0 −10 scripts/build-static.sh
+1 −1 version/version.go
+14 −0 version/version_test.go
Loading