-
Notifications
You must be signed in to change notification settings - Fork 673
/
index.js
279 lines (261 loc) · 12.8 KB
/
index.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
#!/usr/bin/env node
const { ArgumentParser } = require('argparse');
const engine = require('./engine');
console.log(`
_____ _ _ _____ _ _ _
/ ____| | | |/ ____| | | (_) |
| | | | ___ _ _ __| | (___ _ __ | | ___ _| |_
| | | |/ _ \\| | | |/ _\` |\\___ \\| '_ \\| |/ _ \\| | __|
| |____| | (_) | |_| | (_| |____) | |_) | | (_) | | |_
\\_____|_|\\___/ \\__,_|\\__,_|_____/| .__/|_|\\___/|_|\\__|
| |
|_|
CloudSploit by Aqua Security, Ltd.
Cloud security auditing for AWS, Azure, GCP, Oracle, and GitHub
`);
const parser = new ArgumentParser({});
parser.add_argument('--config', {
help: 'The path to a CloudSploit config file containing cloud credentials. See config_example.js. ' +
'If not provided, logic will use default AWS credential chain and will also override provided cloud'
});
parser.add_argument('--compliance', {
help: 'Compliance mode. Only return results applicable to the selected program.',
choices: ['hipaa', 'cis', 'cis1', 'cis2', 'pci'],
action: 'append'
});
parser.add_argument('--plugin', {
help: 'A specific plugin to run. If none provided, all plugins will be run. Obtain from the exports.js file. E.g. acmValidation'
});
parser.add_argument('--govcloud', {
help: 'AWS only. Enables GovCloud mode.',
action: 'store_true'
});
parser.add_argument('--china', {
help: 'AWS only. Enables AWS China mode.',
action: 'store_true'
});
parser.add_argument('--csv', { help: 'Output: CSV file' });
parser.add_argument('--json', { help: 'Output: JSON file' });
parser.add_argument('--junit', { help: 'Output: Junit file' });
parser.add_argument('--console', {
help: 'Console output format. Default: table',
choices: ['none', 'text', 'table'],
default: 'table'
});
parser.add_argument('--collection', { help: 'Output: full collection JSON as file' });
parser.add_argument('--ignore-ok', {
help: 'Ignore passing (OK) results',
action: 'store_true'
});
parser.add_argument('--exit-code', {
help: 'Exits with a non-zero status code if non-passing results are found',
action: 'store_true'
});
parser.add_argument('--skip-paginate', {
help: 'AWS only. Skips pagination (for debugging).',
action: 'store_false'
});
parser.add_argument('--suppress', {
help: 'Suppress results matching the provided Regex. Format: pluginId:region:resourceId',
action: 'append'
});
parser.add_argument('--remediate', {
help: 'Run remediation the provided plugin',
action: 'append'
});
parser.add_argument('--cloud', {
help: 'The name of cloud to run plugins for. If not provided, logic will assume cloud from config.js file based on provided credentials',
choices: ['aws', 'azure', 'github', 'google', 'oracle','alibaba'],
action: 'append'
});
parser.add_argument('--run-asl', {
help: 'When set, it will execute custom plugins.',
action: 'store_false'
});
let settings = parser.parse_args();
let cloudConfig = {};
// Now execute the scans using the defined configuration information.
if (!settings.config) {
settings.cloud = 'aws';
// AWS will handle the default credential chain without needing a credential file
console.log('INFO: No config file provided, using default AWS credential chain.');
return engine(cloudConfig, settings);
}
// If "compliance=cis" is passed, turn into "compliance=cis1 and compliance=cis2"
if (settings.compliance && settings.compliance.indexOf('cis') > -1) {
if (settings.compliance.indexOf('cis1') === -1) {
settings.compliance.push('cis1');
}
if (settings.compliance.indexOf('cis2') === -1) {
settings.compliance.push('cis2');
}
settings.compliance = settings.compliance.filter(function(e) { return e !== 'cis'; });
}
console.log(`INFO: Using CloudSploit config file: ${settings.config}`);
try {
var config = require(settings.config);
} catch (e) {
console.error('ERROR: Config file could not be loaded. Please ensure you have copied the config_example.js file to config.js');
process.exit(1);
}
function loadHelperFile(path) {
try {
var contents = require(path);
} catch (e) {
console.error(`ERROR: The credential file could not be loaded ${path}`);
console.error(e);
process.exit(1);
}
return contents;
}
function checkRequiredKeys(obj, keys) {
keys.forEach(function(key){
if (!obj[key] || !obj[key].length) {
console.error(`ERROR: The credential config did not contain a valid value for: ${key}`);
process.exit(1);
}
});
}
if (config.credentials.aws.credential_file && (!settings.cloud || (settings.cloud == 'aws'))) {
settings.cloud = 'aws';
cloudConfig = loadHelperFile(config.credentials.aws.credential_file);
if (!cloudConfig || !cloudConfig.accessKeyId || !cloudConfig.secretAccessKey) {
console.error('ERROR: AWS credential file does not have accessKeyId or secretAccessKey properties');
process.exit(1);
}
} else if (config.credentials.aws.access_key && (!settings.cloud || (settings.cloud == 'aws'))) {
settings.cloud = 'aws';
checkRequiredKeys(config.credentials.aws, ['secret_access_key']);
cloudConfig = {
accessKeyId: config.credentials.aws.access_key,
secretAccessKey: config.credentials.aws.secret_access_key,
sessionToken: config.credentials.aws.session_token,
region: 'us-east-1'
};
} else if (config.credentials.azure.credential_file && (!settings.cloud || (settings.cloud == 'azure'))) {
settings.cloud = 'azure';
cloudConfig = loadHelperFile(config.credentials.azure.credential_file);
if (!cloudConfig || !cloudConfig.ApplicationID || !cloudConfig.KeyValue || !cloudConfig.DirectoryID || !cloudConfig.SubscriptionID) {
console.error('ERROR: Azure credential file does not have ApplicationID, KeyValue, DirectoryID, or SubscriptionID');
process.exit(1);
}
cloudConfig.location = 'East US';
} else if (config.credentials.azure.application_id && (!settings.cloud || (settings.cloud == 'azure'))) {
settings.cloud = 'azure';
checkRequiredKeys(config.credentials.azure, ['key_value', 'directory_id', 'subscription_id']);
cloudConfig = {
ApplicationID: config.credentials.azure.application_id,
KeyValue: config.credentials.azure.key_value,
DirectoryID: config.credentials.azure.directory_id,
SubscriptionID: config.credentials.azure.subscription_id,
location: 'East US',
Govcloud: config.credentials.azure.govcloud,
StorageConnection: config.credentials.azure.storage_connection,
BlobContainer: config.credentials.azure.blob_container
};
} else if (config.credentials.google.credential_file && (!settings.cloud || (settings.cloud == 'google'))) {
settings.cloud = 'google';
cloudConfig = loadHelperFile(config.credentials.google.credential_file);
cloudConfig.project = cloudConfig.project_id;
} else if (config.credentials.google.project && (!settings.cloud || (settings.cloud == 'google'))) {
settings.cloud = 'google';
checkRequiredKeys(config.credentials.google, ['client_email', 'private_key']);
cloudConfig = {
type: 'service_account',
project: config.credentials.google.project,
client_email: config.credentials.google.client_email,
private_key: config.credentials.google.private_key,
};
} else if (config.credentials.oracle.credential_file && (!settings.cloud || (settings.cloud == 'oracle'))) {
settings.cloud = 'oracle';
cloudConfig = loadHelperFile(config.credentials.oracle.credential_file);
if (!cloudConfig || !cloudConfig.tenancyId || !cloudConfig.compartmentId || !cloudConfig.userId || !cloudConfig.keyValue || !cloudConfig.region) {
console.error('ERROR: Oracle credential file does not have tenancyId, compartmentId, userId, region, or keyValue');
process.exit(1);
}
cloudConfig.RESTversion = '/20160918';
} else if (config.credentials.oracle.tenancy_id && (!settings.cloud || (settings.cloud == 'oracle'))) {
settings.cloud = 'oracle';
checkRequiredKeys(config.credentials.oracle, ['compartment_id', 'user_id', 'key_fingerprint', 'key_value']);
cloudConfig = {
RESTversion: '/20160918',
tenancyId: config.credentials.oracle.tenancy_id,
compartmentId: config.credentials.oracle.compartment_id,
userId: config.credentials.oracle.user_id,
keyFingerprint: config.credentials.oracle.key_fingerprint,
keyValue: config.credentials.oracle.key_value,
region: config.credentials.oracle.region,
};
} else if (config.credentials.github.credential_file && (!settings.cloud || (settings.cloud == 'github'))) {
settings.cloud = 'github';
cloudConfig = loadHelperFile(config.credentials.github.credential_file);
} else if (config.credentials.github.token && (!settings.cloud || (settings.cloud == 'github'))) {
settings.cloud = 'github';
checkRequiredKeys(config.credentials.github, ['url', 'login']);
cloudConfig = {
token: config.credentials.github.token,
url: config.credentials.github.url,
organization: config.credentials.github.organization,
login: config.credentials.github.login
};
} else if (config.credentials.alibaba.credential_file && (!settings.cloud || (settings.cloud == 'alibaba'))) {
settings.cloud = 'alibaba';
cloudConfig = loadHelperFile(config.credentials.alibaba.credential_file);
} else if (config.credentials.alibaba.access_key_id && (!settings.cloud || (settings.cloud == 'alibaba'))) {
settings.cloud = 'alibaba';
checkRequiredKeys(config.credentials.alibaba, ['access_key_secret']);
cloudConfig = {
accessKeyId: config.credentials.alibaba.access_key_id,
accessKeySecret: config.credentials.alibaba.access_key_secret
};
} else {
console.error('ERROR: Config file does not contain any valid credential configs.');
process.exit(1);
}
if (settings.remediate && settings.remediate.length) {
if (!config.credentials[`${settings.cloud}_remediate`]) {
console.error('ERROR: No credentials provided for remediation.');
process.exit(1);
}
if (config.credentials.aws_remediate && config.credentials.aws_remediate.credential_file) {
cloudConfig.remediate = loadHelperFile(config.credentials.aws_remediate.credential_file);
if (!cloudConfig.remediate || !cloudConfig.remediate.accessKeyId || !cloudConfig.remediate.secretAccessKey) {
console.error('ERROR: AWS credential file for remediation does not have accessKeyId or secretAccessKey properties');
process.exit(1);
}
} else if (config.credentials.aws_remediate && config.credentials.aws_remediate.access_key) {
checkRequiredKeys(config.credentials.aws_remediate, ['secret_access_key']);
cloudConfig.remediate = {
accessKeyId: config.credentials.aws_remediate.access_key,
secretAccessKey: config.credentials.aws_remediate.secret_access_key,
sessionToken: config.credentials.aws_remediate.session_token
};
} else if (config.credentials.azure_remediate && config.credentials.azure_remediate.credential_file) {
cloudConfig.remediate = loadHelperFile(config.credentials.azure_remediate.credential_file);
if (!cloudConfig.remediate || !cloudConfig.remediate.ApplicationID || !cloudConfig.remediate.KeyValue || !cloudConfig.remediate.DirectoryID || !cloudConfig.remediate.SubscriptionID) {
console.error('ERROR: Azure credential file for remediation does not have ApplicationID, KeyValue, DirectoryID, or SubscriptionID');
process.exit(1);
}
} else if (config.credentials.azure_remediate && config.credentials.azure_remediate.application_id) {
checkRequiredKeys(config.credentials.azure_remediate, ['key_value', 'directory_id', 'subscription_id']);
cloudConfig.remediate = {
ApplicationID: config.credentials.azure_remediate.application_id,
KeyValue: config.credentials.azure_remediate.key_value,
DirectoryID: config.credentials.azure_remediate.directory_id,
SubscriptionID: config.credentials.azure_remediate.subscription_id
};
} else if (config.credentials.google_remediate && config.credentials.google_remediate.project) {
checkRequiredKeys(config.credentials.google, ['client_email', 'private_key']);
cloudConfig = {
type: 'service_account',
project: config.credentials.google.project,
client_email: config.credentials.google.client_email,
private_key: config.credentials.google.private_key,
};
} else {
console.error('ERROR: Config file does not contain any valid credential configs for remediation.');
process.exit(1);
}
}
// Now execute the scans using the defined configuration information.
engine(cloudConfig, settings);