mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 15:35:28 +00:00
35 lines
897 B
Go
35 lines
897 B
Go
package engine
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"net/http"
|
|
"net/url"
|
|
"time"
|
|
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/common/protocolstate"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/types"
|
|
)
|
|
|
|
// newhttpClient creates a new http client for headless communication with a timeout
|
|
func newhttpClient(options *types.Options) *http.Client {
|
|
dialer := protocolstate.Dialer
|
|
transport := &http.Transport{
|
|
DialContext: dialer.Dial,
|
|
MaxIdleConns: 500,
|
|
MaxIdleConnsPerHost: 500,
|
|
MaxConnsPerHost: 500,
|
|
TLSClientConfig: &tls.Config{
|
|
Renegotiation: tls.RenegotiateOnceAsClient,
|
|
InsecureSkipVerify: true,
|
|
},
|
|
}
|
|
|
|
if options.ProxyURL != "" {
|
|
if proxyURL, err := url.Parse(options.ProxyURL); err == nil {
|
|
transport.Proxy = http.ProxyURL(proxyURL)
|
|
}
|
|
}
|
|
|
|
return &http.Client{Transport: transport, Timeout: time.Duration(options.Timeout*3) * time.Second}
|
|
}
|