nuclei/pkg/utils/http_probe.go
Dogan Can Bakir 5f4dcfb6be
use projectdiscovery/useragent (#4708)
* use projectdiscovery/useragent

* minor
2024-02-01 03:12:38 +05:30

35 lines
809 B
Go

package utils
import (
"fmt"
"net/http"
"github.com/projectdiscovery/httpx/common/httpx"
"github.com/projectdiscovery/useragent"
)
var (
HttpSchemes = []string{"https", "http"}
)
// probeURL probes the scheme for a URL. first HTTPS is tried
// and if any errors occur http is tried. If none succeeds, probing
// is abandoned for such URLs.
func ProbeURL(input string, httpxclient *httpx.HTTPX) string {
for _, scheme := range HttpSchemes {
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 ""
}