@contrast/assess 1.14.0 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/dataflow/propagation/install/JSON/parse-fn.js +2 -2
- package/lib/dataflow/propagation/install/decode-uri-component.js +3 -0
- package/lib/dataflow/propagation/install/escape-html.js +1 -1
- package/lib/dataflow/propagation/install/path/dirname.js +112 -0
- package/lib/dataflow/propagation/install/path/index.js +3 -1
- package/lib/dataflow/propagation/install/path/relative.js +123 -0
- package/lib/dataflow/propagation/install/reg-exp-prototype-exec.js +2 -0
- package/lib/dataflow/propagation/install/validator/hooks.js +8 -6
- package/lib/dataflow/sinks/index.js +1 -0
- package/lib/dataflow/sinks/install/libxmljs.js +128 -0
- package/lib/dataflow/sources/index.js +1 -0
- package/lib/dataflow/sources/install/multer1.js +119 -0
- package/lib/index.js +8 -6
- package/lib/session-configuration/handlers.js +1 -1
- package/lib/session-configuration/index.js +1 -0
- package/lib/session-configuration/install/hapi.js +108 -0
- package/package.json +1 -1
|
@@ -217,7 +217,7 @@ function processInput(input) {
|
|
|
217
217
|
return number(input, 0);
|
|
218
218
|
}
|
|
219
219
|
|
|
220
|
-
if (firstElement === '"') {
|
|
220
|
+
if (firstElement === '"' && lastElement === '"') {
|
|
221
221
|
return string(input, 1);
|
|
222
222
|
}
|
|
223
223
|
|
|
@@ -228,7 +228,7 @@ function processInput(input) {
|
|
|
228
228
|
case 'null':
|
|
229
229
|
return nully();
|
|
230
230
|
default:
|
|
231
|
-
|
|
231
|
+
return string(input, 0);
|
|
232
232
|
}
|
|
233
233
|
}
|
|
234
234
|
|
|
@@ -53,6 +53,9 @@ module.exports = function(core) {
|
|
|
53
53
|
// the result is not tracked, so we don't need to check for that
|
|
54
54
|
const history = [argInfo];
|
|
55
55
|
const newTags = createFullLengthCopyTags(argInfo.tags, result.length);
|
|
56
|
+
|
|
57
|
+
if (!newTags) return;
|
|
58
|
+
|
|
56
59
|
delete newTags[URL_ENCODED];
|
|
57
60
|
|
|
58
61
|
if (!Object.keys(newTags).length) return;
|
|
@@ -51,7 +51,7 @@ module.exports = function(core) {
|
|
|
51
51
|
if (!argInfo) return;
|
|
52
52
|
|
|
53
53
|
const resultInfo = tracker.getData(result);
|
|
54
|
-
const history = [argInfo];
|
|
54
|
+
const history = [{ ...argInfo }];
|
|
55
55
|
const newTags = createFullLengthCopyTags(argInfo.tags, result.length);
|
|
56
56
|
|
|
57
57
|
newTags[HTML_ENCODED] = [0, result.length - 1];
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright: 2023 Contrast Security, Inc
|
|
3
|
+
* Contact: support@contrastsecurity.com
|
|
4
|
+
* License: Commercial
|
|
5
|
+
|
|
6
|
+
* NOTICE: This Software and the patented inventions embodied within may only be
|
|
7
|
+
* used as part of Contrast Security’s commercial offerings. Even though it is
|
|
8
|
+
* made available through public repositories, use of this Software is subject to
|
|
9
|
+
* the applicable End User Licensing Agreement found at
|
|
10
|
+
* https://www.contrastsecurity.com/enduser-terms-0317a or as otherwise agreed
|
|
11
|
+
* between Contrast Security and the End User. The Software may not be reverse
|
|
12
|
+
* engineered, modified, repackaged, sold, redistributed or otherwise used in a
|
|
13
|
+
* way not consistent with the End User License Agreement.
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
'use strict';
|
|
17
|
+
const { isString } = require('@contrast/common');
|
|
18
|
+
const { patchType } = require('../../common');
|
|
19
|
+
const {
|
|
20
|
+
createArgTagsInResult
|
|
21
|
+
} = require('./common');
|
|
22
|
+
|
|
23
|
+
module.exports = function(core) {
|
|
24
|
+
const {
|
|
25
|
+
depHooks,
|
|
26
|
+
patcher,
|
|
27
|
+
scopes: { sources, instrumentation },
|
|
28
|
+
assess: {
|
|
29
|
+
eventFactory: { createPropagationEvent },
|
|
30
|
+
dataflow: { tracker },
|
|
31
|
+
},
|
|
32
|
+
} = core;
|
|
33
|
+
|
|
34
|
+
core.assess.dataflow.propagation.pathInstrumentation.dirname = {
|
|
35
|
+
install() {
|
|
36
|
+
depHooks.resolve({ name: 'path' }, (path) => {
|
|
37
|
+
for (const os of ['posix', 'win32']) {
|
|
38
|
+
const isWin32 = os === 'win32';
|
|
39
|
+
|
|
40
|
+
patcher.patch(path[os], 'dirname', {
|
|
41
|
+
name: `path.${os}.dirname`,
|
|
42
|
+
patchType,
|
|
43
|
+
post(data) {
|
|
44
|
+
const { args, result, name, hooked, orig } = data;
|
|
45
|
+
if (
|
|
46
|
+
!result ||
|
|
47
|
+
!sources.getStore()?.assess ||
|
|
48
|
+
instrumentation.isLocked()
|
|
49
|
+
)
|
|
50
|
+
return;
|
|
51
|
+
|
|
52
|
+
const pathStr = args[0];
|
|
53
|
+
|
|
54
|
+
if (!pathStr || !isString(pathStr)) return;
|
|
55
|
+
|
|
56
|
+
const strInfo = tracker.getData(pathStr);
|
|
57
|
+
|
|
58
|
+
if (!strInfo) return;
|
|
59
|
+
|
|
60
|
+
const { newTags } = createArgTagsInResult({
|
|
61
|
+
argStr: pathStr,
|
|
62
|
+
argTags: strInfo?.tags || {},
|
|
63
|
+
result,
|
|
64
|
+
lastIndex: result.length,
|
|
65
|
+
isWin32,
|
|
66
|
+
});
|
|
67
|
+
|
|
68
|
+
const event = newTags && createPropagationEvent({
|
|
69
|
+
name,
|
|
70
|
+
moduleName: 'path',
|
|
71
|
+
methodName: 'dirname',
|
|
72
|
+
context: `path.dirname('${strInfo.value}')`,
|
|
73
|
+
history: [strInfo],
|
|
74
|
+
object: {
|
|
75
|
+
value: 'path',
|
|
76
|
+
isTracked: false,
|
|
77
|
+
},
|
|
78
|
+
args: [
|
|
79
|
+
{
|
|
80
|
+
value: strInfo.value,
|
|
81
|
+
tracked: true,
|
|
82
|
+
},
|
|
83
|
+
],
|
|
84
|
+
result: {
|
|
85
|
+
value: result,
|
|
86
|
+
tracked: true,
|
|
87
|
+
},
|
|
88
|
+
tags: newTags,
|
|
89
|
+
source: 'P',
|
|
90
|
+
target: 'R',
|
|
91
|
+
stacktraceOpts: {
|
|
92
|
+
constructorOpt: hooked,
|
|
93
|
+
prependFrames: [orig],
|
|
94
|
+
},
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
if (!event) return;
|
|
98
|
+
|
|
99
|
+
const { extern } = tracker.track(result, event);
|
|
100
|
+
|
|
101
|
+
if (extern) {
|
|
102
|
+
data.result = extern;
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
});
|
|
106
|
+
}
|
|
107
|
+
});
|
|
108
|
+
},
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
return core.assess.dataflow.propagation.pathInstrumentation.dirname;
|
|
112
|
+
};
|
|
@@ -25,8 +25,10 @@ module.exports = function(core) {
|
|
|
25
25
|
};
|
|
26
26
|
|
|
27
27
|
require('./basename')(core);
|
|
28
|
-
require('./
|
|
28
|
+
require('./dirname')(core);
|
|
29
29
|
require('./join-and-resolve')(core);
|
|
30
|
+
require('./normalize')(core);
|
|
31
|
+
require('./relative')(core);
|
|
30
32
|
|
|
31
33
|
return pathInstrumentation;
|
|
32
34
|
};
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright: 2023 Contrast Security, Inc
|
|
3
|
+
* Contact: support@contrastsecurity.com
|
|
4
|
+
* License: Commercial
|
|
5
|
+
|
|
6
|
+
* NOTICE: This Software and the patented inventions embodied within may only be
|
|
7
|
+
* used as part of Contrast Security’s commercial offerings. Even though it is
|
|
8
|
+
* made available through public repositories, use of this Software is subject to
|
|
9
|
+
* the applicable End User Licensing Agreement found at
|
|
10
|
+
* https://www.contrastsecurity.com/enduser-terms-0317a or as otherwise agreed
|
|
11
|
+
* between Contrast Security and the End User. The Software may not be reverse
|
|
12
|
+
* engineered, modified, repackaged, sold, redistributed or otherwise used in a
|
|
13
|
+
* way not consistent with the End User License Agreement.
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
'use strict';
|
|
17
|
+
const { isString } = require('@contrast/common');
|
|
18
|
+
const { patchType } = require('../../common');
|
|
19
|
+
const {
|
|
20
|
+
createArgTagsInResult,
|
|
21
|
+
excludeExtensionDotFromTags,
|
|
22
|
+
} = require('./common');
|
|
23
|
+
|
|
24
|
+
module.exports = function(core) {
|
|
25
|
+
const {
|
|
26
|
+
depHooks,
|
|
27
|
+
patcher,
|
|
28
|
+
scopes: { sources, instrumentation },
|
|
29
|
+
assess: {
|
|
30
|
+
eventFactory: { createPropagationEvent },
|
|
31
|
+
dataflow: { tracker },
|
|
32
|
+
},
|
|
33
|
+
} = core;
|
|
34
|
+
|
|
35
|
+
core.assess.dataflow.propagation.pathInstrumentation.relative = {
|
|
36
|
+
install() {
|
|
37
|
+
depHooks.resolve({ name: 'path' }, (path) => {
|
|
38
|
+
for (const os of ['posix', 'win32']) {
|
|
39
|
+
const isWin32 = os === 'win32';
|
|
40
|
+
|
|
41
|
+
patcher.patch(path[os], 'relative', {
|
|
42
|
+
name: `path.${os}.relative`,
|
|
43
|
+
patchType,
|
|
44
|
+
post(data) {
|
|
45
|
+
const { args, result, name, hooked, orig } = data;
|
|
46
|
+
if (
|
|
47
|
+
!result ||
|
|
48
|
+
!sources.getStore()?.assess ||
|
|
49
|
+
instrumentation.isLocked()
|
|
50
|
+
)
|
|
51
|
+
return;
|
|
52
|
+
|
|
53
|
+
const [fromStr, toStr] = args;
|
|
54
|
+
|
|
55
|
+
if (!toStr || !isString(toStr)) return;
|
|
56
|
+
const fromStrInfo = tracker.getData(fromStr);
|
|
57
|
+
const toStrInfo = tracker.getData(toStr);
|
|
58
|
+
|
|
59
|
+
if (!toStrInfo) return;
|
|
60
|
+
|
|
61
|
+
let { newTags } = createArgTagsInResult({
|
|
62
|
+
argStr: toStr,
|
|
63
|
+
argTags: toStrInfo?.tags || {},
|
|
64
|
+
result,
|
|
65
|
+
lastIndex: result.length,
|
|
66
|
+
isWin32
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
newTags = excludeExtensionDotFromTags({
|
|
70
|
+
result,
|
|
71
|
+
tags: newTags,
|
|
72
|
+
isWin32,
|
|
73
|
+
});
|
|
74
|
+
|
|
75
|
+
const event = newTags && createPropagationEvent({
|
|
76
|
+
name,
|
|
77
|
+
moduleName: 'path',
|
|
78
|
+
methodName: 'relative',
|
|
79
|
+
context: `path.relative('${fromStr}', '${toStr}')`,
|
|
80
|
+
history: [toStrInfo],
|
|
81
|
+
object: {
|
|
82
|
+
value: 'path',
|
|
83
|
+
isTracked: false,
|
|
84
|
+
},
|
|
85
|
+
args: [
|
|
86
|
+
{
|
|
87
|
+
value: fromStrInfo?.value || fromStr,
|
|
88
|
+
tracked: !!fromStrInfo,
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
value: toStrInfo?.value,
|
|
92
|
+
tracked: !!toStrInfo,
|
|
93
|
+
}
|
|
94
|
+
],
|
|
95
|
+
result: {
|
|
96
|
+
value: result,
|
|
97
|
+
tracked: true,
|
|
98
|
+
},
|
|
99
|
+
tags: newTags,
|
|
100
|
+
source: 'P',
|
|
101
|
+
target: 'R',
|
|
102
|
+
stacktraceOpts: {
|
|
103
|
+
constructorOpt: hooked,
|
|
104
|
+
prependFrames: [orig],
|
|
105
|
+
},
|
|
106
|
+
});
|
|
107
|
+
|
|
108
|
+
if (!event) return;
|
|
109
|
+
|
|
110
|
+
const { extern } = tracker.track(result, event);
|
|
111
|
+
|
|
112
|
+
if (extern) {
|
|
113
|
+
data.result = extern;
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
});
|
|
117
|
+
}
|
|
118
|
+
});
|
|
119
|
+
},
|
|
120
|
+
};
|
|
121
|
+
|
|
122
|
+
return core.assess.dataflow.propagation.pathInstrumentation.relative;
|
|
123
|
+
};
|
|
@@ -17,8 +17,11 @@
|
|
|
17
17
|
const { validators, untrackers, sanitizers, custom } = require('./methods');
|
|
18
18
|
const { patchType } = require('../../common');
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
function getPatcherArgs(obj) {
|
|
21
|
+
return typeof obj === 'object' ? [obj, 'default'] : [obj];
|
|
22
|
+
}
|
|
21
23
|
|
|
24
|
+
module.exports = function (core) {
|
|
22
25
|
const {
|
|
23
26
|
depHooks,
|
|
24
27
|
patcher,
|
|
@@ -62,9 +65,8 @@ module.exports = function(core) {
|
|
|
62
65
|
depHooks.resolve(
|
|
63
66
|
{ name: 'validator', file: `lib/${validator}` },
|
|
64
67
|
(index) => {
|
|
65
|
-
const patchFn = typeof index === 'object' ? index.default : index;
|
|
66
68
|
const name = `validator.${validator}`;
|
|
67
|
-
return patcher.patch(
|
|
69
|
+
return patcher.patch(...getPatcherArgs(index), {
|
|
68
70
|
name,
|
|
69
71
|
patchType,
|
|
70
72
|
post(data) {
|
|
@@ -98,7 +100,7 @@ module.exports = function(core) {
|
|
|
98
100
|
untrackers.forEach((untracker) => {
|
|
99
101
|
depHooks.resolve(
|
|
100
102
|
{ name: 'validator', file: `lib/${untracker}` },
|
|
101
|
-
(index) => patcher.patch(index
|
|
103
|
+
(index) => patcher.patch(...getPatcherArgs(index), {
|
|
102
104
|
name: `validator.${untracker}`,
|
|
103
105
|
patchType,
|
|
104
106
|
post(data) {
|
|
@@ -115,7 +117,7 @@ module.exports = function(core) {
|
|
|
115
117
|
for (const sanitizer in sanitizers) {
|
|
116
118
|
depHooks.resolve(
|
|
117
119
|
{ name: 'validator', file: `lib/${sanitizer}` },
|
|
118
|
-
(index) => patcher.patch(index
|
|
120
|
+
(index) => patcher.patch(...getPatcherArgs(index), {
|
|
119
121
|
name: `validator.${sanitizer}`,
|
|
120
122
|
patchType,
|
|
121
123
|
post(data) {
|
|
@@ -147,7 +149,7 @@ module.exports = function(core) {
|
|
|
147
149
|
for (const method in custom) {
|
|
148
150
|
depHooks.resolve(
|
|
149
151
|
{ name: 'validator', file: `lib/${method}` },
|
|
150
|
-
(index) => patcher.patch(index
|
|
152
|
+
(index) => patcher.patch(...getPatcherArgs(index), {
|
|
151
153
|
name: `validator.${method}`,
|
|
152
154
|
patchType,
|
|
153
155
|
post(data) {
|
|
@@ -73,6 +73,7 @@ module.exports = function (core) {
|
|
|
73
73
|
require('./install/eval')(core);
|
|
74
74
|
require('./install/fs')(core);
|
|
75
75
|
require('./install/function')(core);
|
|
76
|
+
require('./install/libxmljs')(core);
|
|
76
77
|
require('./install/http')(core);
|
|
77
78
|
require('./install/marsdb')(core);
|
|
78
79
|
require('./install/mongodb')(core);
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright: 2023 Contrast Security, Inc
|
|
3
|
+
* Contact: support@contrastsecurity.com
|
|
4
|
+
* License: Commercial
|
|
5
|
+
|
|
6
|
+
* NOTICE: This Software and the patented inventions embodied within may only be
|
|
7
|
+
* used as part of Contrast Security’s commercial offerings. Even though it is
|
|
8
|
+
* made available through public repositories, use of this Software is subject to
|
|
9
|
+
* the applicable End User Licensing Agreement found at
|
|
10
|
+
* https://www.contrastsecurity.com/enduser-terms-0317a or as otherwise agreed
|
|
11
|
+
* between Contrast Security and the End User. The Software may not be reverse
|
|
12
|
+
* engineered, modified, repackaged, sold, redistributed or otherwise used in a
|
|
13
|
+
* way not consistent with the End User License Agreement.
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
'use strict';
|
|
17
|
+
|
|
18
|
+
const { patchType } = require('../common');
|
|
19
|
+
const {
|
|
20
|
+
Rule: { XXE },
|
|
21
|
+
isString,
|
|
22
|
+
DataflowTag: {
|
|
23
|
+
UNTRUSTED,
|
|
24
|
+
ALPHANUM_SPACE_HYPHEN,
|
|
25
|
+
LIMITED_CHARS,
|
|
26
|
+
},
|
|
27
|
+
inspect
|
|
28
|
+
} = require('@contrast/common');
|
|
29
|
+
|
|
30
|
+
const safeTags = [
|
|
31
|
+
LIMITED_CHARS,
|
|
32
|
+
ALPHANUM_SPACE_HYPHEN
|
|
33
|
+
];
|
|
34
|
+
|
|
35
|
+
module.exports = function(core) {
|
|
36
|
+
const {
|
|
37
|
+
depHooks,
|
|
38
|
+
patcher,
|
|
39
|
+
scopes: { sources, instrumentation },
|
|
40
|
+
assess: {
|
|
41
|
+
eventFactory: { createSinkEvent },
|
|
42
|
+
dataflow: {
|
|
43
|
+
tracker,
|
|
44
|
+
sinks: { isVulnerable, reportFindings }
|
|
45
|
+
},
|
|
46
|
+
},
|
|
47
|
+
} = core;
|
|
48
|
+
|
|
49
|
+
const handler = (moduleName, newApi) => (module) => {
|
|
50
|
+
const checkOptions = newApi
|
|
51
|
+
? (opts) => !opts?.noent && !opts?.replaceEntities
|
|
52
|
+
: (opts) => !opts?.noent;
|
|
53
|
+
|
|
54
|
+
const methods = newApi
|
|
55
|
+
? ['parseXml', 'parseXmlAsync']
|
|
56
|
+
: ['parseXml', 'parseXmlString'];
|
|
57
|
+
|
|
58
|
+
methods.forEach((method) => {
|
|
59
|
+
patcher.patch(module, method, {
|
|
60
|
+
name: `${moduleName}.${method}`,
|
|
61
|
+
patchType,
|
|
62
|
+
pre(data) {
|
|
63
|
+
const store = sources.getStore()?.assess;
|
|
64
|
+
if (
|
|
65
|
+
!store ||
|
|
66
|
+
!data.args[0] ||
|
|
67
|
+
instrumentation.isLocked()
|
|
68
|
+
) return;
|
|
69
|
+
|
|
70
|
+
const [xmlString, opts] = data.args;
|
|
71
|
+
|
|
72
|
+
if (!xmlString || !isString(xmlString) || checkOptions(opts)) {
|
|
73
|
+
return;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
const strInfo = tracker.getData(xmlString);
|
|
77
|
+
if (!strInfo || !isVulnerable(UNTRUSTED, safeTags, strInfo.tags)) {
|
|
78
|
+
return;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
const event = createSinkEvent({
|
|
82
|
+
name: `${moduleName}.${method}`,
|
|
83
|
+
moduleName,
|
|
84
|
+
methodName: method,
|
|
85
|
+
context: `${moduleName}.${method}(${strInfo.value}, ${inspect(opts)})`,
|
|
86
|
+
history: [strInfo],
|
|
87
|
+
object: {
|
|
88
|
+
value: moduleName,
|
|
89
|
+
tracked: false,
|
|
90
|
+
},
|
|
91
|
+
args: [
|
|
92
|
+
{
|
|
93
|
+
value: strInfo.value,
|
|
94
|
+
tracked: true,
|
|
95
|
+
},
|
|
96
|
+
],
|
|
97
|
+
tags: strInfo.tags,
|
|
98
|
+
source: 'P0',
|
|
99
|
+
stacktraceOpts: {
|
|
100
|
+
contructorOpt: data.hooked,
|
|
101
|
+
prependFrames: [data.orig]
|
|
102
|
+
},
|
|
103
|
+
});
|
|
104
|
+
|
|
105
|
+
if (event) {
|
|
106
|
+
reportFindings({
|
|
107
|
+
ruleId: XXE,
|
|
108
|
+
sinkEvent: event,
|
|
109
|
+
});
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
});
|
|
113
|
+
});
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
core.assess.dataflow.sinks.libxmljs = {
|
|
117
|
+
install() {
|
|
118
|
+
// libxmljs changed its API in version 1.0.0
|
|
119
|
+
depHooks.resolve({ name: 'libxmljs', version: '>=1' }, handler('libxmljs', true));
|
|
120
|
+
|
|
121
|
+
// libxmljs versions prior to 1.0.0 and libxmljs2 share the same API
|
|
122
|
+
depHooks.resolve({ name: 'libxmljs', version: '<1' }, handler('libxmljs', false));
|
|
123
|
+
depHooks.resolve({ name: 'libxmljs2' }, handler('libxmljs2', false));
|
|
124
|
+
},
|
|
125
|
+
};
|
|
126
|
+
|
|
127
|
+
return core.assess.dataflow.sinks.libxmljs;
|
|
128
|
+
};
|
|
@@ -32,6 +32,7 @@ module.exports = function (core) {
|
|
|
32
32
|
require('./install/http')(core);
|
|
33
33
|
require('./install/qs6')(core);
|
|
34
34
|
require('./install/querystring')(core);
|
|
35
|
+
require('./install/multer1')(core);
|
|
35
36
|
|
|
36
37
|
sources.install = function install() {
|
|
37
38
|
callChildComponentMethodsSync(sources, 'install');
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright: 2023 Contrast Security, Inc
|
|
3
|
+
* Contact: support@contrastsecurity.com
|
|
4
|
+
* License: Commercial
|
|
5
|
+
|
|
6
|
+
* NOTICE: This Software and the patented inventions embodied within may only be
|
|
7
|
+
* used as part of Contrast Security’s commercial offerings. Even though it is
|
|
8
|
+
* made available through public repositories, use of this Software is subject to
|
|
9
|
+
* the applicable End User Licensing Agreement found at
|
|
10
|
+
* https://www.contrastsecurity.com/enduser-terms-0317a or as otherwise agreed
|
|
11
|
+
* between Contrast Security and the End User. The Software may not be reverse
|
|
12
|
+
* engineered, modified, repackaged, sold, redistributed or otherwise used in a
|
|
13
|
+
* way not consistent with the End User License Agreement.
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
'use strict';
|
|
17
|
+
|
|
18
|
+
const { InputType } = require('@contrast/common');
|
|
19
|
+
const { patchType } = require('../common');
|
|
20
|
+
|
|
21
|
+
module.exports = (core) => {
|
|
22
|
+
const {
|
|
23
|
+
depHooks,
|
|
24
|
+
patcher,
|
|
25
|
+
logger,
|
|
26
|
+
assess,
|
|
27
|
+
scopes: { wrap },
|
|
28
|
+
} = core;
|
|
29
|
+
|
|
30
|
+
function handleFile(sourceContext, constructorOpt, req) {
|
|
31
|
+
try {
|
|
32
|
+
assess.dataflow.sources.handle({
|
|
33
|
+
context: 'req',
|
|
34
|
+
data: req,
|
|
35
|
+
keys: ['file'],
|
|
36
|
+
name: 'multer',
|
|
37
|
+
inputType: InputType.BODY,
|
|
38
|
+
sourceContext,
|
|
39
|
+
stacktraceOpts: {
|
|
40
|
+
constructorOpt,
|
|
41
|
+
},
|
|
42
|
+
});
|
|
43
|
+
} catch (err) {
|
|
44
|
+
logger.error({ err }, 'error handling multer Assess dataflow req.file source');
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
function handleFiles(sourceContext, constructorOpt, req) {
|
|
49
|
+
let i;
|
|
50
|
+
for (i = 0; i < req.files.length; i++) {
|
|
51
|
+
try {
|
|
52
|
+
assess.dataflow.sources.handle({
|
|
53
|
+
context: 'req.files',
|
|
54
|
+
data: req.files[i],
|
|
55
|
+
keys: [i],
|
|
56
|
+
name: 'multer',
|
|
57
|
+
inputType: InputType.BODY,
|
|
58
|
+
sourceContext,
|
|
59
|
+
stacktraceOpts: {
|
|
60
|
+
constructorOpt,
|
|
61
|
+
},
|
|
62
|
+
});
|
|
63
|
+
} catch (err) {
|
|
64
|
+
logger.error({ err }, 'error handling multer Assess dataflow req.files[%s] source', i);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
function handleBody(sourceContext, constructorOpt, req) {
|
|
70
|
+
try {
|
|
71
|
+
assess.dataflow.sources.handle({
|
|
72
|
+
context: 'req',
|
|
73
|
+
data: req,
|
|
74
|
+
keys: ['body'],
|
|
75
|
+
name: 'multer',
|
|
76
|
+
inputType: InputType.BODY,
|
|
77
|
+
sourceContext,
|
|
78
|
+
stacktraceOpts: {
|
|
79
|
+
constructorOpt,
|
|
80
|
+
},
|
|
81
|
+
});
|
|
82
|
+
} catch (err) {
|
|
83
|
+
logger.error({ err }, 'error handling multer Assess dataflow req.body source');
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
const multer1Instrumentation = (core.assess.dataflow.sources.multer1Instrumentation = {
|
|
88
|
+
install() {
|
|
89
|
+
depHooks.resolve(
|
|
90
|
+
{ name: 'multer', file: 'lib/make-middleware.js' },
|
|
91
|
+
(_export) => patcher.patch(_export, {
|
|
92
|
+
name: 'multer._makeMiddleware',
|
|
93
|
+
patchType,
|
|
94
|
+
post(data) {
|
|
95
|
+
data.result = patcher.patch(data.result, {
|
|
96
|
+
name: 'multerMiddleware',
|
|
97
|
+
patchType,
|
|
98
|
+
pre(data) {
|
|
99
|
+
const [req, , next, hooked] = data.args;
|
|
100
|
+
|
|
101
|
+
const sourceContext = core.scopes.sources.getStore()?.assess;
|
|
102
|
+
if (!sourceContext) return;
|
|
103
|
+
|
|
104
|
+
data.args[2] = wrap(function (...args) {
|
|
105
|
+
if (req.file) handleFile(sourceContext, hooked, req);
|
|
106
|
+
if (Array.isArray(req.files)) handleFiles(sourceContext, hooked, req);
|
|
107
|
+
if (req.body && Object.keys(req.body).length) handleBody(sourceContext, hooked, req.body);
|
|
108
|
+
next(...args);
|
|
109
|
+
});
|
|
110
|
+
},
|
|
111
|
+
});
|
|
112
|
+
},
|
|
113
|
+
}));
|
|
114
|
+
|
|
115
|
+
},
|
|
116
|
+
});
|
|
117
|
+
|
|
118
|
+
return multer1Instrumentation;
|
|
119
|
+
};
|
package/lib/index.js
CHANGED
|
@@ -22,21 +22,23 @@ const responseScanning = require('./response-scanning');
|
|
|
22
22
|
const eventFactory = require('./event-factory');
|
|
23
23
|
|
|
24
24
|
module.exports = function assess(core) {
|
|
25
|
-
if (!core.config.assess.enable) return;
|
|
26
|
-
|
|
27
25
|
const assess = core.assess = {};
|
|
28
26
|
|
|
29
|
-
// Does this order matter? Probably not
|
|
30
|
-
// 1. dataflow
|
|
31
27
|
eventFactory(core);
|
|
32
28
|
dataflow(core);
|
|
33
29
|
responseScanning(core);
|
|
34
30
|
sessionConfiguration(core);
|
|
35
31
|
|
|
36
|
-
//
|
|
37
|
-
//
|
|
32
|
+
// todo
|
|
33
|
+
// crypto rule implementations
|
|
34
|
+
// static rule implementations in coordination with (CLI) rewriter
|
|
38
35
|
|
|
39
36
|
assess.install = function() {
|
|
37
|
+
if (!core.config.getEffectiveValue('assess.enable')) {
|
|
38
|
+
core.logger.debug('assess is disabled, skipping installation');
|
|
39
|
+
return;
|
|
40
|
+
}
|
|
41
|
+
|
|
40
42
|
core.rewriter.install('assess');
|
|
41
43
|
callChildComponentMethodsSync(core.assess, 'install');
|
|
42
44
|
};
|
|
@@ -22,6 +22,7 @@ module.exports = function(core) {
|
|
|
22
22
|
|
|
23
23
|
require('./handlers')(core);
|
|
24
24
|
require('./install/express-session')(core);
|
|
25
|
+
require('./install/hapi')(core);
|
|
25
26
|
|
|
26
27
|
sessionConfiguration.install = function() {
|
|
27
28
|
callChildComponentMethodsSync(sessionConfiguration, 'install');
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright: 2023 Contrast Security, Inc
|
|
3
|
+
* Contact: support@contrastsecurity.com
|
|
4
|
+
* License: Commercial
|
|
5
|
+
|
|
6
|
+
* NOTICE: This Software and the patented inventions embodied within may only be
|
|
7
|
+
* used as part of Contrast Security’s commercial offerings. Even though it is
|
|
8
|
+
* made available through public repositories, use of this Software is subject to
|
|
9
|
+
* the applicable End User Licensing Agreement found at
|
|
10
|
+
* https://www.contrastsecurity.com/enduser-terms-0317a or as otherwise agreed
|
|
11
|
+
* between Contrast Security and the End User. The Software may not be reverse
|
|
12
|
+
* engineered, modified, repackaged, sold, redistributed or otherwise used in a
|
|
13
|
+
* way not consistent with the End User License Agreement.
|
|
14
|
+
*/
|
|
15
|
+
'use strict';
|
|
16
|
+
|
|
17
|
+
const util = require('util');
|
|
18
|
+
const { patchType } = require('../common');
|
|
19
|
+
|
|
20
|
+
module.exports = function (core) {
|
|
21
|
+
const {
|
|
22
|
+
assess: {
|
|
23
|
+
eventFactory: { createSessionEvent },
|
|
24
|
+
sessionConfiguration: {
|
|
25
|
+
handleHttpOnly,
|
|
26
|
+
handleSecure,
|
|
27
|
+
},
|
|
28
|
+
},
|
|
29
|
+
depHooks,
|
|
30
|
+
patcher,
|
|
31
|
+
scopes: { sources },
|
|
32
|
+
} = core;
|
|
33
|
+
|
|
34
|
+
const hapiSession = core.assess.sessionConfiguration.hapiSession = {};
|
|
35
|
+
|
|
36
|
+
const inspect = patcher.unwrap(util.inspect);
|
|
37
|
+
|
|
38
|
+
hapiSession.install = function () {
|
|
39
|
+
|
|
40
|
+
return depHooks.resolve({ name: '@hapi/hapi', version: '>=18 <21' }, (hapi) => {
|
|
41
|
+
['server', 'Server'].forEach((server) => {
|
|
42
|
+
patcher.patch(hapi, server, {
|
|
43
|
+
name: `hapi.${server}`,
|
|
44
|
+
patchType,
|
|
45
|
+
post(data) {
|
|
46
|
+
patcher.patch(data.result, 'state', {
|
|
47
|
+
name: 'state',
|
|
48
|
+
patchType,
|
|
49
|
+
post(data) {
|
|
50
|
+
|
|
51
|
+
const options = data.args[1];
|
|
52
|
+
|
|
53
|
+
const httpOnly = Object.prototype.hasOwnProperty.call(options, 'isHttpOnly') ? options.isHttpOnly : true;
|
|
54
|
+
const isSecure = Object.prototype.hasOwnProperty.call(options, 'isSecure') ? options.isSecure : true;
|
|
55
|
+
|
|
56
|
+
if (httpOnly && isSecure) return;
|
|
57
|
+
|
|
58
|
+
const sessionEvent = createSessionEvent({
|
|
59
|
+
args: [{
|
|
60
|
+
tracked: false,
|
|
61
|
+
value: inspect(options),
|
|
62
|
+
}],
|
|
63
|
+
context: `state(${inspect(data.args)})`,
|
|
64
|
+
history: [],
|
|
65
|
+
name: `hapi.${server}.state`,
|
|
66
|
+
moduleName: 'hapi',
|
|
67
|
+
methodName: '',
|
|
68
|
+
object: {
|
|
69
|
+
tracked: false,
|
|
70
|
+
value: `hapi.${server}`,
|
|
71
|
+
},
|
|
72
|
+
result: {
|
|
73
|
+
tracked: false,
|
|
74
|
+
value: undefined,
|
|
75
|
+
},
|
|
76
|
+
source: 'P1',
|
|
77
|
+
stacktraceOpts: {
|
|
78
|
+
constructorOpt: data.hooked,
|
|
79
|
+
},
|
|
80
|
+
framework: 'hapi',
|
|
81
|
+
options
|
|
82
|
+
});
|
|
83
|
+
|
|
84
|
+
data.obj.ext('onPostResponse', ({ response: { headers } }) => {
|
|
85
|
+
const value = headers?.['set-cookie']?.[0];
|
|
86
|
+
if (!value) return;
|
|
87
|
+
|
|
88
|
+
const sourceContext = sources.getStore()?.assess;
|
|
89
|
+
if (!sourceContext) return;
|
|
90
|
+
|
|
91
|
+
if (!httpOnly) {
|
|
92
|
+
handleHttpOnly(sourceContext, `set-cookie: ${value}`, sessionEvent);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
if (!isSecure) {
|
|
96
|
+
handleSecure(sourceContext, `set-cookie: ${value}`, sessionEvent);
|
|
97
|
+
}
|
|
98
|
+
});
|
|
99
|
+
}
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
});
|
|
103
|
+
});
|
|
104
|
+
});
|
|
105
|
+
};
|
|
106
|
+
|
|
107
|
+
return hapiSession;
|
|
108
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contrast/assess",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.0",
|
|
4
4
|
"description": "Contrast service providing framework-agnostic Assess support",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"author": "Contrast Security <nodejs@contrastsecurity.com> (https://www.contrastsecurity.com)",
|