We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f83d382 commit 5625282Copy full SHA for 5625282
package/contents/ui/lib/ExecUtil.qml
@@ -29,7 +29,8 @@ PlasmaCore.DataSource {
29
30
property var listeners: ({}) // Empty Map
31
32
- // Note that this is not tested.
+ // Note that this has not gone under a security audit.
33
+ // You probably shouldn't trust 3rd party input.
34
function wrapToken(token) {
35
token = "" + token
36
// ' => '"'"' to escape the single quotes
@@ -67,5 +68,5 @@ PlasmaCore.DataSource {
67
68
exec(['notify-send', 'test', '\'; notify-send escape3;\''])
69
exec(['notify-send', 'test', '\\\'; notify-send escape4;\\\''])
70
}
- Component.onCompleted: test()
71
+ // Component.onCompleted: test()
72
0 commit comments