mirror of
https://github.com/projectdiscovery/subfinder
synced 2026-06-21 14:05:24 +00:00
146 lines
3.3 KiB
Go
146 lines
3.3 KiB
Go
// Package bufferover is a bufferover Scraping Engine in Golang
|
|
package bufferover
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
|
|
jsoniter "github.com/json-iterator/go"
|
|
|
|
"github.com/projectdiscovery/subfinder/v2/pkg/subscraping"
|
|
)
|
|
|
|
type response struct {
|
|
Meta struct {
|
|
Errors []string `json:"Errors"`
|
|
} `json:"Meta"`
|
|
FDNSA []string `json:"FDNS_A"`
|
|
RDNS []string `json:"RDNS"`
|
|
Results []string `json:"Results"`
|
|
}
|
|
|
|
// Source is the passive scraping agent
|
|
type Source struct {
|
|
apiKeys []string
|
|
timeTaken time.Duration
|
|
errors int
|
|
results int
|
|
requests int
|
|
skipped bool
|
|
}
|
|
|
|
// Run function returns all subdomains found with the service
|
|
func (s *Source) Run(ctx context.Context, domain string, session *subscraping.Session) <-chan subscraping.Result {
|
|
results := make(chan subscraping.Result)
|
|
s.errors = 0
|
|
s.results = 0
|
|
s.requests = 0
|
|
|
|
go func() {
|
|
defer func(startTime time.Time) {
|
|
s.timeTaken = time.Since(startTime)
|
|
close(results)
|
|
}(time.Now())
|
|
|
|
randomApiKey := subscraping.PickRandom(s.apiKeys, s.Name())
|
|
if randomApiKey == "" {
|
|
s.skipped = true
|
|
return
|
|
}
|
|
|
|
s.getData(ctx, fmt.Sprintf("https://tls.bufferover.run/dns?q=.%s", domain), randomApiKey, session, results)
|
|
}()
|
|
|
|
return results
|
|
}
|
|
|
|
func (s *Source) getData(ctx context.Context, sourceURL string, apiKey string, session *subscraping.Session, results chan subscraping.Result) {
|
|
s.requests++
|
|
resp, err := session.Get(ctx, sourceURL, "", map[string]string{"x-api-key": apiKey})
|
|
|
|
if err != nil && resp == nil {
|
|
results <- subscraping.Result{Source: s.Name(), Type: subscraping.Error, Error: err}
|
|
s.errors++
|
|
session.DiscardHTTPResponse(resp)
|
|
return
|
|
}
|
|
|
|
var bufforesponse response
|
|
err = jsoniter.NewDecoder(resp.Body).Decode(&bufforesponse)
|
|
if err != nil {
|
|
results <- subscraping.Result{Source: s.Name(), Type: subscraping.Error, Error: err}
|
|
s.errors++
|
|
session.DiscardHTTPResponse(resp)
|
|
return
|
|
}
|
|
|
|
session.DiscardHTTPResponse(resp)
|
|
|
|
metaErrors := bufforesponse.Meta.Errors
|
|
|
|
if len(metaErrors) > 0 {
|
|
results <- subscraping.Result{
|
|
Source: s.Name(), Type: subscraping.Error, Error: fmt.Errorf("%s", strings.Join(metaErrors, ", ")),
|
|
}
|
|
s.errors++
|
|
return
|
|
}
|
|
|
|
var subdomains []string
|
|
|
|
if len(bufforesponse.FDNSA) > 0 {
|
|
subdomains = bufforesponse.FDNSA
|
|
subdomains = append(subdomains, bufforesponse.RDNS...)
|
|
} else if len(bufforesponse.Results) > 0 {
|
|
subdomains = bufforesponse.Results
|
|
}
|
|
|
|
for _, subdomain := range subdomains {
|
|
for _, value := range session.Extractor.Extract(subdomain) {
|
|
select {
|
|
case <-ctx.Done():
|
|
return
|
|
case results <- subscraping.Result{Source: s.Name(), Type: subscraping.Subdomain, Value: value}:
|
|
s.results++
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Name returns the name of the source
|
|
func (s *Source) Name() string {
|
|
return "bufferover"
|
|
}
|
|
|
|
func (s *Source) IsDefault() bool {
|
|
return true
|
|
}
|
|
|
|
func (s *Source) HasRecursiveSupport() bool {
|
|
return true
|
|
}
|
|
|
|
func (s *Source) KeyRequirement() subscraping.KeyRequirement {
|
|
return subscraping.RequiredKey
|
|
}
|
|
|
|
func (s *Source) NeedsKey() bool {
|
|
return s.KeyRequirement() == subscraping.RequiredKey
|
|
}
|
|
|
|
func (s *Source) AddApiKeys(keys []string) {
|
|
s.apiKeys = keys
|
|
}
|
|
|
|
func (s *Source) Statistics() subscraping.Statistics {
|
|
return subscraping.Statistics{
|
|
Errors: s.errors,
|
|
Results: s.results,
|
|
Requests: s.requests,
|
|
TimeTaken: s.timeTaken,
|
|
Skipped: s.skipped,
|
|
}
|
|
}
|