Skip to content

Commit 0f1b581

Browse files
authoredDec 18, 2021
HPKP: Improved tokenization (#3278)
1 parent 3d708b9 commit 0f1b581

6 files changed

+23
-36
lines changed
 

‎components/prism-hpkp.js

+4-10
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,9 @@
66

77
Prism.languages.hpkp = {
88
'directive': {
9-
pattern: /\b(?:(?:includeSubDomains|preload|strict)(?: |;)|pin-sha256="[a-zA-Z\d+=/]+"|(?:max-age|report-uri)=|report-to )/,
10-
alias: 'keyword'
9+
pattern: /\b(?:includeSubDomains|max-age|pin-sha256|preload|report-to|report-uri|strict)(?=[\s;=]|$)/i,
10+
alias: 'property'
1111
},
12-
'safe': {
13-
pattern: /\b\d{7,}\b/,
14-
alias: 'selector'
15-
},
16-
'unsafe': {
17-
pattern: /\b\d{1,6}\b/,
18-
alias: 'function'
19-
}
12+
'operator': /=/,
13+
'punctuation': /;/
2014
};

‎components/prism-hpkp.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
max-age=123;
2+
max-age=31536000
3+
4+
----------------------------------------------------
5+
6+
[
7+
["directive", "max-age"], ["operator", "="], "123", ["punctuation", ";"],
8+
["directive", "max-age"], ["operator", "="], "31536000"
9+
]
10+
11+
----------------------------------------------------
12+
13+
Checks for HPKP with an "unsafe" max-age.

‎tests/languages/hpkp/safe_maxage_feature.test

-12
This file was deleted.

‎tests/languages/hpkp/sha256_pin_feature.test

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ pin-sha256="EpOpN/ahUF6jhWShDUdy+NvvtaGcu5F7qM6+x2mfkh4="
33
----------------------------------------------------
44

55
[
6-
["directive", "pin-sha256=\"EpOpN/ahUF6jhWShDUdy+NvvtaGcu5F7qM6+x2mfkh4=\""]
6+
["directive", "pin-sha256"],
7+
["operator", "="],
8+
"\"EpOpN/ahUF6jhWShDUdy+NvvtaGcu5F7qM6+x2mfkh4",
9+
["operator", "="],
10+
"\""
711
]
812

913
----------------------------------------------------

‎tests/languages/hpkp/unsafe_maxage_feature.test

-12
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.