Skip to content

Commit

Permalink
make subdomaincenter non-default
Browse files Browse the repository at this point in the history
  • Loading branch information
dogancanbakir committed Dec 12, 2024
1 parent b8b6581 commit dd42089
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion v2/pkg/passive/sources_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ var (
// "threatminer",
// "reconcloud",
"builtwith",
"subdomaincenter",
// "subdomaincenter", //failing with empty result
}

expectedDefaultRecursiveSources = []string{
Expand Down
17 changes: 9 additions & 8 deletions v2/pkg/passive/sources_wo_auth_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,15 @@ func TestSourcesWithoutKeys(t *testing.T) {
}

ignoredSources := []string{
"commoncrawl", // commoncrawl is under resourced and will likely time-out so step over it for this test https://groups.google.com/u/2/g/common-crawl/c/3QmQjFA_3y4/m/vTbhGqIBBQAJ
"riddler", // failing due to cloudfront protection
"crtsh", // Fails in GH Action (possibly IP-based ban) causing a timeout.
"hackertarget", // Fails in GH Action (possibly IP-based ban) but works locally
"waybackarchive", // Fails randomly
"alienvault", // 503 Service Temporarily Unavailable
"digitorus", // failing with "Failed to retrieve certificate"
"dnsdumpster", // failing with "unexpected status code 403 received"
"commoncrawl", // commoncrawl is under resourced and will likely time-out so step over it for this test https://groups.google.com/u/2/g/common-crawl/c/3QmQjFA_3y4/m/vTbhGqIBBQAJ
"riddler", // failing due to cloudfront protection
"crtsh", // Fails in GH Action (possibly IP-based ban) causing a timeout.
"hackertarget", // Fails in GH Action (possibly IP-based ban) but works locally
"waybackarchive", // Fails randomly
"alienvault", // 503 Service Temporarily Unavailable
"digitorus", // failing with "Failed to retrieve certificate"
"dnsdumpster", // failing with "unexpected status code 403 received"
"subdomaincenter", //failing with empty result or random reason /shrug
}

domain := "hackerone.com"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func (s *Source) Name() string {
}

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

func (s *Source) HasRecursiveSupport() bool {
Expand Down

0 comments on commit dd42089

Please sign in to comment.