mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 20:35:26 +00:00
* chore: fix non-constant fmt string in call Signed-off-by: Dwi Siswanto <git@dw1.io> * build: bump all direct modules Signed-off-by: Dwi Siswanto <git@dw1.io> * chore(hosterrorscache): update import path Signed-off-by: Dwi Siswanto <git@dw1.io> * fix(charts): break changes Signed-off-by: Dwi Siswanto <git@dw1.io> * build: pinned `github.com/zmap/zcrypto` to v0.0.0-20240512203510-0fef58d9a9db Signed-off-by: Dwi Siswanto <git@dw1.io> * chore: golangci-lint auto fixes Signed-off-by: Dwi Siswanto <git@dw1.io> * chore: satisfy lints Signed-off-by: Dwi Siswanto <git@dw1.io> * build: migrate `github.com/xanzy/go-gitlab` => `gitlab.com/gitlab-org/api/client-go` Signed-off-by: Dwi Siswanto <git@dw1.io> * feat(json): update build constraints Signed-off-by: Dwi Siswanto <git@dw1.io> * chore: dont panicking on close err Signed-off-by: Dwi Siswanto <git@dw1.io> --------- Signed-off-by: Dwi Siswanto <git@dw1.io>
58 lines
1.2 KiB
Go
58 lines
1.2 KiB
Go
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"crypto/sha1"
|
|
"encoding/hex"
|
|
"io"
|
|
"io/fs"
|
|
"log"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
)
|
|
|
|
func main() {
|
|
if len(os.Args) < 3 {
|
|
log.Fatalf("Usage: %s <templates-directory> <checksum-file>\n", os.Args[0])
|
|
}
|
|
checksumFile := os.Args[2]
|
|
templatesDirectory := os.Args[1]
|
|
|
|
file, err := os.Create(checksumFile)
|
|
if err != nil {
|
|
log.Fatalf("Could not create file: %s\n", err)
|
|
}
|
|
defer func() {
|
|
_ = file.Close()
|
|
}()
|
|
|
|
err = filepath.WalkDir(templatesDirectory, func(path string, d fs.DirEntry, err error) error {
|
|
if err != nil || d.IsDir() {
|
|
return nil
|
|
}
|
|
pathIndex := path[strings.Index(path, "nuclei-templates/")+17:]
|
|
pathIndex = strings.TrimPrefix(pathIndex, "nuclei-templates/")
|
|
// Ignore items starting with dots
|
|
if strings.HasPrefix(pathIndex, ".") {
|
|
return nil
|
|
}
|
|
data, err := os.ReadFile(path)
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
h := sha1.New()
|
|
_, _ = io.Copy(h, bytes.NewReader(data))
|
|
hash := hex.EncodeToString(h.Sum(nil))
|
|
|
|
_, _ = file.WriteString(pathIndex)
|
|
_, _ = file.WriteString(":")
|
|
_, _ = file.WriteString(hash)
|
|
_, _ = file.WriteString("\n")
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
log.Fatalf("Could not walk directory: %s\n", err)
|
|
}
|
|
}
|