Files
nuclei/pkg/utils/http_probe.go
2025-10-06 22:38:43 +02:00

83 lines
1.9 KiB
Go

package utils
import (
"fmt"
"net"
"net/http"
"github.com/projectdiscovery/httpx/common/httpx"
"github.com/projectdiscovery/nuclei/v3/pkg/input/types"
"github.com/projectdiscovery/useragent"
sliceutil "github.com/projectdiscovery/utils/slice"
)
var commonHttpPorts = []string{
"80",
"8080",
}
var defaultHttpSchemes = []string{
"https",
"http",
}
var httpFirstSchemes = []string{
"http",
"https",
}
// determineSchemeOrder for the input
func determineSchemeOrder(input string) []string {
// if input has port that is commonly used for HTTP, return http then https
if _, port, err := net.SplitHostPort(input); err == nil {
if sliceutil.Contains(commonHttpPorts, port) {
return httpFirstSchemes
}
}
return defaultHttpSchemes
}
// ProbeURL probes the scheme for a URL.
// http schemes are selected with heuristics
// If none succeeds, probing is abandoned for such URLs.
func ProbeURL(input string, httpxclient *httpx.HTTPX) string {
schemes := determineSchemeOrder(input)
for _, scheme := range schemes {
formedURL := fmt.Sprintf("%s://%s", scheme, input)
req, err := httpxclient.NewRequest(http.MethodHead, formedURL)
if err != nil {
continue
}
userAgent := useragent.PickRandom()
req.Header.Set("User-Agent", userAgent.Raw)
if _, err = httpxclient.Do(req, httpx.UnsafeOptions{}); err != nil {
continue
}
return formedURL
}
return ""
}
type inputLivenessChecker struct {
client *httpx.HTTPX
}
// ProbeURL probes the scheme for a URL.
func (i *inputLivenessChecker) ProbeURL(input string) (string, error) {
return ProbeURL(input, i.client), nil
}
func (i *inputLivenessChecker) Close() error {
if i.client.Dialer != nil {
i.client.Dialer.Close()
}
return nil
}
// GetInputLivenessChecker returns a new input liveness checker using provided httpx client
func GetInputLivenessChecker(client *httpx.HTTPX) types.InputLivenessProbe {
x := &inputLivenessChecker{client: client}
return x
}