Skip to content

Commit 8e76a97

Browse files
Shell-session: Fixed false positives because of links in command output (#2649)
1 parent add3736 commit 8e76a97

File tree

4 files changed

+104
-38
lines changed

4 files changed

+104
-38
lines changed

components/prism-shell-session.js

+15-15
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,24 @@
1414
].join('|');
1515

1616
Prism.languages['shell-session'] = {
17-
'info': {
18-
// foo@bar:~/files$ exit
19-
// foo@bar$ exit
20-
pattern: /^[^\r\n$#*!]+(?=[$#])/m,
21-
alias: 'punctuation',
22-
inside: {
23-
'path': {
24-
pattern: /(:)[\s\S]+/,
25-
lookbehind: true
26-
},
27-
'user': /^[^\s@:$#*!/\\]+@[^\s@:$#*!/\\]+(?=:|$)/,
28-
'punctuation': /:/
29-
}
30-
},
3117
'command': {
32-
pattern: RegExp(/[$#](?:[^\\\r\n'"<]|\\.|<<str>>)+/.source.replace(/<<str>>/g, function () { return strings; })),
18+
pattern: RegExp(/^(?:[^\s@:$#*!/\\]+@[^\s@:$#*!/\\]+(?::[^\0-\x1F$#*?"<>:;|]+)?)?[$#](?:[^\\\r\n'"<]|\\.|<<str>>)+/.source.replace(/<<str>>/g, function () { return strings; }), 'm'),
3319
greedy: true,
3420
inside: {
21+
'info': {
22+
// foo@bar:~/files$ exit
23+
// foo@bar$ exit
24+
pattern: /^[^#$]+/,
25+
alias: 'punctuation',
26+
inside: {
27+
'path': {
28+
pattern: /(:)[\s\S]+/,
29+
lookbehind: true
30+
},
31+
'user': /^[^:]+/,
32+
'punctuation': /:/
33+
}
34+
},
3535
'bash': {
3636
pattern: /(^[$#]\s*)[\s\S]+/,
3737
lookbehind: true,

components/prism-shell-session.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/languages/shell-session/info_feature.test

+19-22
Original file line numberDiff line numberDiff line change
@@ -9,39 +9,37 @@ foo@bar$ exit
99
----------------------------------------------------
1010

1111
[
12-
["info", [
13-
["user", "foo@bar"],
14-
["punctuation", ":"],
15-
["path", "/var/local"]
16-
]],
1712
["command", [
13+
["info", [
14+
["user", "foo@bar"],
15+
["punctuation", ":"],
16+
["path", "/var/local"]
17+
]],
1818
["shell-symbol", "$"],
1919
["bash", [
2020
["builtin", "cd"],
2121
" ~"
2222
]]
2323
]],
24-
25-
["info", [
26-
["user", "foo@bar"],
27-
["punctuation", ":"],
28-
["path", "~"]
29-
]],
3024
["command", [
25+
["info", [
26+
["user", "foo@bar"],
27+
["punctuation", ":"],
28+
["path", "~"]
29+
]],
3130
["shell-symbol", "$"],
3231
["bash", [
3332
["function", "sudo"],
3433
" -i"
3534
]]
3635
]],
3736
["output", "[sudo] password for foo:\r\n"],
38-
39-
["info", [
40-
["user", "root@bar"],
41-
["punctuation", ":"],
42-
["path", "~"]
43-
]],
4437
["command", [
38+
["info", [
39+
["user", "root@bar"],
40+
["punctuation", ":"],
41+
["path", "~"]
42+
]],
4543
["shell-symbol", "#"],
4644
["bash", [
4745
["builtin", "echo"],
@@ -51,11 +49,10 @@ foo@bar$ exit
5149
]]
5250
]],
5351
["output", "hello!\r\n\r\n"],
54-
55-
["info", [
56-
["user", "foo@bar"]
57-
]],
5852
["command", [
53+
["info", [
54+
["user", "foo@bar"]
55+
]],
5956
["shell-symbol", "$"],
6057
["bash", [
6158
["builtin", "exit"]
@@ -65,4 +62,4 @@ foo@bar$ exit
6562

6663
----------------------------------------------------
6764

68-
Checks for the info bash outputs.
65+
Checks for the info bash outputs.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
$ export BORG_PASSCOMMAND="security find-generic-password -a $USER -s borg-passphrase -w"
2+
$ export BORG_RSH="ssh -i ~/.ssh/borg"
3+
$ borg init --encryption=keyfile-blake2 "borg@1.2.3.4:backup"
4+
5+
By default repositories initialized with this version will produce security
6+
errors if written to with an older version (up to and including Borg 1.0.8).
7+
8+
If you want to use these older versions, you can disable the check by running:
9+
borg upgrade --disable-tam ssh://borg@1.2.3.4/./backup
10+
11+
See https://borgbackup.readthedocs.io/en/stable/changes.html#pre-1-0-9-manifest-spoofing-vulnerability for details about the security implications.
12+
13+
IMPORTANT: you will need both KEY AND PASSPHRASE to access this repo!
14+
Use "borg key export" to export the key, optionally in printable format.
15+
Write down the passphrase. Store both at safe place(s).
16+
17+
---
18+
19+
----------------------------------------------------
20+
21+
[
22+
["command", [
23+
["shell-symbol", "$"],
24+
["bash", [
25+
["builtin", "export"],
26+
["assign-left", [
27+
"BORG_PASSCOMMAND"
28+
]],
29+
["operator", [
30+
"="
31+
]],
32+
["string", [
33+
"\"security find-generic-password -a ",
34+
["environment", "$USER"],
35+
" -s borg-passphrase -w\""
36+
]]
37+
]]
38+
]],
39+
["command", [
40+
["shell-symbol", "$"],
41+
["bash", [
42+
["builtin", "export"],
43+
["assign-left", [
44+
"BORG_RSH"
45+
]],
46+
["operator", [
47+
"="
48+
]],
49+
["string", [
50+
"\"ssh -i ~/.ssh/borg\""
51+
]]
52+
]]
53+
]],
54+
["command", [
55+
["shell-symbol", "$"],
56+
["bash", [
57+
"borg init --encryption",
58+
["operator", [
59+
"="
60+
]],
61+
"keyfile-blake2 ",
62+
["string", [
63+
"\"borg@1.2.3.4:backup\""
64+
]]
65+
]]
66+
]],
67+
68+
["output", "By default repositories initialized with this version will produce security\nerrors if written to with an older version (up to and including Borg 1.0.8).\n\nIf you want to use these older versions, you can disable the check by running:\nborg upgrade --disable-tam ssh://borg@1.2.3.4/./backup\n\nSee https://borgbackup.readthedocs.io/en/stable/changes.html#pre-1-0-9-manifest-spoofing-vulnerability for details about the security implications.\n\nIMPORTANT: you will need both KEY AND PASSPHRASE to access this repo!\nUse \"borg key export\" to export the key, optionally in printable format.\nWrite down the passphrase. Store both at safe place(s).\n\n---"]
69+
]

0 commit comments

Comments
 (0)