Skip to content

Commit 1f50e71

Browse files
committed
Fix: Recommend 'no-cache' and 'no-store' if the URL has sensitive data
#28
1 parent 7591162 commit 1f50e71

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

humble.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2153,7 +2153,7 @@ def custom_help_formatter(prog):
21532153
t_act = ('allowed-origin', 'load', 'retry')
21542154

21552155
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control
2156-
t_cache = ('no-cache', 'no-store', 'must-revalidate')
2156+
t_cache = ('no-cache', 'no-store')
21572157
t_cachev = ('immutable', 'max-age', 'must-revalidate', 'must-understand',
21582158
'no-cache', 'no-store', 'no-transform', 'private',
21592159
'proxy-revalidate', 'public', 's-maxage', 'stale-if-error',

l10n/details.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -980,7 +980,7 @@ HTTP Response Headers
980980
Ref: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Max-Age
981981

982982
[icache]
983-
Enable 'no-cache', 'no-store', and 'must-revalidate' if there are sensitive data.
983+
Enable 'no-cache' and 'no-store' if there are sensitive data in the URL analyzed.
984984
Ref: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control
985985

986986
[icachev]

l10n/details_es.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -985,7 +985,7 @@ Cabeceras de respuesta HTTP
985985
Ref: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Max-Age
986986

987987
[icache]
988-
Si hay datos sensibles, habilite 'no-cache', 'no-store', y 'must-revalidate'.
988+
Habilite 'no-cache' y 'no-store' si hay datos sensibles en la URL analizada.
989989
Ref: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control
990990

991991
[icachev]

0 commit comments

Comments
 (0)