nuclei/pkg/templates/compile.go

82 lines
1.8 KiB
Go
Raw Normal View History

2020-04-03 21:20:32 +00:00
package templates
import (
"os"
"github.com/projectdiscovery/nuclei/pkg/generators"
"github.com/projectdiscovery/nuclei/pkg/matchers"
2020-04-03 21:20:32 +00:00
"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 {
f.Close()
return nil, err
}
f.Close()
2020-04-22 20:45:02 +00: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)
}
attack, ok := generators.AttackTypes[request.AttackType]
if !ok {
request.SetAttackType(generators.Sniper)
} else {
request.SetAttackType(attack)
}
2020-04-03 21:20:32 +00: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-03 21:20:32 +00:00
}
2020-04-22 20:45:02 +00: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 20:45:02 +00: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 16:44:34 +00:00
2020-04-03 21:20:32 +00:00
return template, nil
}