Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Development v0.3.0 #35

Merged
merged 26 commits into from
Aug 1, 2023
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
4c266e0
docs: -
enenumxela Jun 26, 2023
22e0be0
chore(deps): bump github.com/valyala/fasthttp from 1.47.0 to 1.48.0
dependabot[bot] Jun 26, 2023
b4c7261
Merge pull request #31 from hueristiq/dependabot/go_modules/dev/githu…
enenumxela Jun 28, 2023
0ba90ae
Merge branch 'dev' of https://github.com/hueristiq/xurlfind3r into dev
enenumxela Jun 28, 2023
6ef3338
chore: Misc cleanup
enenumxela Jun 28, 2023
386cdbf
refactor: Make wayback snapshots parsing opt in
enenumxela Jun 28, 2023
4610e8c
feat: Add sources to use and to exclude options
enenumxela Jun 28, 2023
70fb5f6
chore: -
enenumxela Jun 29, 2023
df1f177
chore: -
enenumxela Jul 24, 2023
3d93948
*: A bulk commit (not recommended)
enenumxela Jul 26, 2023
a75ea1d
chore: -
enenumxela Jul 26, 2023
c006d8e
docs: Update README.md
enenumxela Jul 26, 2023
d0bcea6
chore: -
enenumxela Jul 26, 2023
c7c8615
refactor: Revise bevigil workings
enenumxela Jul 26, 2023
38cdb8a
refactor: Revise commoncrawl workings
enenumxela Jul 26, 2023
bcf3203
chore: -
enenumxela Jul 26, 2023
0f59c08
refactor: Revise urlscan workings
enenumxela Jul 26, 2023
e06f168
chore: -
enenumxela Jul 26, 2023
f758d27
refactor: Revise otx workings
enenumxela Jul 26, 2023
3125d9a
refactor: Scope control
enenumxela Jul 26, 2023
11134a8
refactor: Revise github workings
enenumxela Jul 26, 2023
8e840b7
refactor: Revise intelx workings
enenumxela Jul 26, 2023
aed5b10
refactor: Revise wayback workings
enenumxela Jul 26, 2023
392f436
chore: -
enenumxela Aug 1, 2023
dfe77e7
docs: -
enenumxela Aug 1, 2023
ae777a2
chore: Bump up version to 0.3.0
enenumxela Aug 1, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: -
  • Loading branch information
enenumxela committed Jul 26, 2023
commit e06f168e512d6044d2fb0f30f7b59d4895d7abfb
2 changes: 1 addition & 1 deletion pkg/xurlfind3r/sources/bevigil/bevigil.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func (source *Source) Run(config *sources.Configuration, domain string) (URLsCha

var getURLsRes *fasthttp.Response

getURLsRes, err = httpclient.Request(fasthttp.MethodGet, getURLsReqURL, "", getURLsReqHeaders, nil)
getURLsRes, err = httpclient.Get(getURLsReqURL, "", getURLsReqHeaders)
if err != nil {
return
}
Expand Down