2020-12-21 14:31:32 +05:30
package http
2020-12-22 04:11:07 +05:30
2020-12-26 14:55:15 +05:30
import (
2021-10-07 12:36:27 +02:00
"fmt"
2021-01-12 02:44:51 +05:30
"strings"
2020-12-28 01:33:50 +05:30
"github.com/pkg/errors"
2021-09-07 17:31:46 +03:00
2021-10-07 12:36:27 +02:00
"github.com/projectdiscovery/fileutil"
2020-12-28 01:33:50 +05:30
"github.com/projectdiscovery/nuclei/v2/pkg/operators"
2020-12-26 14:55:15 +05:30
"github.com/projectdiscovery/nuclei/v2/pkg/protocols"
2021-10-07 12:36:27 +02:00
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/common/expressions"
2020-12-26 14:55:15 +05:30
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/common/generators"
2020-12-28 01:33:50 +05:30
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/http/httpclientpool"
"github.com/projectdiscovery/rawhttp"
"github.com/projectdiscovery/retryablehttp-go"
2020-12-26 14:55:15 +05:30
)
2020-12-22 04:11:07 +05:30
// Request contains a http request to be made from a template
type Request struct {
2021-03-09 15:00:22 +05:30
// Operators for the current request go here.
operators . Operators ` yaml:",inline" `
2021-07-27 16:03:56 +05:30
// description: |
// Path contains the path/s for the HTTP requests. It supports variables
// as placeholders.
// examples:
// - name: Some example path values
// value: >
// []string{"{{BaseURL}}", "{{BaseURL}}/+CSCOU+/../+CSCOE+/files/file_list.json?path=/sessions"}
2021-08-23 23:50:45 +05:30
Path [ ] string ` yaml:"path,omitempty" jsonschema:"title=path(s) for the http request,description=Path(s) to send http requests to" `
2021-07-27 16:03:56 +05:30
// description: |
// Raw contains HTTP Requests in Raw format.
// examples:
// - name: Some example raw requests
// value: |
// []string{"GET /etc/passwd HTTP/1.1\nHost:\nContent-Length: 4", "POST /.%0d./.%0d./.%0d./.%0d./bin/sh HTTP/1.1\nHost: {{Hostname}}\nUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:71.0) Gecko/20100101 Firefox/71.0\nContent-Length: 1\nConnection: close\n\necho\necho\ncat /etc/passwd 2>&1"}
2021-08-23 23:50:45 +05:30
Raw [ ] string ` yaml:"raw,omitempty" jsonschema:"http requests in raw format,description=HTTP Requests in Raw Format" `
2021-09-07 17:31:46 +03:00
// ID is the optional id of the request
2021-08-23 23:50:45 +05:30
ID string ` yaml:"id,omitempty" jsonschema:"title=id for the http request,description=ID for the HTTP Request" `
2021-07-27 16:03:56 +05:30
// description: |
// Name is the optional name of the request.
//
// If a name is specified, all the named request in a template can be matched upon
2021-11-25 18:54:16 +02:00
// in a combined manner allowing multi-request based matchers.
2021-08-23 23:50:45 +05:30
Name string ` yaml:"name,omitempty" jsonschema:"title=name for the http request,description=Optional name for the HTTP Request" `
2021-07-27 16:03:56 +05:30
// description: |
// Attack is the type of payload combinations to perform.
//
2021-11-25 18:54:16 +02:00
// batteringram is inserts the same payload into all defined payload positions at once, pitchfork combines multiple payload sets and clusterbomb generates
2021-07-27 16:03:56 +05:30
// permutations and combinations for all payloads.
// values:
2021-10-13 13:19:00 +05:30
// - "batteringram"
2021-07-27 16:03:56 +05:30
// - "pitchfork"
// - "clusterbomb"
2021-11-04 02:41:56 +05:30
AttackType generators . AttackTypeHolder ` yaml:"attack,omitempty" jsonschema:"title=attack is the payload combination,description=Attack is the type of payload combinations to perform,enum=batteringram,enum=pitchfork,enum=clusterbomb" `
2021-07-27 16:03:56 +05:30
// description: |
// Method is the HTTP Request Method.
2021-11-18 07:50:21 -06:00
Method HTTPMethodTypeHolder ` yaml:"method,omitempty" jsonschema:"title=method is the http request method,description=Method is the HTTP Request Method,enum=GET,enum=HEAD,enum=POST,enum=PUT,enum=DELETE,enum=CONNECT,enum=OPTIONS,enum=TRACE,enum=PATCH,enum=PURGE" `
2021-07-27 16:03:56 +05:30
// description: |
// Body is an optional parameter which contains HTTP Request body.
// examples:
// - name: Same Body for a Login POST request
// value: "\"username=test&password=test\""
2021-08-23 23:50:45 +05:30
Body string ` yaml:"body,omitempty" jsonschema:"title=body is the http request body,description=Body is an optional parameter which contains HTTP Request body" `
2021-07-27 16:03:56 +05:30
// description: |
// Payloads contains any payloads for the current request.
//
// Payloads support both key-values combinations where a list
// of payloads is provided, or optionally a single file can also
// be provided as payload which will be read on run-time.
2021-08-23 23:50:45 +05:30
Payloads map [ string ] interface { } ` yaml:"payloads,omitempty" jsonschema:"title=payloads for the http request,description=Payloads contains any payloads for the current request" `
2021-07-27 16:03:56 +05:30
// description: |
// Headers contains HTTP Headers to send with the request.
// examples:
// - value: |
// map[string]string{"Content-Type": "application/x-www-form-urlencoded", "Content-Length": "1", "Any-Header": "Any-Value"}
2021-08-23 23:50:45 +05:30
Headers map [ string ] string ` yaml:"headers,omitempty" jsonschema:"title=headers to send with the http request,description=Headers contains HTTP Headers to send with the request" `
2021-07-27 16:03:56 +05:30
// description: |
// RaceCount is the number of times to send a request in Race Condition Attack.
// examples:
// - name: Send a request 5 times
// value: "5"
2021-08-23 23:50:45 +05:30
RaceNumberRequests int ` yaml:"race_count,omitempty" jsonschema:"title=number of times to repeat request in race condition,description=Number of times to send a request in Race Condition Attack" `
2021-07-27 16:03:56 +05:30
// description: |
// MaxRedirects is the maximum number of redirects that should be followed.
// examples:
2021-09-16 11:34:23 -05:00
// - name: Follow up to 5 redirects
2021-07-27 16:03:56 +05:30
// value: "5"
2021-08-23 23:50:45 +05:30
MaxRedirects int ` yaml:"max-redirects,omitempty" jsonschema:"title=maximum number of redirects to follow,description=Maximum number of redirects that should be followed" `
2021-07-27 16:03:56 +05:30
// description: |
// PipelineConcurrentConnections is number of connections to create during pipelining.
// examples:
// - name: Create 40 concurrent connections
// value: 40
2021-08-23 23:50:45 +05:30
PipelineConcurrentConnections int ` yaml:"pipeline-concurrent-connections,omitempty" jsonschema:"title=number of pipelining connections,description=Number of connections to create during pipelining" `
2021-07-27 16:03:56 +05:30
// description: |
// PipelineRequestsPerConnection is number of requests to send per connection when pipelining.
// examples:
// - name: Send 100 requests per pipeline connection
// value: 100
2021-08-23 23:50:45 +05:30
PipelineRequestsPerConnection int ` yaml:"pipeline-requests-per-connection,omitempty" jsonschema:"title=number of requests to send per pipelining connections,description=Number of requests to send per connection when pipelining" `
2021-07-27 16:03:56 +05:30
// description: |
// Threads specifies number of threads to use sending requests. This enables Connection Pooling.
//
// Connection: Close attribute must not be used in request while using threads flag, otherwise
// pooling will fail and engine will continue to close connections after requests.
// examples:
// - name: Send requests using 10 concurrent threads
// value: 10
2021-08-23 23:50:45 +05:30
Threads int ` yaml:"threads,omitempty" jsonschema:"title=threads for sending requests,description=Threads specifies number of threads to use sending requests. This enables Connection Pooling" `
2021-07-27 16:03:56 +05:30
// description: |
// MaxSize is the maximum size of http response body to read in bytes.
// examples:
// - name: Read max 2048 bytes of the response
// value: 2048
2021-08-23 23:50:45 +05:30
MaxSize int ` yaml:"max-size,omitempty" jsonschema:"title=maximum http response body size,description=Maximum size of http response body to read in bytes" `
2021-03-09 15:00:22 +05:30
2021-08-04 14:20:48 +05:30
CompiledOperators * operators . Operators ` yaml:"-" `
2021-03-09 15:00:22 +05:30
options * protocols . ExecuterOptions
totalRequests int
customHeaders map [ string ] string
2021-11-05 03:01:41 +05:30
generator * generators . PayloadGenerator // optional, only enabled when using payloads
2021-03-09 15:00:22 +05:30
httpClient * retryablehttp . Client
rawhttpClient * rawhttp . Client
2021-09-15 18:02:22 +05:30
dynamicValues map [ string ] interface { }
2021-07-27 16:03:56 +05:30
2021-10-14 22:26:01 +05:30
// description: |
2021-11-25 18:54:16 +02:00
// SelfContained specifies if the request is self-contained.
2021-10-19 21:29:18 +05:30
SelfContained bool ` yaml:"-" json:"-" `
2021-07-27 16:03:56 +05:30
// description: |
// CookieReuse is an optional setting that enables cookie reuse for
// all requests defined in raw section.
2021-08-23 23:50:45 +05:30
CookieReuse bool ` yaml:"cookie-reuse,omitempty" jsonschema:"title=optional cookie reuse enable,description=Optional setting that enables cookie reuse" `
2021-07-27 16:03:56 +05:30
// description: |
// Redirects specifies whether redirects should be followed by the HTTP Client.
//
// This can be used in conjunction with `max-redirects` to control the HTTP request redirects.
2021-08-23 23:50:45 +05:30
Redirects bool ` yaml:"redirects,omitempty" jsonschema:"title=follow http redirects,description=Specifies whether redirects should be followed by the HTTP Client" `
2021-07-27 16:03:56 +05:30
// description: |
// Pipeline defines if the attack should be performed with HTTP 1.1 Pipelining
//
2021-09-16 11:34:23 -05:00
// All requests must be idempotent (GET/POST). This can be used for race conditions/billions requests.
2021-08-23 23:50:45 +05:30
Pipeline bool ` yaml:"pipeline,omitempty" jsonschema:"title=perform HTTP 1.1 pipelining,description=Pipeline defines if the attack should be performed with HTTP 1.1 Pipelining" `
2021-07-27 16:03:56 +05:30
// description: |
// Unsafe specifies whether to use rawhttp engine for sending Non RFC-Compliant requests.
//
// This uses the [rawhttp](https://github.com/projectdiscovery/rawhttp) engine to achieve complete
// control over the request, with no normalization performed by the client.
2021-08-23 23:50:45 +05:30
Unsafe bool ` yaml:"unsafe,omitempty" jsonschema:"title=use rawhttp non-strict-rfc client,description=Unsafe specifies whether to use rawhttp engine for sending Non RFC-Compliant requests" `
2021-07-27 16:03:56 +05:30
// description: |
// Race determines if all the request have to be attempted at the same time (Race Condition)
//
// The actual number of requests that will be sent is determined by the `race_count` field.
2021-08-23 23:50:45 +05:30
Race bool ` yaml:"race,omitempty" jsonschema:"title=perform race-http request coordination attack,description=Race determines if all the request have to be attempted at the same time (Race Condition)" `
2021-07-27 16:03:56 +05:30
// description: |
// ReqCondition automatically assigns numbers to requests and preserves their history.
//
// This allows matching on them later for multi-request conditions.
2021-08-23 23:50:45 +05:30
ReqCondition bool ` yaml:"req-condition,omitempty" jsonschema:"title=preserve request history,description=Automatically assigns numbers to requests and preserves their history" `
2021-08-26 02:09:14 +05:30
// description: |
2021-09-01 15:08:46 +05:30
// StopAtFirstMatch stops the execution of the requests and template as soon as a match is found.
2021-08-26 02:09:14 +05:30
StopAtFirstMatch bool ` yaml:"stop-at-first-match,omitempty" jsonschema:"title=stop at first match,description=Stop the execution after a match is found" `
2021-10-07 01:40:49 +05:30
// description: |
// SkipVariablesCheck skips the check for unresolved variables in request
SkipVariablesCheck bool ` yaml:"skip-variables-check,omitempty" jsonschema:"title=skip variable checks,description=Skips the check for unresolved variables in request" `
2020-12-28 01:33:50 +05:30
}
2021-11-26 16:23:54 +05:30
// RequestPartDefinitions contains a mapping of request part definitions and their
// description. Multiple definitions are separated by commas.
// Definitions not having a name (generated on runtime) are prefixed & suffixed by <>.
var RequestPartDefinitions = map [ string ] string {
"template-id" : "ID of the template executed" ,
"template-info" : "Info Block of the template executed" ,
"template-path" : "Path of the template executed" ,
"host" : "Host is the input to the template" ,
"matched" : "Matched is the input which was matched upon" ,
"type" : "Type is the type of request made" ,
"request" : "HTTP request made from the client" ,
"response" : "HTTP response recieved from server" ,
"status_code" : "Status Code received from the Server" ,
"body" : "HTTP response body received from server (default)" ,
"content_length" : "HTTP Response content length" ,
"header,all_headers" : "HTTP response headers" ,
"duration" : "HTTP request time duration" ,
"all" : "HTTP response body + headers" ,
"<cookies_from_response>" : "HTTP response cookies in <name>:<value> format" ,
"<headers_from_response>" : "HTTP response headers in <name>:<value> format" ,
}
2021-01-16 14:10:24 +05:30
// GetID returns the unique ID of the request if any.
2021-10-01 14:30:04 +03:00
func ( request * Request ) GetID ( ) string {
return request . ID
2021-01-16 14:10:24 +05:30
}
2021-10-20 20:17:00 +05:30
func ( request * Request ) isRaw ( ) bool {
return len ( request . Raw ) > 0
}
2020-12-28 01:33:50 +05:30
// Compile compiles the protocol request for further execution.
2021-10-01 14:30:04 +03:00
func ( request * Request ) Compile ( options * protocols . ExecuterOptions ) error {
2021-08-08 21:52:01 +02:00
connectionConfiguration := & httpclientpool . Configuration {
2021-10-01 14:30:04 +03:00
Threads : request . Threads ,
MaxRedirects : request . MaxRedirects ,
FollowRedirects : request . Redirects ,
CookieReuse : request . CookieReuse ,
2021-08-08 21:52:01 +02:00
}
// if the headers contain "Connection" we need to disable the automatic keep alive of the standard library
2021-10-01 14:30:04 +03:00
if _ , hasConnectionHeader := request . Headers [ "Connection" ] ; hasConnectionHeader {
2021-08-08 21:52:01 +02:00
connectionConfiguration . Connection = & httpclientpool . ConnectionConfiguration { DisableKeepAlive : false }
}
client , err := httpclientpool . Get ( options . Options , connectionConfiguration )
2020-12-28 01:33:50 +05:30
if err != nil {
return errors . Wrap ( err , "could not get dns client" )
}
2021-10-01 14:30:04 +03:00
request . customHeaders = make ( map [ string ] string )
request . httpClient = client
request . options = options
for _ , option := range request . options . Options . CustomHeaders {
2021-02-04 14:58:34 +05:30
parts := strings . SplitN ( option , ":" , 2 )
2021-02-01 16:21:49 +05:30
if len ( parts ) != 2 {
continue
}
2021-10-01 14:30:04 +03:00
request . customHeaders [ parts [ 0 ] ] = strings . TrimSpace ( parts [ 1 ] )
2021-01-15 14:22:05 +05:30
}
2020-12-28 01:33:50 +05:30
2021-10-01 14:30:04 +03:00
if request . Body != "" && ! strings . Contains ( request . Body , "\r\n" ) {
request . Body = strings . ReplaceAll ( request . Body , "\n" , "\r\n" )
2021-02-04 22:29:36 +05:30
}
2021-10-01 14:30:04 +03:00
if len ( request . Raw ) > 0 {
for i , raw := range request . Raw {
2021-02-04 22:27:47 +05:30
if ! strings . Contains ( raw , "\r\n" ) {
2021-10-01 14:30:04 +03:00
request . Raw [ i ] = strings . ReplaceAll ( raw , "\n" , "\r\n" )
2021-02-04 22:27:47 +05:30
}
}
2021-10-01 14:30:04 +03:00
request . rawhttpClient = httpclientpool . GetRawHTTP ( options . Options )
2020-12-28 01:33:50 +05:30
}
2021-10-01 14:30:04 +03:00
if len ( request . Matchers ) > 0 || len ( request . Extractors ) > 0 {
compiled := & request . Operators
2021-02-26 13:13:11 +05:30
if compileErr := compiled . Compile ( ) ; compileErr != nil {
return errors . Wrap ( compileErr , "could not compile operators" )
2020-12-28 01:33:50 +05:30
}
2021-10-01 14:30:04 +03:00
request . CompiledOperators = compiled
2020-12-28 01:33:50 +05:30
}
2021-10-07 12:36:27 +02:00
// Resolve payload paths from vars if they exists
2021-10-11 13:58:20 +03:00
for name , payload := range request . options . Options . VarsPayload ( ) {
2021-10-07 12:36:27 +02:00
payloadStr , ok := payload . ( string )
// check if inputs contains the payload
var hasPayloadName bool
// search for markers in all request parts
var inputs [ ] string
2021-11-18 07:50:21 -06:00
inputs = append ( inputs , request . Method . String ( ) , request . Body )
2021-10-11 13:58:20 +03:00
inputs = append ( inputs , request . Raw ... )
for k , v := range request . customHeaders {
2021-10-07 12:36:27 +02:00
inputs = append ( inputs , fmt . Sprintf ( "%s: %s" , k , v ) )
}
2021-10-11 13:58:20 +03:00
for k , v := range request . Headers {
2021-10-07 12:36:27 +02:00
inputs = append ( inputs , fmt . Sprintf ( "%s: %s" , k , v ) )
}
for _ , input := range inputs {
2021-11-18 14:52:11 +01:00
if expressions . ContainsVariablesWithNames ( map [ string ] interface { } { name : payload } , input ) == nil {
2021-10-07 12:36:27 +02:00
hasPayloadName = true
break
}
}
if ok && hasPayloadName && fileutil . FileExists ( payloadStr ) {
2021-10-11 13:58:20 +03:00
if request . Payloads == nil {
request . Payloads = make ( map [ string ] interface { } )
2021-10-07 12:36:27 +02:00
}
2021-10-11 13:58:20 +03:00
request . Payloads [ name ] = payloadStr
2021-10-07 12:36:27 +02:00
}
}
2021-10-01 14:30:04 +03:00
if len ( request . Payloads ) > 0 {
2021-11-04 02:41:56 +05:30
request . generator , err = generators . New ( request . Payloads , request . AttackType . Value , request . options . TemplatePath , request . options . Catalog )
2020-12-28 01:33:50 +05:30
if err != nil {
return errors . Wrap ( err , "could not parse payloads" )
}
}
2021-10-01 14:30:04 +03:00
request . options = options
request . totalRequests = request . Requests ( )
2020-12-28 01:33:50 +05:30
return nil
2020-12-22 04:11:07 +05:30
}
2020-12-28 20:02:26 +05:30
// Requests returns the total number of requests the YAML rule will perform
2021-10-01 14:30:04 +03:00
func ( request * Request ) Requests ( ) int {
if request . generator != nil {
payloadRequests := request . generator . NewIterator ( ) . Total ( ) * len ( request . Raw )
2021-01-12 02:00:11 +05:30
return payloadRequests
2020-12-28 20:02:26 +05:30
}
2021-10-01 14:30:04 +03:00
if len ( request . Raw ) > 0 {
requests := len ( request . Raw )
if requests == 1 && request . RaceNumberRequests != 0 {
requests *= request . RaceNumberRequests
2021-01-12 02:00:11 +05:30
}
return requests
}
2021-10-01 14:30:04 +03:00
return len ( request . Path )
2020-12-28 20:02:26 +05:30
}