Codebase list subfinder / e76f7e1 v2 / pkg / subscraping / sources / sonarsearch / sonarsearch.go
e76f7e1

Tree @e76f7e1 (Download .tar.gz)

sonarsearch.go @e76f7e1raw · history · blame

// Package sonarsearch logic
package sonarsearch

import (
	"context"
	"encoding/json"
	"fmt"
	"strconv"

	"github.com/projectdiscovery/subfinder/v2/pkg/subscraping"
)

// Source is the passive scraping agent
type Source struct{}

// 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)
	go func() {
		defer close(results)

		getURL := fmt.Sprintf("https://sonar.omnisint.io/subdomains/%s?page=", domain)
		page := 0
		var subdomains []string
		for {
			resp, err := session.SimpleGet(ctx, getURL+strconv.Itoa(page))
			if err != nil {
				results <- subscraping.Result{Source: s.Name(), Type: subscraping.Error, Error: err}
				session.DiscardHTTPResponse(resp)
				return
			}

			if err := json.NewDecoder(resp.Body).Decode(&subdomains); err != nil {
				results <- subscraping.Result{Source: s.Name(), Type: subscraping.Error, Error: err}
				resp.Body.Close()
				return
			}
			resp.Body.Close()

			if len(subdomains) == 0 {
				return
			}

			for _, subdomain := range subdomains {
				results <- subscraping.Result{Source: s.Name(), Type: subscraping.Subdomain, Value: subdomain}
			}

			page++
		}
	}()

	return results
}

// Name returns the name of the source
func (s *Source) Name() string {
	return "sonarsearch"
}

func (s *Source) IsDefault() bool {
	return false
}

func (s *Source) HasRecursiveSupport() bool {
	return true
}

func (s *Source) NeedsKey() bool {
	return false
}

func (s *Source) AddApiKeys(_ []string) {
	// no key needed
}