Skip to content

Commit 3286f09

Browse files
authored
Merge branch 'projectdiscovery:dev' into fix/timeout-flag-not-working
2 parents fba1cc3 + 8a57c4f commit 3286f09

File tree

11 files changed

+286
-59
lines changed

11 files changed

+286
-59
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
## Proposed changes
2+
3+
<!-- Describe the overall picture of your modifications to help maintainers understand the pull request. PRs are required to be associated to their related issue tickets or feature request. -->
4+
5+
### Proof
6+
7+
<!-- How has this been tested? Please describe the tests that you ran to verify your changes. -->
8+
9+
## Checklist
10+
11+
<!-- Put an "x" in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code. -->
12+
13+
- [ ] Pull request is created against the [dev](https://github.com/projectdiscovery/subfinder/tree/dev) branch
14+
- [ ] All checks passed (lint, unit/integration/regression tests etc.) with my changes
15+
- [ ] I have added tests that prove my fix is effective or that my feature works
16+
- [ ] I have added necessary documentation (if appropriate)

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ updates:
88

99
# Maintain dependencies for go modules
1010
- package-ecosystem: "gomod"
11-
directory: "v2/"
11+
directory: "/"
1212
schedule:
1313
interval: "weekly"
1414
target-branch: "dev"
@@ -45,4 +45,4 @@ updates:
4545
# prefix: "chore"
4646
# include: "scope"
4747
# labels:
48-
# - "Type: Maintenance"
48+
# - "Type: Maintenance"

.github/workflows/build-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ jobs:
6565
SECURITYTRAILS_API_KEY: ${{secrets.SECURITYTRAILS_API_KEY}}
6666
SHODAN_API_KEY: ${{secrets.SHODAN_API_KEY}}
6767
THREATBOOK_API_KEY: ${{secrets.THREATBOOK_API_KEY}}
68+
URLSCAN_API_KEY: ${{secrets.URLSCAN_API_KEY}}
6869
VIRUSTOTAL_API_KEY: ${{secrets.VIRUSTOTAL_API_KEY}}
6970
WHOISXMLAPI_API_KEY: ${{secrets.WHOISXMLAPI_API_KEY}}
7071
ZOOMEYEAPI_API_KEY: ${{secrets.ZOOMEYEAPI_API_KEY}}

go.mod

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ require (
1010
github.com/json-iterator/go v1.1.12
1111
github.com/lib/pq v1.10.9
1212
github.com/projectdiscovery/chaos-client v0.5.2
13-
github.com/projectdiscovery/dnsx v1.2.2
13+
github.com/projectdiscovery/dnsx v1.2.3
1414
github.com/projectdiscovery/fdmax v0.0.4
15-
github.com/projectdiscovery/gologger v1.1.54
16-
github.com/projectdiscovery/ratelimit v0.0.81
17-
github.com/projectdiscovery/retryablehttp-go v1.0.115
18-
github.com/projectdiscovery/utils v0.4.21
15+
github.com/projectdiscovery/gologger v1.1.62
16+
github.com/projectdiscovery/ratelimit v0.0.82
17+
github.com/projectdiscovery/retryablehttp-go v1.1.0
18+
github.com/projectdiscovery/utils v0.7.3
1919
github.com/rs/xid v1.5.0
20-
github.com/stretchr/testify v1.10.0
20+
github.com/stretchr/testify v1.11.1
2121
github.com/tomnomnom/linkheader v0.0.0-20180905144013-02ca5825eb80
2222
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8
2323
gopkg.in/yaml.v3 v3.0.1
@@ -49,7 +49,7 @@ require (
4949
github.com/docker/go-units v0.5.0 // indirect
5050
github.com/dsnet/compress v0.0.2-0.20230904184137-39efe44ab707 // indirect
5151
github.com/fatih/color v1.15.0 // indirect
52-
github.com/gaissmai/bart v0.20.4 // indirect
52+
github.com/gaissmai/bart v0.26.0 // indirect
5353
github.com/go-ole/go-ole v1.2.6 // indirect
5454
github.com/golang/snappy v0.0.4 // indirect
5555
github.com/google/go-github/v30 v30.1.0 // indirect
@@ -77,12 +77,12 @@ require (
7777
github.com/pierrec/lz4/v4 v4.1.21 // indirect
7878
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
7979
github.com/projectdiscovery/blackrock v0.0.1 // indirect
80-
github.com/projectdiscovery/cdncheck v1.1.24 // indirect
81-
github.com/projectdiscovery/fastdialer v0.4.1 // indirect
82-
github.com/projectdiscovery/hmap v0.0.90 // indirect
80+
github.com/projectdiscovery/cdncheck v1.2.13 // indirect
81+
github.com/projectdiscovery/fastdialer v0.4.19 // indirect
82+
github.com/projectdiscovery/hmap v0.0.98 // indirect
8383
github.com/projectdiscovery/machineid v0.0.0-20240226150047-2e2c51e35983 // indirect
84-
github.com/projectdiscovery/networkpolicy v0.1.16 // indirect
85-
github.com/refraction-networking/utls v1.7.0 // indirect
84+
github.com/projectdiscovery/networkpolicy v0.1.31 // indirect
85+
github.com/refraction-networking/utls v1.7.1 // indirect
8686
github.com/rivo/uniseg v0.4.7 // indirect
8787
github.com/saintfish/chardet v0.0.0-20230101081208-5e3ef4b5456d // indirect
8888
github.com/shirou/gopsutil/v3 v3.23.7 // indirect
@@ -101,7 +101,7 @@ require (
101101
github.com/tklauser/go-sysconf v0.3.12 // indirect
102102
github.com/tklauser/numcpus v0.6.1 // indirect
103103
github.com/ulikunitz/xz v0.5.15 // indirect
104-
github.com/weppos/publicsuffix-go v0.30.1 // indirect
104+
github.com/weppos/publicsuffix-go v0.40.3-0.20250408071509-6074bbe7fd39 // indirect
105105
github.com/yuin/goldmark v1.7.4 // indirect
106106
github.com/yuin/goldmark-emoji v1.0.3 // indirect
107107
github.com/yusufpapurcu/wmi v1.2.4 // indirect
@@ -132,7 +132,7 @@ require (
132132
github.com/pkg/errors v0.9.1 // indirect
133133
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
134134
github.com/projectdiscovery/goflags v0.1.74
135-
github.com/projectdiscovery/retryabledns v1.0.102 // indirect
135+
github.com/projectdiscovery/retryabledns v1.0.111 // indirect
136136
golang.org/x/net v0.47.0 // indirect
137137
golang.org/x/sys v0.38.0 // indirect
138138
)

0 commit comments

Comments
 (0)