forked from eslint-community/eslint-plugin-security
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetect-object-injection.js
79 lines (62 loc) · 2.03 KB
/
detect-object-injection.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/**
* Tries to detect instances of var[var]
* @author Jon Lamendola
*/
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
var Sinks = [];
function getSerialize (fn, decycle) {
var seen = [], keys = [];
decycle = decycle || function(key, value) {
return '[Circular ' + getPath(value, seen, keys) + ']'
};
return function(key, value) {
var ret = value;
if (typeof value === 'object' && value) {
if (seen.indexOf(value) !== -1)
ret = decycle(key, value);
else {
seen.push(value);
keys.push(key);
}
}
if (fn) ret = fn(key, ret);
return ret;
}
}
function getPath (value, seen, keys) {
var index = seen.indexOf(value);
var path = [ keys[index] ];
for (index--; index >= 0; index--) {
if (seen[index][ path[0] ] === value) {
value = seen[index];
path.unshift(keys[index]);
}
}
return '~' + path.join('.');
}
function stringify(obj, fn, spaces, decycle) {
return JSON.stringify(obj, getSerialize(fn, decycle), spaces);
}
stringify.getSerialize = getSerialize;module.exports = function(context) {
"use strict";
var isChanged = false;
return {
"MemberExpression": function(node) {
if (node.computed === true) {
var token = context.getTokens(node)[0];
if (node.property.type === 'Identifier') {
if (node.parent.type === 'VariableDeclarator') {
context.report(node, 'Variable Assigned to Object Injection Sink');
} else if (node.parent.type === 'CallExpression') {
// console.log(node.parent)
context.report(node, 'Function Call Object Injection Sink');
} else {
context.report(node, 'Generic Object Injection Sink');
}
}
}
}
};
}