package authprovider import ( "net" "net/url" "regexp" "strings" "github.com/projectdiscovery/nuclei/v3/pkg/authprovider/authx" "github.com/projectdiscovery/utils/errkit" urlutil "github.com/projectdiscovery/utils/url" ) // FileAuthProvider is an auth provider for file based auth // it accepts a secrets file and returns its provider type FileAuthProvider struct { Path string store *authx.Authx compiled map[*regexp.Regexp][]authx.AuthStrategy domains map[string][]authx.AuthStrategy } // NewFileAuthProvider creates a new file based auth provider func NewFileAuthProvider(path string, callback authx.LazyFetchSecret) (AuthProvider, error) { store, err := authx.GetAuthDataFromFile(path) if err != nil { return nil, err } if len(store.Secrets) == 0 && len(store.Dynamic) == 0 { return nil, ErrNoSecrets } if len(store.Dynamic) > 0 && callback == nil { return nil, errkit.New("lazy fetch callback is required for dynamic secrets") } for _, secret := range store.Secrets { if err := secret.Validate(); err != nil { errorErr := errkit.FromError(err) errorErr.Msgf("invalid secret in file: %s", path) return nil, errorErr } } for i, dynamic := range store.Dynamic { if err := dynamic.Validate(); err != nil { errorErr := errkit.FromError(err) errorErr.Msgf("invalid dynamic in file: %s", path) return nil, errorErr } dynamic.SetLazyFetchCallback(callback) store.Dynamic[i] = dynamic } f := &FileAuthProvider{Path: path, store: store} f.init() return f, nil } // init initializes the file auth provider func (f *FileAuthProvider) init() { for _, _secret := range f.store.Secrets { secret := _secret // allocate copy of pointer if len(secret.DomainsRegex) > 0 { for _, domain := range secret.DomainsRegex { if f.compiled == nil { f.compiled = make(map[*regexp.Regexp][]authx.AuthStrategy) } compiled, err := regexp.Compile(domain) if err != nil { continue } if ss, ok := f.compiled[compiled]; ok { f.compiled[compiled] = append(ss, secret.GetStrategy()) } else { f.compiled[compiled] = []authx.AuthStrategy{secret.GetStrategy()} } } } for _, domain := range secret.Domains { if f.domains == nil { f.domains = make(map[string][]authx.AuthStrategy) } domain = strings.TrimSpace(domain) domain = strings.TrimSuffix(domain, ":80") domain = strings.TrimSuffix(domain, ":443") if ss, ok := f.domains[domain]; ok { f.domains[domain] = append(ss, secret.GetStrategy()) } else { f.domains[domain] = []authx.AuthStrategy{secret.GetStrategy()} } } } for _, dynamic := range f.store.Dynamic { domain, domainsRegex := dynamic.GetDomainAndDomainRegex() if len(domainsRegex) > 0 { for _, domain := range domainsRegex { if f.compiled == nil { f.compiled = make(map[*regexp.Regexp][]authx.AuthStrategy) } compiled, err := regexp.Compile(domain) if err != nil { continue } if ss, ok := f.compiled[compiled]; !ok { f.compiled[compiled] = []authx.AuthStrategy{&authx.DynamicAuthStrategy{Dynamic: dynamic}} } else { f.compiled[compiled] = append(ss, &authx.DynamicAuthStrategy{Dynamic: dynamic}) } } } for _, domain := range domain { if f.domains == nil { f.domains = make(map[string][]authx.AuthStrategy) } domain = strings.TrimSpace(domain) domain = strings.TrimSuffix(domain, ":80") domain = strings.TrimSuffix(domain, ":443") if ss, ok := f.domains[domain]; !ok { f.domains[domain] = []authx.AuthStrategy{&authx.DynamicAuthStrategy{Dynamic: dynamic}} } else { f.domains[domain] = append(ss, &authx.DynamicAuthStrategy{Dynamic: dynamic}) } } } } // LookupAddr looks up a given domain/address and returns appropriate auth strategy func (f *FileAuthProvider) LookupAddr(addr string) []authx.AuthStrategy { var strategies []authx.AuthStrategy if strings.Contains(addr, ":") { // default normalization for host:port host, port, err := net.SplitHostPort(addr) if err == nil && (port == "80" || port == "443") { addr = host } } for domain, strategy := range f.domains { if strings.EqualFold(domain, addr) { strategies = append(strategies, strategy...) } } for compiled, strategy := range f.compiled { if compiled.MatchString(addr) { strategies = append(strategies, strategy...) } } return strategies } // LookupURL looks up a given URL and returns appropriate auth strategy func (f *FileAuthProvider) LookupURL(u *url.URL) []authx.AuthStrategy { return f.LookupAddr(u.Host) } // LookupURLX looks up a given URL and returns appropriate auth strategy func (f *FileAuthProvider) LookupURLX(u *urlutil.URL) []authx.AuthStrategy { return f.LookupAddr(u.Host) } // GetTemplatePaths returns the template path for the auth provider func (f *FileAuthProvider) GetTemplatePaths() []string { res := []string{} for _, dynamic := range f.store.Dynamic { if dynamic.TemplatePath != "" { res = append(res, dynamic.TemplatePath) } } return res } // PreFetchSecrets pre-fetches the secrets from the auth provider func (f *FileAuthProvider) PreFetchSecrets() error { for _, ss := range f.domains { for _, s := range ss { if val, ok := s.(*authx.DynamicAuthStrategy); ok { if err := val.Dynamic.Fetch(false); err != nil { return err } } } } for _, ss := range f.compiled { for _, s := range ss { if val, ok := s.(*authx.DynamicAuthStrategy); ok { if err := val.Dynamic.Fetch(false); err != nil { return err } } } } return nil }