mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 16:45:28 +00:00
* add default get method * remove residual payload logic from old implementation * fuzz: clone current state of component * fuzz: bug fix stacking of payloads in multiple mode * improve stdout template loading stats * stdout: force display warnings if no templates are loaded * update flags in README.md * quote non-ascii chars in extractor output * aws request signature can only be used in signed & verified tmpls * deprecate request signature * remove logic related to deprecated fuzzing input * update test to use ordered params * fix interactsh-url lazy eval: #4946 * output: skip unnecessary updates when unescaping * updates as per requested changes
153 lines
3.9 KiB
Go
153 lines
3.9 KiB
Go
package component
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/fuzz/dataformat"
|
|
"github.com/projectdiscovery/retryablehttp-go"
|
|
mapsutil "github.com/projectdiscovery/utils/maps"
|
|
)
|
|
|
|
// Cookie is a component for a request cookie
|
|
type Cookie struct {
|
|
value *Value
|
|
|
|
req *retryablehttp.Request
|
|
}
|
|
|
|
var _ Component = &Cookie{}
|
|
|
|
// NewCookie creates a new cookie component
|
|
func NewCookie() *Cookie {
|
|
return &Cookie{}
|
|
}
|
|
|
|
// Name returns the name of the component
|
|
func (c *Cookie) Name() string {
|
|
return RequestCookieComponent
|
|
}
|
|
|
|
// Parse parses the component and returns the
|
|
// parsed component
|
|
func (c *Cookie) Parse(req *retryablehttp.Request) (bool, error) {
|
|
if len(req.Cookies()) == 0 {
|
|
return false, nil
|
|
}
|
|
c.req = req
|
|
c.value = NewValue("")
|
|
|
|
parsedCookies := mapsutil.NewOrderedMap[string, any]()
|
|
for _, cookie := range req.Cookies() {
|
|
parsedCookies.Set(cookie.Name, cookie.Value)
|
|
}
|
|
if parsedCookies.Len() == 0 {
|
|
return false, nil
|
|
}
|
|
c.value.SetParsed(dataformat.KVOrderedMap(&parsedCookies), "")
|
|
return true, nil
|
|
}
|
|
|
|
// Iterate iterates through the component
|
|
func (c *Cookie) Iterate(callback func(key string, value interface{}) error) (err error) {
|
|
c.value.parsed.Iterate(func(key string, value any) bool {
|
|
// Skip ignored cookies
|
|
if _, ok := defaultIgnoredCookieKeys[key]; ok {
|
|
return ok
|
|
}
|
|
if errx := callback(key, value); errx != nil {
|
|
err = errx
|
|
return false
|
|
}
|
|
return true
|
|
})
|
|
return
|
|
}
|
|
|
|
// SetValue sets a value in the component
|
|
// for a key
|
|
func (c *Cookie) SetValue(key string, value string) error {
|
|
if !c.value.SetParsedValue(key, value) {
|
|
return ErrSetValue
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Delete deletes a key from the component
|
|
func (c *Cookie) Delete(key string) error {
|
|
if !c.value.Delete(key) {
|
|
return ErrKeyNotFound
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Rebuild returns a new request with the
|
|
// component rebuilt
|
|
func (c *Cookie) Rebuild() (*retryablehttp.Request, error) {
|
|
cloned := c.req.Clone(context.Background())
|
|
|
|
cloned.Header.Del("Cookie")
|
|
c.value.parsed.Iterate(func(key string, value any) bool {
|
|
cookie := &http.Cookie{
|
|
Name: key,
|
|
Value: fmt.Sprint(value), // Assume the value is always a string for cookies
|
|
}
|
|
cloned.AddCookie(cookie)
|
|
return true
|
|
})
|
|
return cloned, nil
|
|
}
|
|
|
|
// Clone clones current state of this component
|
|
func (c *Cookie) Clone() Component {
|
|
return &Cookie{
|
|
value: c.value.Clone(),
|
|
req: c.req.Clone(context.Background()),
|
|
}
|
|
}
|
|
|
|
// A list of cookies that are essential to the request and
|
|
// must not be fuzzed.
|
|
var defaultIgnoredCookieKeys = map[string]struct{}{
|
|
"awsELB": {},
|
|
"AWSALB": {},
|
|
"AWSALBCORS": {},
|
|
"__utma": {},
|
|
"__utmb": {},
|
|
"__utmc": {},
|
|
"__utmt": {},
|
|
"__utmz": {},
|
|
"_ga": {},
|
|
"_gat": {},
|
|
"_gid": {},
|
|
"_gcl_au": {},
|
|
"_fbp": {},
|
|
"fr": {},
|
|
"__hstc": {},
|
|
"hubspotutk": {},
|
|
"__hssc": {},
|
|
"__hssrc": {},
|
|
"mp_mixpanel__c": {},
|
|
"JSESSIONID": {},
|
|
"NREUM": {},
|
|
"_pk_id": {},
|
|
"_pk_ref": {},
|
|
"_pk_ses": {},
|
|
"_pk_cvar": {},
|
|
"_pk_hsr": {},
|
|
"_hjIncludedInSample": {},
|
|
"__cfduid": {},
|
|
"cf_use_ob": {},
|
|
"cf_ob_info": {},
|
|
"intercom-session": {},
|
|
"optimizelyEndUserId": {},
|
|
"optimizelySegments": {},
|
|
"optimizelyBuckets": {},
|
|
"optimizelyPendingLogEvents": {},
|
|
"YSC": {},
|
|
"VISITOR_INFO1_LIVE": {},
|
|
"PREF": {},
|
|
"GPS": {},
|
|
}
|