mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 18:35:25 +00:00
* Clustering performance improvements * IsClusterable filters out beforehand, update test to mirror that * inverse IsClusterable This makes much more sense * HashMap based clustering * furthur improvements to clustering --------- Co-authored-by: Tarun Koyalwar <tarun@projectdiscovery.io>
25 lines
660 B
Go
25 lines
660 B
Go
package dns
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/cespare/xxhash"
|
|
)
|
|
|
|
|
|
// TmplClusterKey generates a unique key for the request
|
|
// to be used in the clustering process.
|
|
func (request *Request) TmplClusterKey() uint64 {
|
|
recursion := ""
|
|
if request.Recursion != nil {
|
|
recursion = fmt.Sprintf("%t", *request.Recursion)
|
|
}
|
|
inp := fmt.Sprintf("%s-%d-%d-%d-%s", request.Name, request.class, request.Retries, request.question, recursion)
|
|
return xxhash.Sum64String(inp)
|
|
}
|
|
|
|
// IsClusterable returns true if the request is eligible to be clustered.
|
|
func (request *Request) IsClusterable() bool {
|
|
return !(len(request.Resolvers) > 0 || request.Trace || request.ID != "")
|
|
}
|