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

Fix typos #2123

Merged
merged 2 commits into from
Mar 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion common/customheader/doc.go
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Package customheader contains all the funcionality to deal with Custom Global Headers
// Package customheader contains all the functionality to deal with Custom Global Headers
package customheader
2 changes: 1 addition & 1 deletion common/customlist/doc.go
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Package customlist contains all the funcionality to deal with Custom Target List
// Package customlist contains all the functionality to deal with Custom Target List
package customlist
2 changes: 1 addition & 1 deletion common/customports/doc.go
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Package customport contains all the funcionality to deal with HTTP ports
// Package customport contains all the functionality to deal with HTTP ports
package customport
2 changes: 1 addition & 1 deletion common/fileutil/doc.go
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Package fileutil contains all the funcionality related to deal with files
// Package fileutil contains all the functionality related to deal with files
package fileutil
2 changes: 1 addition & 1 deletion common/hashes/jarm/onetimepool.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"go.uber.org/multierr"
)

// oneTimePool is a pool designed to create continous bare connections that are for one time only usage
// oneTimePool is a pool designed to create continuous bare connections that are for one time only usage
type oneTimePool struct {
address string
idleConnections chan net.Conn
Expand Down
2 changes: 1 addition & 1 deletion common/httputilz/doc.go
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Package httputilz contains all the funcionality related to common HTTP operations, dump, define methods...
// Package httputilz contains all the functionality related to common HTTP operations, dump, define methods...
package httputilz
2 changes: 1 addition & 1 deletion common/httpx/doc.go
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Package httpx containst the httpx common funcionality
// Package httpx containst the httpx common functionality
package httpx
4 changes: 2 additions & 2 deletions common/httpx/domains_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ var rawResponse string
func TestBodyGrabDoamins(t *testing.T) {
ht, err := New(&DefaultOptions)
require.Nil(t, err)
resposne := &Response{
response := &Response{
Raw: rawResponse,
}
bd := ht.BodyDomainGrab(resposne)
bd := ht.BodyDomainGrab(response)

sort.Strings(bd.Domains)
sort.Strings(bd.Fqdns)
Expand Down
2 changes: 1 addition & 1 deletion runner/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -1475,7 +1475,7 @@ func (r *Runner) targets(hp *httpx.HTTPX, target string) chan httpx.Target {
switch {
case stringsutil.HasPrefixAny(target, "*", "."):
// A valid target does not contain:
// trim * and/or . (prefix) from the target to return the domain instead of wilcard
// trim * and/or . (prefix) from the target to return the domain instead of wildcard
target = stringsutil.TrimPrefixAny(target, "*", ".")
if !r.testAndSet(target) {
return
Expand Down
8 changes: 4 additions & 4 deletions runner/runner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func TestRunner_domain_targets(t *testing.T) {
got = append(got, target)
}
}
require.ElementsMatch(t, expected, got, "could not exepcted output")
require.ElementsMatch(t, expected, got, "could not expected output")
}

func TestRunner_probeall_targets(t *testing.T) {
Expand Down Expand Up @@ -62,7 +62,7 @@ func TestRunner_probeall_targets(t *testing.T) {
got = append(got, target)
}

require.ElementsMatch(t, expected, got, "could not exepcted output")
require.ElementsMatch(t, expected, got, "could not expected output")
}

func TestRunner_cidr_targets(t *testing.T) {
Expand All @@ -87,7 +87,7 @@ func TestRunner_cidr_targets(t *testing.T) {
got = append(got, target)
}

require.ElementsMatch(t, expected, got, "could not exepcted output")
require.ElementsMatch(t, expected, got, "could not expected output")
}

func TestRunner_asn_targets(t *testing.T) {
Expand Down Expand Up @@ -179,5 +179,5 @@ func TestRunner_urlWithComma_targets(t *testing.T) {
got = append(got, target)
}
}
require.ElementsMatch(t, expected, got, "could not exepcted output")
require.ElementsMatch(t, expected, got, "could not expected output")
}
Loading