Path: blob/dev/pkg/protocols/common/automaticscan/doc.go
2072 views
// Package automaticscan implements automatic technology based template1// execution for a nuclei instance.2//3// First wappalyzer based technology detection is performed and templates4// are executed based on the results found. The results of wappalyzer5// technology detection are lowercased and split on space characters in the name,6// which are then used as tags for the execution of the templates.7//8// Example -9//10// "Amazon Web Services,Jenkins,Atlassian Jira" -> "amazon,web,services,jenkins,atlassian,jira".11//12// Wappalyzergo (https://github.com/projectdiscovery/wappalyzergo) is used for wappalyzer tech13// detection.14//15// The logic is very simple and can be further improved to increase the coverage of16// this mode of nuclei execution.17package automaticscan181920