nuclei/v2/pkg/templates/compile.go

128 lines
3.9 KiB
Go
Raw Normal View History

2020-04-04 02:50:32 +05:30
package templates
import (
"fmt"
2020-04-04 02:50:32 +05:30
"os"
"github.com/pkg/errors"
"github.com/projectdiscovery/nuclei/v2/pkg/protocols"
2020-12-29 16:33:25 +05:30
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/dns"
2021-01-01 15:28:28 +05:30
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/file"
2020-12-29 16:33:25 +05:30
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/http"
2020-12-30 14:54:20 +05:30
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/network"
"github.com/projectdiscovery/nuclei/v2/pkg/workflows"
2020-12-30 13:26:55 +05:30
"gopkg.in/yaml.v2"
2020-04-04 02:50:32 +05:30
)
2020-06-29 17:43:08 +05:30
// Parse parses a yaml request template file
2021-01-01 15:28:28 +05:30
func Parse(filePath string, options *protocols.ExecuterOptions) (*Template, error) {
2020-04-04 02:50:32 +05:30
template := &Template{}
2021-01-01 15:28:28 +05:30
f, err := os.Open(filePath)
2020-04-04 02:50:32 +05:30
if err != nil {
return nil, err
}
err = yaml.NewDecoder(f).Decode(template)
if err != nil {
return nil, err
}
2020-06-26 14:37:55 +02:00
defer f.Close()
// Setting up variables regarding template metadata
options.TemplateID = template.ID
options.TemplateInfo = template.Info
2021-01-01 15:28:28 +05:30
options.TemplatePath = filePath
2020-07-31 17:13:51 +02:00
2020-06-29 17:43:08 +05:30
// If no requests, and it is also not a workflow, return error.
if len(template.RequestsDNS)+len(template.RequestsHTTP)+len(template.RequestsFile)+len(template.RequestsNetwork)+len(template.Workflows) == 0 {
return nil, fmt.Errorf("no requests defined for %s", template.ID)
2020-06-26 14:37:55 +02:00
}
2020-04-04 02:50:32 +05:30
// Compile the workflow request
2020-12-29 18:48:13 +05:30
if len(template.Workflows) > 0 {
2020-12-30 13:26:55 +05:30
compiled := &template.Workflow
if err := template.compileWorkflow(options, compiled); err != nil {
return nil, errors.Wrap(err, "could not compile workflow")
}
2020-12-29 20:18:59 +05:30
template.Workflow.Compile(options)
2020-12-30 13:26:55 +05:30
template.CompiledWorkflow = compiled
}
// Compile the requests found
2020-12-29 16:33:25 +05:30
if len(template.RequestsDNS) > 0 {
template.Executer = dns.NewExecuter(template.RequestsDNS, options)
2020-12-29 16:33:25 +05:30
}
if len(template.RequestsHTTP) > 0 {
template.Executer = http.NewExecuter(template.RequestsHTTP, options)
2021-01-01 15:28:28 +05:30
}
if len(template.RequestsFile) > 0 {
template.Executer = file.NewExecuter(template.RequestsFile, options)
2020-12-29 16:33:25 +05:30
}
2020-12-30 14:54:20 +05:30
if len(template.RequestsNetwork) > 0 {
template.Executer = network.NewExecuter(template.RequestsNetwork, options)
}
template.TotalRequests += template.Executer.Requests()
2020-12-29 16:33:25 +05:30
if err != nil {
return nil, errors.Wrap(err, "could not compile request")
}
2020-04-04 02:50:32 +05:30
return template, nil
}
// compileWorkflow compiles the workflow for execution
2020-12-30 13:26:55 +05:30
func (t *Template) compileWorkflow(options *protocols.ExecuterOptions, workflows *workflows.Workflow) error {
for _, workflow := range workflows.Workflows {
if err := t.parseWorkflow(workflow, options); err != nil {
return err
}
}
return nil
}
// parseWorkflow parses and compiles all templates in a workflow recursively
func (t *Template) parseWorkflow(workflow *workflows.WorkflowTemplate, options *protocols.ExecuterOptions) error {
if err := t.parseWorkflowTemplate(workflow, options); err != nil {
return err
}
for _, subtemplates := range workflow.Subtemplates {
if err := t.parseWorkflow(subtemplates, options); err != nil {
return err
}
}
for _, matcher := range workflow.Matchers {
for _, subtemplates := range matcher.Subtemplates {
if err := t.parseWorkflow(subtemplates, options); err != nil {
return err
}
}
}
return nil
}
// parseWorkflowTemplate parses a workflow template creating an executer
func (t *Template) parseWorkflowTemplate(workflow *workflows.WorkflowTemplate, options *protocols.ExecuterOptions) error {
opts := protocols.ExecuterOptions{
Output: options.Output,
Options: options.Options,
Progress: options.Progress,
Catalogue: options.Catalogue,
RateLimiter: options.RateLimiter,
ProjectFile: options.ProjectFile,
}
paths, err := options.Catalogue.GetTemplatePath(workflow.Template)
if err != nil {
return errors.Wrap(err, "could not get workflow template")
}
if len(paths) != 1 {
return errors.Wrap(err, "invalid number of templates matched")
}
template, err := Parse(paths[0], &opts)
if err != nil {
return errors.Wrap(err, "could not parse workflow template")
}
workflow.Executer = template.Executer
return nil
}