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

Add check-spelling #4017

Closed
wants to merge 41 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
032ecd6
spelling: add
jsoref Dec 22, 2023
80a8dca
spelling: backwards
jsoref Dec 22, 2023
8200290
spelling: boring
jsoref Dec 22, 2023
6cb16b9
spelling: case-insensitive
jsoref Dec 22, 2023
e70dad1
spelling: case-sensitive
jsoref Dec 22, 2023
a5da1d3
spelling: certificate
jsoref Dec 22, 2023
fbf6f81
spelling: classifier
jsoref Dec 22, 2023
e09714f
spelling: concurrency
jsoref Dec 22, 2023
b6b2669
spelling: every time
jsoref Dec 22, 2023
1adc541
spelling: execution
jsoref Dec 22, 2023
56e4b8d
spelling: fileutil
jsoref Dec 22, 2023
e7fb5ee
spelling: filter
jsoref Dec 22, 2023
5ef63f5
spelling: forwarded
jsoref Dec 22, 2023
92ee52c
spelling: hygiene
jsoref Dec 22, 2023
6776052
spelling: initialization
jsoref Dec 22, 2023
b9f7569
spelling: initialize
jsoref Dec 22, 2023
41bfd1a
spelling: invalid
jsoref Dec 22, 2023
966cc47
spelling: javascript
jsoref Dec 22, 2023
015e033
spelling: kerberos
jsoref Dec 22, 2023
a6affb5
spelling: negotiation
jsoref Dec 22, 2023
6eefe35
spelling: noop
jsoref Dec 22, 2023
8bd952d
spelling: occurred
jsoref Dec 22, 2023
bc7ea0c
spelling: omit
jsoref Dec 22, 2023
37efcd8
spelling: overridden
jsoref Dec 22, 2023
69fb4c8
spelling: parallelly
jsoref Dec 22, 2023
c19a9ab
spelling: process
jsoref Dec 22, 2023
601cb64
spelling: respective
jsoref Dec 22, 2023
be80c78
spelling: responsible
jsoref Dec 22, 2023
fa190a8
spelling: restricted
jsoref Dec 22, 2023
be77993
spelling: run
jsoref Dec 22, 2023
e3d9e06
spelling: separator
jsoref Dec 22, 2023
09c6c1b
spelling: template
jsoref Dec 22, 2023
2466ddb
spelling: that
jsoref Dec 22, 2023
7c0fc3a
spelling: typedef
jsoref Dec 22, 2023
d029378
spelling: unintentionally
jsoref Dec 22, 2023
1639d7c
spelling: unnecessary
jsoref Dec 22, 2023
af79241
spelling: verification
jsoref Dec 22, 2023
1a08afa
spelling: verified
jsoref Dec 22, 2023
2702b72
spelling: want
jsoref Dec 22, 2023
b9a1abf
spelling: websocket
jsoref Dec 22, 2023
7c12d7d
Add check-spelling
jsoref Jul 30, 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
spelling: websocket
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
jsoref committed Dec 22, 2023
commit b9a1abf3c2bee98e2261ea8407ef1998378a2a8c
2 changes: 1 addition & 1 deletion nuclei-jsonschema.json
Original file line number Diff line number Diff line change
@@ -1203,7 +1203,7 @@
}
},
"type": "object",
"title": "payloads for the webosocket request",
"title": "payloads for the websocket request",
"description": "Payloads contains any payloads for the current request"
}
},
2 changes: 1 addition & 1 deletion pkg/protocols/javascript/js.go
Original file line number Diff line number Diff line change
@@ -83,7 +83,7 @@ type Request struct {
// Payloads support both key-values combinations where a list
// of payloads is provided, or optionally a single file can also
// be provided as payload which will be read on run-time.
Payloads map[string]interface{} `yaml:"payloads,omitempty" json:"payloads,omitempty" jsonschema:"title=payloads for the webosocket request,description=Payloads contains any payloads for the current request"`
Payloads map[string]interface{} `yaml:"payloads,omitempty" json:"payloads,omitempty" jsonschema:"title=payloads for the websocket request,description=Payloads contains any payloads for the current request"`

generator *generators.PayloadGenerator