Skip to content

Commit

Permalink
Removed JsDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
jtommi committed Jun 1, 2020
1 parent 80b8f37 commit ab429d4
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions httpfuzzerprocessor/FuzzerStopOnStatusCode200.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,6 @@
/**
* Processes the fuzzed message (payloads already injected).
*
* Called before forwarding the message to the server.
*
* @param {HttpFuzzerTaskProcessorUtils} utils - A utility object that contains functions that ease common tasks.
* @param {HttpMessage} message - The fuzzed message, that will be forward to the server.
*/
function processMessage(utils, message) {
}

/**
* Processes the fuzz result.
*
* Called after receiving the fuzzed message from the server.
*
* @param {HttpFuzzerTaskProcessorUtils} utils - A utility object that contains functions that ease common tasks.
* @param {HttpFuzzResult} fuzzResult - The result of sending the fuzzed message.
* @return {boolean} Whether the result should be accepted, or discarded and not shown.
*/
function processResult(utils, fuzzResult){
if (fuzzResult.getHttpMessage().getResponseHeader().getStatusCode() == 200)
utils.stopFuzzer();
Expand Down

0 comments on commit ab429d4

Please sign in to comment.