mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-29 22:23:02 +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>
34 lines
786 B
Go
34 lines
786 B
Go
package config
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/projectdiscovery/gologger"
|
|
"gopkg.in/yaml.v2"
|
|
)
|
|
|
|
// IgnoreFile is an internal nuclei template blocking configuration file
|
|
type IgnoreFile struct {
|
|
Tags []string `yaml:"tags"`
|
|
Files []string `yaml:"files"`
|
|
}
|
|
|
|
// ReadIgnoreFile reads the nuclei ignore file returning blocked tags and paths
|
|
func ReadIgnoreFile() IgnoreFile {
|
|
file, err := os.Open(DefaultConfig.GetIgnoreFilePath())
|
|
if err != nil {
|
|
gologger.Error().Msgf("Could not read nuclei-ignore file: %s\n", err)
|
|
return IgnoreFile{}
|
|
}
|
|
defer func() {
|
|
_ = file.Close()
|
|
}()
|
|
|
|
ignore := IgnoreFile{}
|
|
if err := yaml.NewDecoder(file).Decode(&ignore); err != nil {
|
|
gologger.Error().Msgf("Could not parse nuclei-ignore file: %s\n", err)
|
|
return IgnoreFile{}
|
|
}
|
|
return ignore
|
|
}
|