nuclei/pkg/templates/compile.go

95 lines
2.2 KiB
Go
Raw Normal View History

2020-04-04 02:50:32 +05:30
package templates
import (
2020-06-26 14:37:55 +02:00
"errors"
"fmt"
2020-04-04 02:50:32 +05:30
"os"
"github.com/projectdiscovery/nuclei/pkg/generators"
"github.com/projectdiscovery/nuclei/pkg/matchers"
2020-04-04 02:50:32 +05:30
"gopkg.in/yaml.v2"
)
// ParseTemplate parses a yaml request template file
func ParseTemplate(file string) (*Template, error) {
template := &Template{}
f, err := os.Open(file)
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()
if len(template.RequestsHTTP)+len(template.RequestsDNS) <= 0 {
return nil, errors.New("No requests defined")
}
2020-04-04 02:50:32 +05:30
2020-04-22 22:45:02 +02:00
// Compile the matchers and the extractors for http requests
for _, request := range template.RequestsHTTP {
// Get the condition between the matchers
condition, ok := matchers.ConditionTypes[request.MatchersCondition]
if !ok {
request.SetMatchersCondition(matchers.ANDCondition)
} else {
request.SetMatchersCondition(condition)
}
// Set the attack type - used only in raw requests
attack, ok := generators.AttackTypes[request.AttackType]
if !ok {
request.SetAttackType(generators.Sniper)
} else {
request.SetAttackType(attack)
}
// Validate the payloads if any
for name, wordlist := range request.Payloads {
if !generators.FileExists(wordlist) {
return nil, fmt.Errorf("The %s file for payload %s does not exist", wordlist, name)
}
}
2020-04-04 02:50:32 +05:30
for _, matcher := range request.Matchers {
if err = matcher.CompileMatchers(); err != nil {
return nil, err
}
}
for _, extractor := range request.Extractors {
if err := extractor.CompileExtractors(); err != nil {
return nil, err
}
}
2020-04-04 02:50:32 +05:30
}
2020-04-22 22:45:02 +02:00
// Compile the matchers and the extractors for dns requests
for _, request := range template.RequestsDNS {
// Get the condition between the matchers
condition, ok := matchers.ConditionTypes[request.MatchersCondition]
if !ok {
request.SetMatchersCondition(matchers.ANDCondition)
} else {
request.SetMatchersCondition(condition)
}
2020-04-22 22:45:02 +02:00
for _, matcher := range request.Matchers {
if err = matcher.CompileMatchers(); err != nil {
return nil, err
}
}
for _, extractor := range request.Extractors {
if err := extractor.CompileExtractors(); err != nil {
return nil, err
}
}
}
2020-04-23 18:44:34 +02:00
2020-04-04 02:50:32 +05:30
return template, nil
}