mirror of https://github.com/daffainfo/nuclei.git
41 lines
1.8 KiB
Go
41 lines
1.8 KiB
Go
package templates
|
|
|
|
import (
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/protocols"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/dns"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/file"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/headless"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/http"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/network"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/workflows"
|
|
)
|
|
|
|
// Template is a request template parsed from a yaml file
|
|
type Template struct {
|
|
// ID is the unique id for the template
|
|
ID string `yaml:"id"`
|
|
// Info contains information about the template
|
|
Info map[string]interface{} `yaml:"info"`
|
|
// RequestsHTTP contains the http request to make in the template
|
|
RequestsHTTP []*http.Request `yaml:"requests,omitempty" json:"requests"`
|
|
// RequestsDNS contains the dns request to make in the template
|
|
RequestsDNS []*dns.Request `yaml:"dns,omitempty" json:"dns"`
|
|
// RequestsFile contains the file request to make in the template
|
|
RequestsFile []*file.Request `yaml:"file,omitempty" json:"file"`
|
|
// RequestsNetwork contains the network request to make in the template
|
|
RequestsNetwork []*network.Request `yaml:"network,omitempty" json:"network"`
|
|
// RequestsHeadless contains the headless request to make in the template.
|
|
RequestsHeadless []*headless.Request `yaml:"headless,omitempty" json:"headless"`
|
|
|
|
// Workflows is a yaml based workflow declaration code.
|
|
workflows.Workflow `yaml:",inline,omitempty"`
|
|
CompiledWorkflow *workflows.Workflow `yaml:"-" json:"-" jsonschema:"-"`
|
|
|
|
// TotalRequests is the total number of requests for the template.
|
|
TotalRequests int `yaml:"-" json:"-"`
|
|
// Executer is the actual template executor for running template requests
|
|
Executer protocols.Executer `yaml:"-" json:"-"`
|
|
|
|
Path string `yaml:"-" json:"-"`
|
|
}
|