mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 21:05:26 +00:00
* misc update * chore(deps): bump github.com/gin-gonic/gin from 1.9.0 to 1.9.1 (#4252) Bumps [github.com/gin-gonic/gin](https://github.com/gin-gonic/gin) from 1.9.0 to 1.9.1. - [Release notes](https://github.com/gin-gonic/gin/releases) - [Changelog](https://github.com/gin-gonic/gin/blob/master/CHANGELOG.md) - [Commits](https://github.com/gin-gonic/gin/compare/v1.9.0...v1.9.1) --- updated-dependencies: - dependency-name: github.com/gin-gonic/gin dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump github.com/docker/docker (#4316) Bumps [github.com/docker/docker](https://github.com/docker/docker) from 24.0.5+incompatible to 24.0.7+incompatible. - [Release notes](https://github.com/docker/docker/releases) - [Commits](https://github.com/docker/docker/compare/v24.0.5...v24.0.7) --- updated-dependencies: - dependency-name: github.com/docker/docker dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * fix README_CN.md typos (#4369) * version update * Add more support for `fs.FS` in the disk catalog This adds more support for `fs.FS` in the disk catalog. This fixes some places where direct `os` file-related calls were being made to use the catalog interface instead. Note that the JavaScript compiler *still* does not work in any context where the `pkg/js/libs/fs` package is used. In particular, the `ReadFilesFromDir` function is hard-coded to use the `os` package and not respect the catalog. * Remove some testing artifacts * Wrap up * Unwind other changes * Add a LoadHelperFileFunction to Options * Use a direct func * Tweak validation * Use a function type --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: sandeep <8293321+ehsandeep@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Xc1Ym <xuedongyuming2233@gmail.com> Co-authored-by: Sandeep Singh <sandeep@projectdiscovery.io>
77 lines
2.7 KiB
Go
77 lines
2.7 KiB
Go
package generators
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/catalog/config"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/types"
|
|
fileutil "github.com/projectdiscovery/utils/file"
|
|
folderutil "github.com/projectdiscovery/utils/folder"
|
|
)
|
|
|
|
// validate validates the payloads if any.
|
|
func (g *PayloadGenerator) validate(payloads map[string]interface{}, templatePath string) error {
|
|
for name, payload := range payloads {
|
|
switch payloadType := payload.(type) {
|
|
case string:
|
|
// check if it's a multiline string list
|
|
if len(strings.Split(payloadType, "\n")) != 1 {
|
|
return errors.New("invalid number of lines in payload")
|
|
}
|
|
|
|
// For historical reasons, "validate" checks to see if the payload file exist.
|
|
// If we're using a custom helper function, then we need to skip any validation beyond just checking the string syntax.
|
|
// Actually attempting to load the file will determine whether or not it exists.
|
|
if g.options.LoadHelperFileFunction != nil {
|
|
return nil
|
|
}
|
|
|
|
// check if it's a file and try to load it
|
|
if fileutil.FileExists(payloadType) {
|
|
continue
|
|
}
|
|
// if file already exists in nuclei-templates directory, skip any further checks
|
|
if fileutil.FileExists(filepath.Join(config.DefaultConfig.GetTemplateDir(), payloadType)) {
|
|
continue
|
|
}
|
|
|
|
// in below code, we calculate all possible paths from root and try to resolve the payload
|
|
// at each level of the path. if the payload is found, we break the loop and continue
|
|
// ex: template-path: /home/user/nuclei-templates/cves/2020/CVE-2020-1234.yaml
|
|
// then we check if helper file "my-payload.txt" exists at below paths:
|
|
// 1. /home/user/nuclei-templates/cves/2020/my-payload.txt
|
|
// 2. /home/user/nuclei-templates/cves/my-payload.txt
|
|
// 3. /home/user/nuclei-templates/my-payload.txt
|
|
// 4. /home/user/my-payload.txt
|
|
// 5. /home/my-payload.txt
|
|
changed := false
|
|
|
|
dir, _ := filepath.Split(templatePath)
|
|
templatePathInfo, _ := folderutil.NewPathInfo(dir)
|
|
payloadPathsToProbe, _ := templatePathInfo.MeshWith(payloadType)
|
|
|
|
for _, payloadPath := range payloadPathsToProbe {
|
|
if fileutil.FileExists(payloadPath) {
|
|
payloads[name] = payloadPath
|
|
changed = true
|
|
break
|
|
}
|
|
}
|
|
if !changed {
|
|
return fmt.Errorf("the %s file for payload %s does not exist or does not contain enough elements", payloadType, name)
|
|
}
|
|
case interface{}:
|
|
loadedPayloads := types.ToStringSlice(payloadType)
|
|
if len(loadedPayloads) == 0 {
|
|
return fmt.Errorf("the payload %s does not contain enough elements", name)
|
|
}
|
|
default:
|
|
return fmt.Errorf("the payload %s has invalid type", name)
|
|
}
|
|
}
|
|
return nil
|
|
}
|