mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 17:25:28 +00:00
* perf(*): replace `encoding/json` w/ sonic Signed-off-by: Dwi Siswanto <git@dw1.io> * feat(utils): add `json` pkg (sonic wrapper) Signed-off-by: Dwi Siswanto <git@dw1.io> * chore(*): use `sonic` wrapper instead Signed-off-by: Dwi Siswanto <git@dw1.io> * chore(*): replace `sonic.ConfigStd` -> `json` (wrapper) Signed-off-by: Dwi Siswanto <git@dw1.io> * test(model): adjust expected marshal'd JSON Signed-off-by: Dwi Siswanto <git@dw1.io> * feat(json): dynamic backend; `sonic` -> `go-json` (fallback) Signed-off-by: Dwi Siswanto <git@dw1.io> * chore(json): merge config - as its not usable Signed-off-by: Dwi Siswanto <git@dw1.io> * chore(json): rm go version constraints Signed-off-by: Dwi Siswanto <git@dw1.io> * chore: go mod tidy Signed-off-by: Dwi Siswanto <git@dw1.io> --------- Signed-off-by: Dwi Siswanto <git@dw1.io>
122 lines
2.9 KiB
Go
122 lines
2.9 KiB
Go
package http
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/invopop/jsonschema"
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/protocols/http/signer"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/utils/json"
|
|
)
|
|
|
|
// SignatureType is the type of signature
|
|
type SignatureType int
|
|
|
|
// Supported values for the SignatureType
|
|
const (
|
|
AWSSignature SignatureType = iota + 1
|
|
signatureLimit
|
|
)
|
|
|
|
// signatureTypeMappings is a table for conversion of signature type from string.
|
|
var signatureTypeMappings = map[SignatureType]string{
|
|
AWSSignature: "AWS",
|
|
}
|
|
|
|
func GetSupportedSignaturesTypes() []SignatureType {
|
|
var result []SignatureType
|
|
for index := SignatureType(1); index < signatureLimit; index++ {
|
|
result = append(result, index)
|
|
}
|
|
return result
|
|
}
|
|
|
|
func toSignatureType(valueToMap string) (SignatureType, error) {
|
|
normalizedValue := normalizeValue(valueToMap)
|
|
for key, currentValue := range signatureTypeMappings {
|
|
if normalizedValue == currentValue {
|
|
return key, nil
|
|
}
|
|
}
|
|
return -1, errors.New("invalid signature type: " + valueToMap)
|
|
}
|
|
|
|
func (t SignatureType) String() string {
|
|
return signatureTypeMappings[t]
|
|
}
|
|
|
|
// SignatureTypeHolder is used to hold internal type of the signature
|
|
type SignatureTypeHolder struct {
|
|
Value SignatureType
|
|
}
|
|
|
|
func (holder SignatureTypeHolder) JSONSchema() *jsonschema.Schema {
|
|
gotType := &jsonschema.Schema{
|
|
Type: "string",
|
|
Title: "type of the signature",
|
|
Description: "Type of the signature",
|
|
}
|
|
for _, types := range GetSupportedSignaturesTypes() {
|
|
gotType.Enum = append(gotType.Enum, types.String())
|
|
}
|
|
return gotType
|
|
}
|
|
|
|
func (holder *SignatureTypeHolder) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
|
var marshalledTypes string
|
|
if err := unmarshal(&marshalledTypes); err != nil {
|
|
return err
|
|
}
|
|
|
|
computedType, err := toSignatureType(marshalledTypes)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
holder.Value = computedType
|
|
return nil
|
|
}
|
|
|
|
func (holder *SignatureTypeHolder) UnmarshalJSON(data []byte) error {
|
|
s := strings.Trim(string(data), `"`)
|
|
if s == "" {
|
|
return nil
|
|
}
|
|
computedType, err := toSignatureType(s)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
holder.Value = computedType
|
|
return nil
|
|
}
|
|
|
|
func (holder SignatureTypeHolder) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(holder.Value.String())
|
|
}
|
|
|
|
func (holder SignatureTypeHolder) MarshalYAML() (interface{}, error) {
|
|
return holder.Value.String(), nil
|
|
}
|
|
|
|
var ErrNoIgnoreList = errors.New("unknown signature types")
|
|
|
|
// GetVariablesNamesSkipList depending on the signature type
|
|
func GetVariablesNamesSkipList(signature SignatureType) map[string]interface{} {
|
|
switch signature {
|
|
case AWSSignature:
|
|
return signer.AwsSkipList
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// GetDefaultSignerVars returns the default signer variables
|
|
func GetDefaultSignerVars(signatureType SignatureType) map[string]interface{} {
|
|
if signatureType == AWSSignature {
|
|
return signer.AwsDefaultVars
|
|
}
|
|
return map[string]interface{}{}
|
|
}
|