Skip to content

Commit

Permalink
Merge pull request #208 from debricked/0-fix-java-zip-fingerprinting
Browse files Browse the repository at this point in the history
Add fingerprinting of .zip files
  • Loading branch information
ProgHaj authored Mar 5, 2024
2 parents 268ecee + e32fc44 commit 61c0275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/fingerprint/fingerprint.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ var EXCLUDED_FILES = []string{
"[content_types].xml",
}

var ZIP_FILE_ENDINGS = []string{".jar", ".nupkg", ".war"}
var ZIP_FILE_ENDINGS = []string{".jar", ".nupkg", ".war", ".zip", ".ear"}
var TAR_GZIP_FILE_ENDINGS = []string{".tgz", ".tar.gz"}

const HASH_SIZE = 16
Expand Down

0 comments on commit 61c0275

Please sign in to comment.