mirror of
https://github.com/projectdiscovery/subfinder
synced 2026-06-21 14:05:24 +00:00
120 lines
2.6 KiB
Go
120 lines
2.6 KiB
Go
// Package hackertarget logic
|
|
package hackertarget
|
|
|
|
import (
|
|
"bufio"
|
|
"context"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/projectdiscovery/subfinder/v2/pkg/subscraping"
|
|
)
|
|
|
|
// 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())
|
|
|
|
htSearchUrl := fmt.Sprintf("https://api.hackertarget.com/hostsearch/?q=%s", domain)
|
|
randomApiKey := subscraping.PickRandom(s.apiKeys, s.Name())
|
|
if randomApiKey != "" {
|
|
htSearchUrl = fmt.Sprintf("%s&apikey=%s", htSearchUrl, randomApiKey)
|
|
}
|
|
|
|
htSearchUrl = fmt.Sprintf("%s&apikey=%s", htSearchUrl, randomApiKey)
|
|
|
|
s.requests++
|
|
resp, err := session.SimpleGet(ctx, htSearchUrl)
|
|
if err != nil {
|
|
results <- subscraping.Result{Source: s.Name(), Type: subscraping.Error, Error: err}
|
|
s.errors++
|
|
session.DiscardHTTPResponse(resp)
|
|
return
|
|
}
|
|
|
|
defer func() {
|
|
if err := resp.Body.Close(); err != nil {
|
|
results <- subscraping.Result{Source: s.Name(), Type: subscraping.Error, Error: err}
|
|
s.errors++
|
|
}
|
|
}()
|
|
|
|
scanner := bufio.NewScanner(resp.Body)
|
|
for scanner.Scan() {
|
|
select {
|
|
case <-ctx.Done():
|
|
return
|
|
default:
|
|
}
|
|
line := scanner.Text()
|
|
if line == "" {
|
|
continue
|
|
}
|
|
match := session.Extractor.Extract(line)
|
|
for _, subdomain := range match {
|
|
select {
|
|
case <-ctx.Done():
|
|
return
|
|
case results <- subscraping.Result{Source: s.Name(), Type: subscraping.Subdomain, Value: subdomain}:
|
|
s.results++
|
|
}
|
|
}
|
|
}
|
|
}()
|
|
|
|
return results
|
|
}
|
|
|
|
// Name returns the name of the source
|
|
func (s *Source) Name() string {
|
|
return "hackertarget"
|
|
}
|
|
|
|
func (s *Source) IsDefault() bool {
|
|
return true
|
|
}
|
|
|
|
func (s *Source) HasRecursiveSupport() bool {
|
|
return true
|
|
}
|
|
|
|
func (s *Source) KeyRequirement() subscraping.KeyRequirement {
|
|
return subscraping.OptionalKey
|
|
}
|
|
|
|
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,
|
|
TimeTaken: s.timeTaken,
|
|
Skipped: s.skipped,
|
|
Requests: s.requests,
|
|
}
|
|
}
|