mirror of https://github.com/daffainfo/nuclei.git
46 lines
1.2 KiB
Go
46 lines
1.2 KiB
Go
package catalog
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path"
|
|
"path/filepath"
|
|
"strings"
|
|
)
|
|
|
|
// ResolvePath resolves the path to an absolute one in various ways.
|
|
//
|
|
// It checks if the filename is an absolute path, looks in the current directory
|
|
// or checking the nuclei templates directory. If a second path is given,
|
|
// it also tries to find paths relative to that second path.
|
|
func (c *Catalog) ResolvePath(templateName, second string) (string, error) {
|
|
if strings.HasPrefix(templateName, "/") || strings.Contains(templateName, ":\\") {
|
|
return templateName, nil
|
|
}
|
|
|
|
if second != "" {
|
|
secondBasePath := path.Join(filepath.Dir(second), templateName)
|
|
if _, err := os.Stat(secondBasePath); !os.IsNotExist(err) {
|
|
return secondBasePath, nil
|
|
}
|
|
}
|
|
|
|
curDirectory, err := os.Getwd()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
templatePath := path.Join(curDirectory, templateName)
|
|
if _, err := os.Stat(templatePath); !os.IsNotExist(err) {
|
|
return templatePath, nil
|
|
}
|
|
|
|
if c.templatesDirectory != "" {
|
|
templatePath := path.Join(c.templatesDirectory, templateName)
|
|
if _, err := os.Stat(templatePath); !os.IsNotExist(err) {
|
|
return templatePath, nil
|
|
}
|
|
}
|
|
return "", fmt.Errorf("no such path found: %s", templateName)
|
|
}
|