2020-12-21 14:31:32 +05:30
package operators
import (
2022-03-11 13:32:55 +01:00
"fmt"
2021-10-05 22:02:09 +03:00
"strconv"
2020-12-25 02:24:55 +05:30
"github.com/pkg/errors"
2021-07-19 21:04:08 +03:00
2020-12-21 14:31:32 +05:30
"github.com/projectdiscovery/nuclei/v2/pkg/operators/extractors"
"github.com/projectdiscovery/nuclei/v2/pkg/operators/matchers"
2022-03-11 13:32:55 +01:00
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/common/generators"
2022-03-02 08:31:23 +01:00
"github.com/projectdiscovery/sliceutil"
2020-12-21 14:31:32 +05:30
)
// Operators contains the operators that can be applied on protocols
type Operators struct {
2021-07-27 16:03:56 +05:30
// description: |
// Matchers contains the detection mechanism for the request to identify
// whether the request was successful by doing pattern matching
// on request/responses.
//
2021-09-07 17:31:46 +03:00
// Multiple matchers can be combined with `matcher-condition` flag
2021-07-27 16:03:56 +05:30
// which accepts either `and` or `or` as argument.
2021-08-23 23:50:45 +05:30
Matchers [ ] * matchers . Matcher ` yaml:"matchers,omitempty" jsonschema:"title=matchers to run on response,description=Detection mechanism to identify whether the request was successful by doing pattern matching" `
2021-07-27 16:03:56 +05:30
// description: |
// Extractors contains the extraction mechanism for the request to identify
// and extract parts of the response.
2021-08-23 23:50:45 +05:30
Extractors [ ] * extractors . Extractor ` yaml:"extractors,omitempty" jsonschema:"title=extractors to run on response,description=Extractors contains the extraction mechanism for the request to identify and extract parts of the response" `
2021-07-27 16:03:56 +05:30
// description: |
// MatchersCondition is the condition between the matchers. Default is OR.
// values:
// - "and"
// - "or"
2021-08-23 23:50:45 +05:30
MatchersCondition string ` yaml:"matchers-condition,omitempty" jsonschema:"title=condition between the matchers,description=Conditions between the matchers,enum=and,enum=or" `
2020-12-21 14:31:32 +05:30
// cached variables that may be used along with request.
matchersCondition matchers . ConditionType
}
2020-12-25 02:24:55 +05:30
// Compile compiles the operators as well as their corresponding matchers and extractors
2021-10-01 14:30:04 +03:00
func ( operators * Operators ) Compile ( ) error {
if operators . MatchersCondition != "" {
operators . matchersCondition = matchers . ConditionTypes [ operators . MatchersCondition ]
2020-12-25 02:24:55 +05:30
} else {
2021-10-01 14:30:04 +03:00
operators . matchersCondition = matchers . ORCondition
2020-12-25 02:24:55 +05:30
}
2021-10-01 14:30:04 +03:00
for _ , matcher := range operators . Matchers {
2020-12-25 02:24:55 +05:30
if err := matcher . CompileMatchers ( ) ; err != nil {
return errors . Wrap ( err , "could not compile matcher" )
}
}
2021-10-01 14:30:04 +03:00
for _ , extractor := range operators . Extractors {
2020-12-25 02:24:55 +05:30
if err := extractor . CompileExtractors ( ) ; err != nil {
return errors . Wrap ( err , "could not compile extractor" )
}
}
return nil
}
2020-12-21 14:31:32 +05:30
// GetMatchersCondition returns the condition for the matchers
2021-10-01 14:30:04 +03:00
func ( operators * Operators ) GetMatchersCondition ( ) matchers . ConditionType {
return operators . matchersCondition
2020-12-21 14:31:32 +05:30
}
2020-12-24 12:56:28 +05:30
// Result is a result structure created from operators running on data.
type Result struct {
2021-02-21 16:31:34 +05:30
// Matched is true if any matchers matched
Matched bool
// Extracted is true if any result type values were extracted
Extracted bool
2020-12-24 12:56:28 +05:30
// Matches is a map of matcher names that we matched
2021-10-01 14:24:45 +03:00
Matches map [ string ] [ ] string
2020-12-24 12:56:28 +05:30
// Extracts contains all the data extracted from inputs
Extracts map [ string ] [ ] string
2020-12-24 20:47:41 +05:30
// OutputExtracts is the list of extracts to be displayed on screen.
OutputExtracts [ ] string
2022-02-26 09:06:43 +01:00
outputUnique map [ string ] struct { }
2022-01-13 13:22:43 +05:30
2020-12-24 12:56:28 +05:30
// DynamicValues contains any dynamic values to be templated
2021-11-24 21:08:08 +05:30
DynamicValues map [ string ] [ ] string
2020-12-29 01:30:07 +05:30
// PayloadValues contains payload values provided by user. (Optional)
PayloadValues map [ string ] interface { }
2022-02-10 15:59:05 +05:30
// Optional lineCounts for file protocol
LineCount string
2020-12-24 12:56:28 +05:30
}
2021-11-24 21:08:08 +05:30
// MakeDynamicValuesCallback takes an input dynamic values map and calls
// the callback function with all variations of the data in input in form
// of map[string]string (interface{}).
2021-11-24 22:40:17 +05:30
func MakeDynamicValuesCallback ( input map [ string ] [ ] string , iterateAllValues bool , callback func ( map [ string ] interface { } ) bool ) {
2021-11-24 21:08:08 +05:30
output := make ( map [ string ] interface { } , len ( input ) )
2021-11-24 22:40:17 +05:30
if ! iterateAllValues {
for k , v := range input {
if len ( v ) > 0 {
output [ k ] = v [ 0 ]
}
}
callback ( output )
return
}
2021-11-24 21:08:08 +05:30
inputIndex := make ( map [ string ] int , len ( input ) )
var maxValue int
for _ , v := range input {
if len ( v ) > maxValue {
maxValue = len ( v )
}
}
for i := 0 ; i < maxValue ; i ++ {
for k , v := range input {
if len ( v ) == 0 {
continue
}
if len ( v ) == 1 {
output [ k ] = v [ 0 ]
continue
}
if gotIndex , ok := inputIndex [ k ] ; ! ok {
inputIndex [ k ] = 0
output [ k ] = v [ 0 ]
} else {
newIndex := gotIndex + 1
if newIndex >= len ( v ) {
output [ k ] = v [ len ( v ) - 1 ]
continue
}
output [ k ] = v [ newIndex ]
inputIndex [ k ] = newIndex
}
}
// skip if the callback says so
if callback ( output ) {
return
}
}
}
2021-04-18 16:10:10 +05:30
// Merge merges a result structure into the other.
func ( r * Result ) Merge ( result * Result ) {
if ! r . Matched && result . Matched {
r . Matched = result . Matched
}
if ! r . Extracted && result . Extracted {
r . Extracted = result . Extracted
}
for k , v := range result . Matches {
2022-03-02 08:31:23 +01:00
r . Matches [ k ] = sliceutil . Dedupe ( append ( r . Matches [ k ] , v ... ) )
2021-04-18 16:10:10 +05:30
}
for k , v := range result . Extracts {
2022-03-02 08:31:23 +01:00
r . Extracts [ k ] = sliceutil . Dedupe ( append ( r . Extracts [ k ] , v ... ) )
2021-04-18 16:10:10 +05:30
}
2022-01-13 13:22:43 +05:30
2022-02-26 09:06:43 +01:00
r . outputUnique = make ( map [ string ] struct { } )
2022-01-13 13:22:43 +05:30
output := r . OutputExtracts
r . OutputExtracts = make ( [ ] string , 0 , len ( output ) )
for _ , v := range output {
2022-02-26 09:06:43 +01:00
if _ , ok := r . outputUnique [ v ] ; ! ok {
r . outputUnique [ v ] = struct { } { }
2022-01-13 13:22:43 +05:30
r . OutputExtracts = append ( r . OutputExtracts , v )
}
}
for _ , v := range result . OutputExtracts {
2022-02-26 09:06:43 +01:00
if _ , ok := r . outputUnique [ v ] ; ! ok {
r . outputUnique [ v ] = struct { } { }
2022-01-13 13:22:43 +05:30
r . OutputExtracts = append ( r . OutputExtracts , v )
}
}
2021-04-18 16:10:10 +05:30
for k , v := range result . DynamicValues {
r . DynamicValues [ k ] = v
}
for k , v := range result . PayloadValues {
r . PayloadValues [ k ] = v
}
}
2020-12-24 20:47:41 +05:30
// MatchFunc performs matching operation for a matcher on model and returns true or false.
2021-09-29 19:43:46 +03:00
type MatchFunc func ( data map [ string ] interface { } , matcher * matchers . Matcher ) ( bool , [ ] string )
2020-12-24 20:47:41 +05:30
2021-09-07 17:31:46 +03:00
// ExtractFunc performs extracting operation for an extractor on model and returns true or false.
2020-12-24 20:47:41 +05:30
type ExtractFunc func ( data map [ string ] interface { } , matcher * extractors . Extractor ) map [ string ] struct { }
2020-12-24 12:56:28 +05:30
// Execute executes the operators on data and returns a result structure
2021-10-12 20:06:55 +03:00
func ( operators * Operators ) Execute ( data map [ string ] interface { } , match MatchFunc , extract ExtractFunc , isDebug bool ) ( * Result , bool ) {
2021-10-01 14:30:04 +03:00
matcherCondition := operators . GetMatchersCondition ( )
2020-12-24 12:56:28 +05:30
2020-12-30 13:26:55 +05:30
var matches bool
2020-12-24 12:56:28 +05:30
result := & Result {
2021-10-01 14:24:45 +03:00
Matches : make ( map [ string ] [ ] string ) ,
2020-12-24 12:56:28 +05:30
Extracts : make ( map [ string ] [ ] string ) ,
2021-11-24 21:08:08 +05:30
DynamicValues : make ( map [ string ] [ ] string ) ,
2022-02-26 09:06:43 +01:00
outputUnique : make ( map [ string ] struct { } ) ,
2020-12-24 12:56:28 +05:30
}
2021-04-18 16:10:10 +05:30
2021-03-09 16:35:53 +05:30
// Start with the extractors first and evaluate them.
2021-10-01 14:30:04 +03:00
for _ , extractor := range operators . Extractors {
2020-12-24 20:47:41 +05:30
var extractorResults [ ] string
for match := range extract ( data , extractor ) {
2020-12-24 12:56:28 +05:30
extractorResults = append ( extractorResults , match )
if extractor . Internal {
2021-11-24 21:08:08 +05:30
if data , ok := result . DynamicValues [ extractor . Name ] ; ! ok {
result . DynamicValues [ extractor . Name ] = [ ] string { match }
} else {
result . DynamicValues [ extractor . Name ] = append ( data , match )
2020-12-24 12:56:28 +05:30
}
} else {
2022-02-26 09:06:43 +01:00
if _ , ok := result . outputUnique [ match ] ; ! ok {
2022-01-13 13:22:43 +05:30
result . OutputExtracts = append ( result . OutputExtracts , match )
2022-02-26 09:06:43 +01:00
result . outputUnique [ match ] = struct { } { }
2022-01-13 13:22:43 +05:30
}
2020-12-24 12:56:28 +05:30
}
}
2021-01-11 21:11:35 +05:30
if len ( extractorResults ) > 0 && ! extractor . Internal && extractor . Name != "" {
2020-12-30 13:26:55 +05:30
result . Extracts [ extractor . Name ] = extractorResults
}
2020-12-24 12:56:28 +05:30
}
2022-03-11 13:32:55 +01:00
// expose dynamic values to same request matchers
if len ( result . DynamicValues ) > 0 {
dataDynamicValues := make ( map [ string ] interface { } )
for dynName , dynValues := range result . DynamicValues {
if len ( dynValues ) > 1 {
for dynIndex , dynValue := range dynValues {
dynKeyName := fmt . Sprintf ( "%s%d" , dynName , dynIndex )
dataDynamicValues [ dynKeyName ] = dynValue
}
} else {
dataDynamicValues [ dynName ] = dynValues [ 0 ]
}
}
data = generators . MergeMaps ( data , dataDynamicValues )
}
2021-10-05 22:02:09 +03:00
for matcherIndex , matcher := range operators . Matchers {
2021-10-01 14:24:45 +03:00
if isMatch , matched := match ( data , matcher ) ; isMatch {
2021-10-12 20:06:55 +03:00
if isDebug { // matchers without an explicit name or with AND condition should only be made visible if debug is enabled
matcherName := getMatcherName ( matcher , matcherIndex )
result . Matches [ matcherName ] = matched
} else { // if it's a "named" matcher with OR condition, then display it
if matcherCondition == matchers . ORCondition && matcher . Name != "" {
result . Matches [ matcher . Name ] = matched
}
}
2021-03-09 16:35:53 +05:30
matches = true
2021-09-29 19:43:46 +03:00
} else if matcherCondition == matchers . ANDCondition {
if len ( result . DynamicValues ) > 0 {
return result , true
}
return nil , false
2021-03-09 16:35:53 +05:30
}
}
2021-02-21 16:31:34 +05:30
result . Matched = matches
result . Extracted = len ( result . OutputExtracts ) > 0
if len ( result . DynamicValues ) > 0 {
return result , true
}
2021-09-16 20:35:43 +03:00
2021-09-29 19:43:46 +03:00
// Don't print if we have matchers, and they have not matched, regardless of extractor
2021-10-01 14:30:04 +03:00
if len ( operators . Matchers ) > 0 && ! matches {
2020-12-30 13:26:55 +05:30
return nil , false
}
2020-12-24 12:56:28 +05:30
// Write a final string of output if matcher type is
// AND or if we have extractors for the mechanism too.
2021-02-21 16:31:34 +05:30
if len ( result . Extracts ) > 0 || len ( result . OutputExtracts ) > 0 || matches {
2020-12-24 12:56:28 +05:30
return result , true
}
return nil , false
}
2021-07-06 18:34:25 +05:30
2021-10-05 22:02:09 +03:00
func getMatcherName ( matcher * matchers . Matcher , matcherIndex int ) string {
if matcher . Name != "" {
return matcher . Name
} else {
2021-11-19 04:54:09 -06:00
return matcher . Type . String ( ) + "-" + strconv . Itoa ( matcherIndex + 1 ) // making the index start from 1 to be more readable
2021-10-05 22:02:09 +03:00
}
}
2021-07-06 18:34:25 +05:30
// ExecuteInternalExtractors executes internal dynamic extractors
2021-10-01 14:30:04 +03:00
func ( operators * Operators ) ExecuteInternalExtractors ( data map [ string ] interface { } , extract ExtractFunc ) map [ string ] interface { } {
2021-07-06 18:34:25 +05:30
dynamicValues := make ( map [ string ] interface { } )
// Start with the extractors first and evaluate them.
2021-10-01 14:30:04 +03:00
for _ , extractor := range operators . Extractors {
2021-07-06 18:34:25 +05:30
if ! extractor . Internal {
continue
}
for match := range extract ( data , extractor ) {
if _ , ok := dynamicValues [ extractor . Name ] ; ! ok {
dynamicValues [ extractor . Name ] = match
}
}
}
return dynamicValues
}