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 error in checker_protocol.md #15

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions checker_protocol.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ For the `exploit` method, this is a regular expression that the flag to be explo
For the `exploit` method, this is the hex-encoded SHA256 hash of the flag to be searched by the exploit. For all other methods, the `flagHash` is not set or `null`.

#### attackInfo
For the `exploit` method, this is the `attackInfo` that was returned by the `putflag` method for the flag to be found, if any was returned, and not set or `null` otherwise. For all other methods, the `flagHash` is not set or `null`.
For the `exploit` method, this is the `attackInfo` that was returned by the `putflag` method for the flag to be found, if any was returned, and not set or `null` otherwise. For all other methods, the `attackInfo` is not set or `null`.

### CheckerResultMessage
#### result
Expand All @@ -174,4 +174,4 @@ For results from `putflag`, this is an arbitrary string that will be publicly di
It SHOULD provide attackers with otherwise unavailable information required to mount an exploit retrieving this flag, such as a username.

#### flag
For results from `exploit`, if the result is `"OK"`, this MUST be the flag matching the `flagHash`. For other methods or when the result is not `"OK"`, this must be unset or `null`.
For results from `exploit`, if the result is `"OK"`, this MUST be the flag matching the `flagHash`. For other methods or when the result is not `"OK"`, this must be unset or `null`.