mirror of https://github.com/daffainfo/nuclei.git
524 lines
13 KiB
Go
524 lines
13 KiB
Go
package runner
|
|
|
|
import (
|
|
"bufio"
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"net/http/cookiejar"
|
|
"os"
|
|
"strings"
|
|
"sync"
|
|
|
|
tengo "github.com/d5/tengo/v2"
|
|
"github.com/d5/tengo/v2/stdlib"
|
|
"github.com/karrick/godirwalk"
|
|
"github.com/projectdiscovery/gologger"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/atomicboolean"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/executer"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/requests"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/templates"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/workflows"
|
|
)
|
|
|
|
// Runner is a client for running the enumeration process.
|
|
type Runner struct {
|
|
// output is the output file to write if any
|
|
output *os.File
|
|
outputMutex *sync.Mutex
|
|
|
|
tempFile string
|
|
templatesConfig *nucleiConfig
|
|
// options contains configuration options for runner
|
|
options *Options
|
|
limiter chan struct{}
|
|
}
|
|
|
|
// New creates a new client for running enumeration process.
|
|
func New(options *Options) (*Runner, error) {
|
|
runner := &Runner{
|
|
outputMutex: &sync.Mutex{},
|
|
options: options,
|
|
}
|
|
|
|
if err := runner.updateTemplates(); err != nil {
|
|
gologger.Warningf("Could not update templates: %s\n", err)
|
|
}
|
|
if (len(options.Templates) == 0 || (options.Targets == "" && !options.Stdin && options.Target == "")) && options.UpdateTemplates {
|
|
os.Exit(0)
|
|
}
|
|
|
|
// If we have stdin, write it to a new file
|
|
if options.Stdin {
|
|
tempInput, err := ioutil.TempFile("", "stdin-input-*")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if _, err := io.Copy(tempInput, os.Stdin); err != nil {
|
|
return nil, err
|
|
}
|
|
runner.tempFile = tempInput.Name()
|
|
tempInput.Close()
|
|
}
|
|
// If we have single target, write it to a new file
|
|
if options.Target != "" {
|
|
tempInput, err := ioutil.TempFile("", "stdin-input-*")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
tempInput.WriteString(options.Target)
|
|
runner.tempFile = tempInput.Name()
|
|
tempInput.Close()
|
|
}
|
|
|
|
// Create the output file if asked
|
|
if options.Output != "" {
|
|
output, err := os.Create(options.Output)
|
|
if err != nil {
|
|
gologger.Fatalf("Could not create output file '%s': %s\n", options.Output, err)
|
|
}
|
|
runner.output = output
|
|
}
|
|
|
|
runner.limiter = make(chan struct{}, options.Threads)
|
|
|
|
return runner, nil
|
|
}
|
|
|
|
// Close releases all the resources and cleans up
|
|
func (r *Runner) Close() {
|
|
r.output.Close()
|
|
os.Remove(r.tempFile)
|
|
}
|
|
|
|
func isFilePath(path string) (bool, error) {
|
|
info, err := os.Stat(path)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
return info.Mode().IsRegular(), nil
|
|
}
|
|
|
|
func (r *Runner) resolvePathIfRelative(path string) (string, error) {
|
|
if r.isRelative(path) {
|
|
newPath, err := r.resolvePath(path)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return newPath, nil
|
|
}
|
|
return path, nil
|
|
}
|
|
|
|
func isNewPath(path string, pathMap map[string]bool) bool {
|
|
if _, already := pathMap[path]; already {
|
|
gologger.Warningf("Skipping already specified path '%s'", path)
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
// RunEnumeration sets up the input layer for giving input nuclei.
|
|
// binary and runs the actual enumeration
|
|
func (r *Runner) RunEnumeration() {
|
|
// keeps track of processed dirs and files
|
|
processed := make(map[string]bool)
|
|
allTemplates := []string{}
|
|
|
|
// parses user input, handle file/directory cases and produce a list of unique templates
|
|
for _, t := range r.options.Templates {
|
|
// resolve and convert relative to absolute path
|
|
absPath, err := r.resolvePathIfRelative(t)
|
|
if err != nil {
|
|
gologger.Errorf("Could not find template file '%s': %s\n", t, err)
|
|
continue
|
|
}
|
|
|
|
// determine file/directory
|
|
isFile, err := isFilePath(absPath)
|
|
if err != nil {
|
|
gologger.Errorf("Could not stat '%s': %s\n", absPath, err)
|
|
continue
|
|
}
|
|
|
|
// test for uniqueness
|
|
if !isNewPath(absPath, processed) {
|
|
continue
|
|
}
|
|
|
|
// mark this absolute path as processed
|
|
// - if it's a file, we'll never process it again
|
|
// - if it's a dir, we'll never walk it again
|
|
processed[absPath] = true
|
|
|
|
if isFile {
|
|
allTemplates = append(allTemplates, absPath)
|
|
} else {
|
|
matches := []string{}
|
|
|
|
// Recursively walk down the Templates directory and run all the template file checks
|
|
err = godirwalk.Walk(absPath, &godirwalk.Options{
|
|
Callback: func(path string, d *godirwalk.Dirent) error {
|
|
if !d.IsDir() && strings.HasSuffix(path, ".yaml") {
|
|
if isNewPath(path, processed) {
|
|
matches = append(matches, path)
|
|
processed[path] = true
|
|
}
|
|
}
|
|
return nil
|
|
},
|
|
ErrorCallback: func(path string, err error) godirwalk.ErrorAction {
|
|
return godirwalk.SkipNode
|
|
},
|
|
Unsorted: true,
|
|
})
|
|
|
|
// directory couldn't be walked
|
|
if err != nil {
|
|
gologger.Labelf("Could not find templates in directory '%s': %s\n", absPath, err)
|
|
continue
|
|
}
|
|
|
|
// couldn't find templates in directory
|
|
if len(matches) == 0 {
|
|
gologger.Labelf("Error, no templates were found in '%s'.\n", absPath)
|
|
continue
|
|
}
|
|
|
|
allTemplates = append(allTemplates, matches...)
|
|
}
|
|
}
|
|
|
|
// 0 matches means no templates were found in directory
|
|
if len(allTemplates) == 0 {
|
|
gologger.Fatalf("Error, no templates were found.\n")
|
|
}
|
|
|
|
var (
|
|
wgtemplates sync.WaitGroup
|
|
results atomicboolean.AtomBool
|
|
)
|
|
|
|
for _, match := range allTemplates {
|
|
wgtemplates.Add(1)
|
|
go func(match string) {
|
|
defer wgtemplates.Done()
|
|
t, err := r.parse(match)
|
|
switch t.(type) {
|
|
case *templates.Template:
|
|
template := t.(*templates.Template)
|
|
for _, request := range template.RequestsDNS {
|
|
results.Or(r.processTemplateRequest(template, request))
|
|
}
|
|
for _, request := range template.BulkRequestsHTTP {
|
|
results.Or(r.processTemplateRequest(template, request))
|
|
}
|
|
case *workflows.Workflow:
|
|
workflow := t.(*workflows.Workflow)
|
|
r.ProcessWorkflowWithList(workflow)
|
|
default:
|
|
gologger.Errorf("Could not parse file '%s': %s\n", match, err)
|
|
}
|
|
}(match)
|
|
}
|
|
|
|
wgtemplates.Wait()
|
|
|
|
if !results.Get() {
|
|
if r.output != nil {
|
|
outputFile := r.output.Name()
|
|
r.output.Close()
|
|
os.Remove(outputFile)
|
|
}
|
|
gologger.Infof("No results found. Happy hacking!")
|
|
}
|
|
return
|
|
}
|
|
|
|
// processTemplate processes a template and runs the enumeration on all the targets
|
|
func (r *Runner) processTemplateRequest(template *templates.Template, request interface{}) bool {
|
|
var file *os.File
|
|
var err error
|
|
|
|
// Handle a list of hosts as argument
|
|
if r.options.Targets != "" {
|
|
file, err = os.Open(r.options.Targets)
|
|
} else if r.options.Stdin || r.options.Target != "" {
|
|
file, err = os.Open(r.tempFile)
|
|
}
|
|
if err != nil {
|
|
gologger.Fatalf("Could not open targets file '%s': %s\n", r.options.Targets, err)
|
|
}
|
|
defer file.Close()
|
|
|
|
return r.processTemplateWithList(template, request, file)
|
|
}
|
|
|
|
// processDomain processes the list with a template
|
|
func (r *Runner) processTemplateWithList(template *templates.Template, request interface{}, reader io.Reader) bool {
|
|
// Display the message for the template
|
|
message := fmt.Sprintf("[%s] Loaded template %s (@%s)", template.ID, template.Info.Name, template.Info.Author)
|
|
if template.Info.Severity != "" {
|
|
message += " [" + template.Info.Severity + "]"
|
|
}
|
|
gologger.Infof("%s\n", message)
|
|
|
|
var writer *bufio.Writer
|
|
if r.output != nil {
|
|
writer = bufio.NewWriter(r.output)
|
|
defer writer.Flush()
|
|
}
|
|
|
|
var httpExecuter *executer.HTTPExecuter
|
|
var dnsExecuter *executer.DNSExecuter
|
|
var err error
|
|
|
|
// Create an executer based on the request type.
|
|
switch value := request.(type) {
|
|
case *requests.DNSRequest:
|
|
dnsExecuter = executer.NewDNSExecuter(&executer.DNSOptions{
|
|
Debug: r.options.Debug,
|
|
Template: template,
|
|
DNSRequest: value,
|
|
Writer: writer,
|
|
JSON: r.options.JSON,
|
|
})
|
|
case *requests.BulkHTTPRequest:
|
|
httpExecuter, err = executer.NewHTTPExecuter(&executer.HTTPOptions{
|
|
Debug: r.options.Debug,
|
|
Template: template,
|
|
BulkHttpRequest: value,
|
|
Writer: writer,
|
|
Timeout: r.options.Timeout,
|
|
Retries: r.options.Retries,
|
|
ProxyURL: r.options.ProxyURL,
|
|
ProxySocksURL: r.options.ProxySocksURL,
|
|
CustomHeaders: r.options.CustomHeaders,
|
|
JSON: r.options.JSON,
|
|
JSONRequests: r.options.JSONRequests,
|
|
CookieReuse: value.CookieReuse,
|
|
})
|
|
}
|
|
if err != nil {
|
|
gologger.Warningf("Could not create http client: %s\n", err)
|
|
return false
|
|
}
|
|
|
|
var wg sync.WaitGroup
|
|
scanner := bufio.NewScanner(reader)
|
|
for scanner.Scan() {
|
|
text := scanner.Text()
|
|
if text == "" {
|
|
continue
|
|
}
|
|
|
|
r.limiter <- struct{}{}
|
|
wg.Add(1)
|
|
|
|
go func(URL string) {
|
|
defer wg.Done()
|
|
var result executer.Result
|
|
|
|
if httpExecuter != nil {
|
|
result = httpExecuter.ExecuteHTTP(URL)
|
|
}
|
|
if dnsExecuter != nil {
|
|
result = dnsExecuter.ExecuteDNS(URL)
|
|
}
|
|
if result.Error != nil {
|
|
gologger.Warningf("Could not execute step: %s\n", result.Error)
|
|
}
|
|
<-r.limiter
|
|
}(text)
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
// See if we got any results from the executers
|
|
var results bool
|
|
if httpExecuter != nil {
|
|
results = httpExecuter.Results
|
|
}
|
|
if dnsExecuter != nil {
|
|
if !results {
|
|
results = dnsExecuter.Results
|
|
}
|
|
}
|
|
return results
|
|
}
|
|
|
|
// ProcessWorkflowWithList coming from stdin or list of targets
|
|
func (r *Runner) ProcessWorkflowWithList(workflow *workflows.Workflow) {
|
|
var file *os.File
|
|
var err error
|
|
// Handle a list of hosts as argument
|
|
if r.options.Targets != "" {
|
|
file, err = os.Open(r.options.Targets)
|
|
} else if r.options.Stdin {
|
|
file, err = os.Open(r.tempFile)
|
|
}
|
|
if err != nil {
|
|
gologger.Fatalf("Could not open targets file '%s': %s\n", r.options.Targets, err)
|
|
}
|
|
defer file.Close()
|
|
|
|
scanner := bufio.NewScanner(file)
|
|
for scanner.Scan() {
|
|
text := scanner.Text()
|
|
if text == "" {
|
|
continue
|
|
}
|
|
if err := r.ProcessWorkflow(workflow, text); err != nil {
|
|
gologger.Warningf("Could not run workflow for %s: %s\n", text, err)
|
|
}
|
|
}
|
|
}
|
|
|
|
// ProcessWorkflow towards an URL
|
|
func (r *Runner) ProcessWorkflow(workflow *workflows.Workflow, URL string) error {
|
|
script := tengo.NewScript([]byte(workflow.Logic))
|
|
script.SetImports(stdlib.GetModuleMap(stdlib.AllModuleNames()...))
|
|
var jar *cookiejar.Jar
|
|
if workflow.CookieReuse {
|
|
var err error
|
|
jar, err = cookiejar.New(nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
for name, value := range workflow.Variables {
|
|
var writer *bufio.Writer
|
|
if r.output != nil {
|
|
writer = bufio.NewWriter(r.output)
|
|
defer writer.Flush()
|
|
}
|
|
|
|
// Check if the template is an absolute path or relative path.
|
|
// If the path is absolute, use it. Otherwise,
|
|
if r.isRelative(value) {
|
|
newPath, err := r.resolvePath(value)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
value = newPath
|
|
}
|
|
|
|
// Single yaml provided
|
|
var templatesList []*workflows.Template
|
|
if strings.HasSuffix(value, ".yaml") {
|
|
t, err := templates.Parse(value)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
template := &workflows.Template{}
|
|
if len(t.BulkRequestsHTTP) > 0 {
|
|
template.HTTPOptions = &executer.HTTPOptions{
|
|
Debug: r.options.Debug,
|
|
Writer: writer,
|
|
Template: t,
|
|
Timeout: r.options.Timeout,
|
|
Retries: r.options.Retries,
|
|
ProxyURL: r.options.ProxyURL,
|
|
ProxySocksURL: r.options.ProxySocksURL,
|
|
CustomHeaders: r.options.CustomHeaders,
|
|
CookieJar: jar,
|
|
}
|
|
} else if len(t.RequestsDNS) > 0 {
|
|
template.DNSOptions = &executer.DNSOptions{
|
|
Debug: r.options.Debug,
|
|
Template: t,
|
|
Writer: writer,
|
|
}
|
|
}
|
|
if template.DNSOptions != nil || template.HTTPOptions != nil {
|
|
templatesList = append(templatesList, template)
|
|
}
|
|
} else {
|
|
matches := []string{}
|
|
|
|
err := godirwalk.Walk(value, &godirwalk.Options{
|
|
Callback: func(path string, d *godirwalk.Dirent) error {
|
|
if !d.IsDir() && strings.HasSuffix(path, ".yaml") {
|
|
matches = append(matches, path)
|
|
}
|
|
return nil
|
|
},
|
|
ErrorCallback: func(path string, err error) godirwalk.ErrorAction {
|
|
return godirwalk.SkipNode
|
|
},
|
|
Unsorted: true,
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// 0 matches means no templates were found in directory
|
|
if len(matches) == 0 {
|
|
return errors.New("no match found in the directory")
|
|
}
|
|
|
|
for _, match := range matches {
|
|
t, err := templates.Parse(match)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
template := &workflows.Template{}
|
|
if len(t.BulkRequestsHTTP) > 0 {
|
|
template.HTTPOptions = &executer.HTTPOptions{
|
|
Debug: r.options.Debug,
|
|
Writer: writer,
|
|
Template: t,
|
|
Timeout: r.options.Timeout,
|
|
Retries: r.options.Retries,
|
|
ProxyURL: r.options.ProxyURL,
|
|
ProxySocksURL: r.options.ProxySocksURL,
|
|
CustomHeaders: r.options.CustomHeaders,
|
|
CookieJar: jar,
|
|
}
|
|
} else if len(t.RequestsDNS) > 0 {
|
|
template.DNSOptions = &executer.DNSOptions{
|
|
Debug: r.options.Debug,
|
|
Template: t,
|
|
Writer: writer,
|
|
}
|
|
}
|
|
if template.DNSOptions != nil || template.HTTPOptions != nil {
|
|
templatesList = append(templatesList, template)
|
|
}
|
|
}
|
|
}
|
|
|
|
script.Add(name, &workflows.NucleiVar{Templates: templatesList, URL: URL})
|
|
}
|
|
|
|
_, err := script.RunContext(context.Background())
|
|
if err != nil {
|
|
gologger.Errorf("Could not execute workflow '%s': %s\n", workflow.ID, err)
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (r *Runner) parse(file string) (interface{}, error) {
|
|
// check if it's a template
|
|
template, errTemplate := templates.Parse(file)
|
|
if errTemplate == nil {
|
|
return template, nil
|
|
}
|
|
|
|
// check if it's a workflow
|
|
workflow, errWorkflow := workflows.Parse(file)
|
|
if errWorkflow == nil {
|
|
return workflow, nil
|
|
}
|
|
|
|
if errTemplate != nil {
|
|
return nil, errTemplate
|
|
}
|
|
if errWorkflow != nil {
|
|
return nil, errWorkflow
|
|
}
|
|
return nil, errors.New("unknown error occured")
|
|
}
|