Skip to content

Commit

Permalink
Fixed typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lednerb committed Apr 5, 2019
1 parent 47639db commit 1fea261
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [1.5.3] - 2019-04-05
### Fixed
- Fixed typo

## [1.5.2] - 2019-04-05
### Fixed
- Timeout issues
Expand Down Expand Up @@ -87,7 +91,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Added
- CHANGELOG.md and semantic versioning

[Unreleased]: https://github.com/SIWECOS/HSHS-DOMXSS-Scanner/compare/1.5.2...develop
[Unreleased]: https://github.com/SIWECOS/HSHS-DOMXSS-Scanner/compare/1.5.3...develop
[1.5.3]: https://github.com/SIWECOS/HSHS-DOMXSS-Scanner/compare/1.5.2...1.5.3
[1.5.2]: https://github.com/SIWECOS/HSHS-DOMXSS-Scanner/compare/1.5.1...1.5.2
[1.5.1]: https://github.com/SIWECOS/HSHS-DOMXSS-Scanner/compare/1.3.1...1.5.1
[1.3.1]: https://github.com/SIWECOS/HSHS-DOMXSS-Scanner/compare/1.3.0...1.3.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ Further advanced tests would be needed to confirm if there are vulnerabilities o
| HEADER_NOT_SET | The header is not set. |
| HEADER_SET_MULTIPLE_TIMES | The header is set multiple times. |
| HEADER_ENCODING_ERROR | The header is not correctly encoded. |
| INAVLID_HEADER | The following header is not valid: `:HEADER` |
| INVALID_HEADER | The following header is not valid: `:HEADER` |
| INCLUDE_SUBDOMAINS | `includeSubDomains` is set. |
| MAX_AGE_ERROR | An error occured while checking `max-age`. |
| NO_HTTP_RESPONSE | No HTTP-Response for the given URL. |
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.2
1.5.3
2 changes: 1 addition & 1 deletion app/Ratings/SetCookieRating.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ protected function rate()
// Set-Cookie header exists but not valid so $cookie = null
else {
$this->score -= 5;
$this->testDetails->push(TranslateableMessage::get('INAVLID_HEADER', ['HEADER' => 'Set-Cookie: ' . $cookieHeader]));
$this->testDetails->push(TranslateableMessage::get('INVALID_HEADER', ['HEADER' => 'Set-Cookie: ' . $cookieHeader]));
}
}

Expand Down

0 comments on commit 1fea261

Please sign in to comment.