Skip to content

Commit 4e811e7

Browse files
Resolves #308 (#309)
* update remediation advice for cache-control * update cache control advice notes in changelog * updated changelog Co-authored-by: Adam David <[email protected]>
1 parent dc1aac0 commit 4e811e7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1919
- broken_authentication_and_session_management.weak_login_function.lan_only
2020

2121
### Changed
22+
- server_security_misconfiguration.lack_of_security_headers.cache_control_for_a_non_sensitive_page updated remediation advice
23+
- server_security_misconfiguration.lack_of_security_headers.cache_control_for_a_sensitive_page updated remediation advice
2224

2325
## [v1.9](https://github.com/bugcrowd/vulnerability-rating-taxonomy/compare/v1.8...v1.9) - 2020-05-22
2426
### Added

mappings/remediation_advice/remediation_advice.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@
412412
},
413413
{
414414
"id": "cache_control_for_a_non_sensitive_page",
415-
"remediation_advice": "As a best practice, consider using the `Cache-Control: no-cache` as it will help insure that the browser does not cache pages. Although the page may not currently contain sensitive data, sensitive data may be unintentionally placed there in the future.",
415+
"remediation_advice": "As a best practice, consider using the `Cache-Control: no-store` as it will help insure that the browser does not cache pages. Although the page may not currently contain sensitive data, sensitive data may be unintentionally placed there in the future.",
416416
"references": [
417417
"https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control"
418418
]
@@ -483,7 +483,7 @@
483483
},
484484
{
485485
"id": "cache_control_for_a_sensitive_page",
486-
"remediation_advice": "Add the `Cache-Control` HTTP response header such as `Cache-Control: no-cache`, as it will help insure that the browser does not cache sensitive pages."
486+
"remediation_advice": "Add the `Cache-Control` HTTP response header such as `Cache-Control: no-store`, as it will help insure that the browser does not cache sensitive pages."
487487
}
488488
]
489489
},

0 commit comments

Comments
 (0)