mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 21:05:26 +00:00
* Add s3 bucket template provider - Refactor the custom github template code - add interface for template provider * Validate if aws creds are passed if bucket flag - refactor s3 provider struct to take client - add function which returns the aws s3 client - update error messages * Add aws s3 bucket flags documentation in README.md - Rename the github_test.go to customTemplate_test.go * go mod update * Move template provider code to pkg/external/customtemplates dir * Added initial data_source sync to cloud * Misc * Add pagination to scan output and scan list (#2858) * Add pagination to scan output and scan list * Use time based parameters instead of page numbers * Fix linting errors * Do not check limits at client, check at server * Remove unused constant * Misc update * Removed unnecessary flags * Misc * Misc * Misc endpoint additions * Added more routes * Typo fix * Misc fixes * Misc * Misc fixes to cloud target logic + use int for IDs * Misc * Misc fixes * Misc * Misc fixes * readme update * Add JSON output support for list-scan option (#2876) * Add JSON output support for list-scan option * Fix typo in cloud JSON output description * Following changes - Update status(finished, running) to be lower-case by default - Convert status to upper-case in DisplayScanList() * Update status to be lower-case by default * Remove additional json flag, instead use existing * Merge conflict * Accomodate comment changes and restructure code Co-authored-by: Jaideep K <jaideep@one2n.in> * Use integer IDs for scan tasks * Added get-templates-targets endpoint + JSON + validation * Added target count list * misc option / description updates * Added changes as per code review * duplicate options + typo updates * Added tablewriter for tabular data writing by default * Fixed list scan endpoint * Review changes * workflow fix * Added cloud tags etc based filtering (#3070) * Added omitempty for filtering request * go mod tidy * misc format update Co-authored-by: shubhamrasal <shubhamdharmarasal@gmail.com> Co-authored-by: Ice3man <nizamulrana@gmail.com> Co-authored-by: Jaideep Khandelwal <jdk2588@gmail.com> Co-authored-by: Siddharth Shashikar <60960197+shashikarsiddharth@users.noreply.github.com> Co-authored-by: Jaideep K <jaideep@one2n.in>
341 lines
11 KiB
Go
341 lines
11 KiB
Go
package runner
|
|
|
|
import (
|
|
"bufio"
|
|
"fmt"
|
|
"io"
|
|
"log"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/go-playground/validator/v10"
|
|
|
|
"github.com/projectdiscovery/goflags"
|
|
"github.com/projectdiscovery/gologger"
|
|
"github.com/projectdiscovery/gologger/formatter"
|
|
"github.com/projectdiscovery/gologger/levels"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/catalog/config"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/common/protocolinit"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/common/utils/vardump"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/headless/engine"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/types"
|
|
"github.com/projectdiscovery/stringsutil"
|
|
fileutil "github.com/projectdiscovery/utils/file"
|
|
)
|
|
|
|
func ConfigureOptions() error {
|
|
isFromFileFunc := func(s string) bool {
|
|
return !isTemplate(s)
|
|
}
|
|
goflags.FileNormalizedStringSliceOptions.IsFromFile = isFromFileFunc
|
|
goflags.FileStringSliceOptions.IsFromFile = isFromFileFunc
|
|
goflags.FileCommaSeparatedStringSliceOptions.IsFromFile = isFromFileFunc
|
|
return nil
|
|
}
|
|
|
|
// ParseOptions parses the command line flags provided by a user
|
|
func ParseOptions(options *types.Options) {
|
|
// Check if stdin pipe was given
|
|
options.Stdin = !options.DisableStdin && fileutil.HasStdin()
|
|
|
|
// Read the inputs from env variables that not passed by flag.
|
|
readEnvInputVars(options)
|
|
|
|
// Read the inputs and configure the logging
|
|
configureOutput(options)
|
|
// Show the user the banner
|
|
showBanner()
|
|
|
|
if options.TemplatesDirectory != "" && !filepath.IsAbs(options.TemplatesDirectory) {
|
|
cwd, _ := os.Getwd()
|
|
options.TemplatesDirectory = filepath.Join(cwd, options.TemplatesDirectory)
|
|
}
|
|
if options.Version {
|
|
gologger.Info().Msgf("Current Version: %s\n", config.Version)
|
|
os.Exit(0)
|
|
}
|
|
if options.ShowVarDump {
|
|
vardump.EnableVarDump = true
|
|
}
|
|
if options.TemplatesVersion {
|
|
configuration, err := config.ReadConfiguration()
|
|
if err != nil {
|
|
gologger.Fatal().Msgf("Could not read template configuration: %s\n", err)
|
|
}
|
|
gologger.Info().Msgf("Public nuclei-templates version: %s (%s)\n", configuration.TemplateVersion, configuration.TemplatesDirectory)
|
|
if configuration.CustomS3TemplatesDirectory != "" {
|
|
gologger.Info().Msgf("Custom S3 templates location: %s\n", configuration.CustomS3TemplatesDirectory)
|
|
}
|
|
if configuration.CustomGithubTemplatesDirectory != "" {
|
|
gologger.Info().Msgf("Custom Github templates location: %s ", configuration.CustomGithubTemplatesDirectory)
|
|
}
|
|
os.Exit(0)
|
|
}
|
|
if options.ShowActions {
|
|
gologger.Info().Msgf("Showing available headless actions: ")
|
|
for action := range engine.ActionStringToAction {
|
|
gologger.Print().Msgf("\t%s", action)
|
|
}
|
|
os.Exit(0)
|
|
}
|
|
if options.StoreResponseDir != DefaultDumpTrafficOutputFolder && !options.StoreResponse {
|
|
gologger.Debug().Msgf("Store response directory specified, enabling \"store-resp\" flag automatically\n")
|
|
options.StoreResponse = true
|
|
}
|
|
// Validate the options passed by the user and if any
|
|
// invalid options have been used, exit.
|
|
if err := validateOptions(options); err != nil {
|
|
gologger.Fatal().Msgf("Program exiting: %s\n", err)
|
|
}
|
|
|
|
// Load the resolvers if user asked for them
|
|
loadResolvers(options)
|
|
|
|
// removes all cli variables containing payloads and add them to the internal struct
|
|
for key, value := range options.Vars.AsMap() {
|
|
if fileutil.FileExists(value.(string)) {
|
|
_ = options.Vars.Del(key)
|
|
options.AddVarPayload(key, value)
|
|
}
|
|
}
|
|
|
|
err := protocolinit.Init(options)
|
|
if err != nil {
|
|
gologger.Fatal().Msgf("Could not initialize protocols: %s\n", err)
|
|
}
|
|
|
|
// Set Github token in env variable. runner.getGHClientWithToken() reads token from env
|
|
if options.GithubToken != "" && os.Getenv("GITHUB_TOKEN") != options.GithubToken {
|
|
os.Setenv("GITHUB_TOKEN", options.GithubToken)
|
|
}
|
|
|
|
if options.UncoverQuery != nil {
|
|
options.Uncover = true
|
|
if len(options.UncoverEngine) == 0 {
|
|
options.UncoverEngine = append(options.UncoverEngine, "shodan")
|
|
}
|
|
}
|
|
}
|
|
|
|
// validateOptions validates the configuration options passed
|
|
func validateOptions(options *types.Options) error {
|
|
validate := validator.New()
|
|
if err := validate.Struct(options); err != nil {
|
|
if _, ok := err.(*validator.InvalidValidationError); ok {
|
|
return err
|
|
}
|
|
errs := []string{}
|
|
for _, err := range err.(validator.ValidationErrors) {
|
|
errs = append(errs, err.Namespace()+": "+err.Tag())
|
|
}
|
|
return errors.Wrap(errors.New(strings.Join(errs, ", ")), "validation failed for these fields")
|
|
}
|
|
if options.Verbose && options.Silent {
|
|
return errors.New("both verbose and silent mode specified")
|
|
}
|
|
|
|
if options.FollowHostRedirects && options.FollowRedirects {
|
|
return errors.New("both follow host redirects and follow redirects specified")
|
|
}
|
|
if options.ShouldFollowHTTPRedirects() && options.DisableRedirects {
|
|
return errors.New("both follow redirects and disable redirects specified")
|
|
}
|
|
// loading the proxy server list from file or cli and test the connectivity
|
|
if err := loadProxyServers(options); err != nil {
|
|
return err
|
|
}
|
|
if options.Validate {
|
|
validateTemplatePaths(options.TemplatesDirectory, options.Templates, options.Workflows)
|
|
}
|
|
|
|
// Verify if any of the client certificate options were set since it requires all three to work properly
|
|
if len(options.ClientCertFile) > 0 || len(options.ClientKeyFile) > 0 || len(options.ClientCAFile) > 0 {
|
|
if len(options.ClientCertFile) == 0 || len(options.ClientKeyFile) == 0 || len(options.ClientCAFile) == 0 {
|
|
return errors.New("if a client certification option is provided, then all three must be provided")
|
|
}
|
|
validateCertificatePaths([]string{options.ClientCertFile, options.ClientKeyFile, options.ClientCAFile})
|
|
}
|
|
// Verify aws secrets are passed if s3 template bucket passed
|
|
if options.AwsBucketName != "" && options.UpdateTemplates {
|
|
missing := validateMissingS3Options(options)
|
|
if missing != nil {
|
|
return fmt.Errorf("aws s3 bucket details are missing. Please provide %s", strings.Join(missing, ","))
|
|
}
|
|
}
|
|
|
|
// verify that a valid ip version type was selected (4, 6)
|
|
if len(options.IPVersion) == 0 {
|
|
// add ipv4 as default
|
|
options.IPVersion = append(options.IPVersion, "4")
|
|
}
|
|
var useIPV4, useIPV6 bool
|
|
for _, ipv := range options.IPVersion {
|
|
switch ipv {
|
|
case "4":
|
|
useIPV4 = true
|
|
case "6":
|
|
useIPV6 = true
|
|
default:
|
|
return fmt.Errorf("unsupported ip version: %s", ipv)
|
|
}
|
|
}
|
|
if !useIPV4 && !useIPV6 {
|
|
return errors.New("ipv4 and/or ipv6 must be selected")
|
|
}
|
|
|
|
// Validate cloud option
|
|
if err := validateCloudOptions(options); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func validateCloudOptions(options *types.Options) error {
|
|
if options.HasCloudOptions() && !options.Cloud {
|
|
return errors.New("cloud flags cannot be used without cloud option")
|
|
}
|
|
if options.Cloud {
|
|
if options.CloudAPIKey == "" {
|
|
return errors.New("missing NUCLEI_CLOUD_API env variable")
|
|
}
|
|
var missing []string
|
|
switch options.AddDatasource {
|
|
case "s3":
|
|
missing = validateMissingS3Options(options)
|
|
case "github":
|
|
missing = validateMissingGithubOptions(options)
|
|
}
|
|
if len(missing) > 0 {
|
|
return fmt.Errorf("missing %v env variables", strings.Join(missing, ", "))
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func validateMissingS3Options(options *types.Options) []string {
|
|
var missing []string
|
|
if options.AwsBucketName == "" {
|
|
missing = append(missing, "AWS_TEMPLATE_BUCKET")
|
|
}
|
|
if options.AwsAccessKey == "" {
|
|
missing = append(missing, "AWS_ACCESS_KEY")
|
|
}
|
|
if options.AwsSecretKey == "" {
|
|
missing = append(missing, "AWS_SECRET_KEY")
|
|
}
|
|
if options.AwsRegion == "" {
|
|
missing = append(missing, "AWS_REGION")
|
|
}
|
|
return missing
|
|
}
|
|
|
|
func validateMissingGithubOptions(options *types.Options) []string {
|
|
var missing []string
|
|
if options.GithubToken == "" {
|
|
missing = append(missing, "GITHUB_TOKEN")
|
|
}
|
|
if len(options.GithubTemplateRepo) == 0 {
|
|
missing = append(missing, "GITHUB_TEMPLATE_REPO")
|
|
}
|
|
return missing
|
|
}
|
|
|
|
// configureOutput configures the output logging levels to be displayed on the screen
|
|
func configureOutput(options *types.Options) {
|
|
// If the user desires verbose output, show verbose output
|
|
if options.Verbose || options.Validate {
|
|
gologger.DefaultLogger.SetMaxLevel(levels.LevelVerbose)
|
|
}
|
|
if options.Debug || options.DebugRequests || options.DebugResponse {
|
|
gologger.DefaultLogger.SetMaxLevel(levels.LevelDebug)
|
|
}
|
|
if options.NoColor {
|
|
gologger.DefaultLogger.SetFormatter(formatter.NewCLI(true))
|
|
}
|
|
if options.Silent {
|
|
gologger.DefaultLogger.SetMaxLevel(levels.LevelSilent)
|
|
}
|
|
|
|
// disable standard logger (ref: https://github.com/golang/go/issues/19895)
|
|
log.SetFlags(0)
|
|
log.SetOutput(io.Discard)
|
|
}
|
|
|
|
// loadResolvers loads resolvers from both user provided flag and file
|
|
func loadResolvers(options *types.Options) {
|
|
if options.ResolversFile == "" {
|
|
return
|
|
}
|
|
|
|
file, err := os.Open(options.ResolversFile)
|
|
if err != nil {
|
|
gologger.Fatal().Msgf("Could not open resolvers file: %s\n", err)
|
|
}
|
|
defer file.Close()
|
|
|
|
scanner := bufio.NewScanner(file)
|
|
for scanner.Scan() {
|
|
part := scanner.Text()
|
|
if part == "" {
|
|
continue
|
|
}
|
|
if strings.Contains(part, ":") {
|
|
options.InternalResolversList = append(options.InternalResolversList, part)
|
|
} else {
|
|
options.InternalResolversList = append(options.InternalResolversList, part+":53")
|
|
}
|
|
}
|
|
}
|
|
|
|
func validateTemplatePaths(templatesDirectory string, templatePaths, workflowPaths []string) {
|
|
allGivenTemplatePaths := append(templatePaths, workflowPaths...)
|
|
for _, templatePath := range allGivenTemplatePaths {
|
|
if templatesDirectory != templatePath && filepath.IsAbs(templatePath) {
|
|
fileInfo, err := os.Stat(templatePath)
|
|
if err == nil && fileInfo.IsDir() {
|
|
relativizedPath, err2 := filepath.Rel(templatesDirectory, templatePath)
|
|
if err2 != nil || (len(relativizedPath) >= 2 && relativizedPath[:2] == "..") {
|
|
gologger.Warning().Msgf("The given path (%s) is outside the default template directory path (%s)! "+
|
|
"Referenced sub-templates with relative paths in workflows will be resolved against the default template directory.", templatePath, templatesDirectory)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func validateCertificatePaths(certificatePaths []string) {
|
|
for _, certificatePath := range certificatePaths {
|
|
if _, err := os.Stat(certificatePath); os.IsNotExist(err) {
|
|
// The provided path to the PEM certificate does not exist for the client authentication. As this is
|
|
// required for successful authentication, log and return an error
|
|
gologger.Fatal().Msgf("The given path (%s) to the certificate does not exist!", certificatePath)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
// Read the input from env and set options
|
|
func readEnvInputVars(options *types.Options) {
|
|
if strings.EqualFold(os.Getenv("NUCLEI_CLOUD"), "true") {
|
|
options.Cloud = true
|
|
}
|
|
if options.CloudURL = os.Getenv("NUCLEI_CLOUD_SERVER"); options.CloudURL == "" {
|
|
options.CloudURL = "https://cloud-dev.nuclei.sh"
|
|
}
|
|
options.CloudAPIKey = os.Getenv("NUCLEI_CLOUD_API")
|
|
|
|
options.GithubToken = os.Getenv("GITHUB_TOKEN")
|
|
repolist := os.Getenv("GITHUB_TEMPLATE_REPO")
|
|
if repolist != "" {
|
|
options.GithubTemplateRepo = append(options.GithubTemplateRepo, stringsutil.SplitAny(repolist, ",")...)
|
|
}
|
|
options.AwsAccessKey = os.Getenv("AWS_ACCESS_KEY")
|
|
options.AwsSecretKey = os.Getenv("AWS_SECRET_KEY")
|
|
options.AwsBucketName = os.Getenv("AWS_TEMPLATE_BUCKET")
|
|
options.AwsRegion = os.Getenv("AWS_REGION")
|
|
}
|