mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 21:35:26 +00:00
* chore: fix non-constant fmt string in call Signed-off-by: Dwi Siswanto <git@dw1.io> * build: bump all direct modules Signed-off-by: Dwi Siswanto <git@dw1.io> * chore(hosterrorscache): update import path Signed-off-by: Dwi Siswanto <git@dw1.io> * fix(charts): break changes Signed-off-by: Dwi Siswanto <git@dw1.io> * build: pinned `github.com/zmap/zcrypto` to v0.0.0-20240512203510-0fef58d9a9db Signed-off-by: Dwi Siswanto <git@dw1.io> * chore: golangci-lint auto fixes Signed-off-by: Dwi Siswanto <git@dw1.io> * chore: satisfy lints Signed-off-by: Dwi Siswanto <git@dw1.io> * build: migrate `github.com/xanzy/go-gitlab` => `gitlab.com/gitlab-org/api/client-go` Signed-off-by: Dwi Siswanto <git@dw1.io> * feat(json): update build constraints Signed-off-by: Dwi Siswanto <git@dw1.io> * chore: dont panicking on close err Signed-off-by: Dwi Siswanto <git@dw1.io> --------- Signed-off-by: Dwi Siswanto <git@dw1.io>
69 lines
1.7 KiB
Go
69 lines
1.7 KiB
Go
package runner
|
|
|
|
import (
|
|
"bufio"
|
|
"fmt"
|
|
"net/url"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/projectdiscovery/gologger"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/types"
|
|
errorutil "github.com/projectdiscovery/utils/errors"
|
|
fileutil "github.com/projectdiscovery/utils/file"
|
|
proxyutils "github.com/projectdiscovery/utils/proxy"
|
|
)
|
|
|
|
const (
|
|
HTTP_PROXY_ENV = "HTTP_PROXY"
|
|
)
|
|
|
|
// loadProxyServers load list of proxy servers from file or comma separated
|
|
func loadProxyServers(options *types.Options) error {
|
|
if len(options.Proxy) == 0 {
|
|
return nil
|
|
}
|
|
proxyList := []string{}
|
|
for _, p := range options.Proxy {
|
|
if fileutil.FileExists(p) {
|
|
file, err := os.Open(p)
|
|
if err != nil {
|
|
return fmt.Errorf("could not open proxy file: %w", err)
|
|
}
|
|
defer func() {
|
|
_ = file.Close()
|
|
}()
|
|
scanner := bufio.NewScanner(file)
|
|
for scanner.Scan() {
|
|
proxy := scanner.Text()
|
|
if strings.TrimSpace(proxy) == "" {
|
|
continue
|
|
}
|
|
proxyList = append(proxyList, proxy)
|
|
}
|
|
} else {
|
|
proxyList = append(proxyList, p)
|
|
}
|
|
}
|
|
aliveProxy, err := proxyutils.GetAnyAliveProxy(options.Timeout, proxyList...)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
proxyURL, err := url.Parse(aliveProxy)
|
|
if err != nil {
|
|
return errorutil.WrapfWithNil(err, "failed to parse proxy got %v", err)
|
|
}
|
|
if options.ProxyInternal {
|
|
_ = os.Setenv(HTTP_PROXY_ENV, proxyURL.String())
|
|
}
|
|
switch proxyURL.Scheme {
|
|
case proxyutils.HTTP, proxyutils.HTTPS:
|
|
gologger.Verbose().Msgf("Using %s as proxy server", proxyURL.String())
|
|
options.AliveHttpProxy = proxyURL.String()
|
|
case proxyutils.SOCKS5:
|
|
options.AliveSocksProxy = proxyURL.String()
|
|
gologger.Verbose().Msgf("Using %s as socket proxy server", proxyURL.String())
|
|
}
|
|
return nil
|
|
}
|