-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathSecurityChecks.php
475 lines (335 loc) · 14.9 KB
/
SecurityChecks.php
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
<?php
require 'php-parser/lib/bootstrap.php';
ini_set('xdebug.max_nesting_level', 2000);
class SecurityChecks {
private $dangerousFunctions = array('getone', 'getrow', 'getall', 'getcol', 'getassoc', 'execute', 'replace');
private $result = array();
private $methodStatements;
private $hasPotentialSQLInjection = false;
public function checkSingleFile($fileName) {
$result = $this->checkFile($fileName);
print_r("\n");
if(count($result) > 0) {
$this->hasPotentialSQLInjection = true;
print_r("Potential SQL injections in file $fileName\n");
foreach ($result as $line) {
print_r("line: $line\n");
}
print_r("\n");
}
$this->exitProperly();
}
public function checkFile($fileName) {
$fileStatements = $this->parseFile($fileName);
foreach($fileStatements as $fileStatement)
{
// list all the classes
if($fileStatement->getType() == 'Stmt_Class')
{
foreach($fileStatement->stmts as $classStatement) {
// list all methods
if($classStatement->getType() == 'Stmt_ClassMethod') {
$this->methodStatements = $classStatement->stmts;
$this->mainCycle($classStatement);
}
}
}
else
{
$this->methodStatements = $fileStatements;
$this->mainCycle($fileStatement);
}
}
return $this->result;
}
private function findVariableByName($methodStatements, $variableName, $line) {
// reverse the statements order so we can start from the one closer to the
// adodb method
foreach(array_reverse($methodStatements) as $methodStatement) {
// we're only interested in the lines above the adodb call
if($line > $methodStatement->getLine()) {
$statements = $this->collectAllTheStatements($methodStatement);
// walk through all if-else-switch statements
foreach($statements as $statement) {
$result = $this->findVariableByName($statement, $variableName, $line);
if($result) {
return $result;
}
}
if(is_object($methodStatement)
&& property_exists($methodStatement, 'var')
&& property_exists($methodStatement->var, 'name')
&& $methodStatement->var->name == $variableName) {
return $methodStatement;
}
}
}
// If we can't find how the SQL query is constructed in the current block of code
// then flag the row for manual check. It's very difficult for simple parser
// like this to check all the conditions of how the SQL query is constructed prior
// to sending it to SQL
return false;
}
public function checkDirectory($directoryName) {
$path = realpath($directoryName);
print_r("\n");
$objects = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path));
foreach($objects as $name => $object) {
if(!is_dir($name) && strstr($name, '.php') !== false) {
$dangerousSQLQueries = $this->checkFile($name);
if(count($dangerousSQLQueries) > 0) {
$this->hasPotentialSQLInjection = true;
print_r("Potential SQL injections in file $name\n");
foreach ($dangerousSQLQueries as $line) {
print_r("line: $line\n");
}
print_r("\n");
}
$this->result = array();
}
}
$this->exitProperly();
}
private function parseFile($fileName)
{
$fileContents = file_get_contents($fileName);
$fileStatements = array();
try {
$parser = new PhpParser\Parser(new PhpParser\Lexer);
$fileStatements = $parser->parse($fileContents);
return $fileStatements;
} catch (PhpParser\Error $exception) {
echo 'Parse Error: ', $exception->getMessage();
}
return $fileStatements;
}
private function checkExpressionOrAssign($methodStatement)
{
if(is_object($methodStatement)) {
// Check if the sql query is marked as safe in the comments
if($this->checkForSafeComments($methodStatement)) {
return false;
}
$methodName = null;
if ($methodStatement->getType() == 'Expr_MethodCall' && is_string($methodStatement->name)) {
$methodName = $methodStatement->name;
$objectToBeInvestigated = $methodStatement;
} elseif($methodStatement->getType() == 'Expr_Assign' && property_exists($methodStatement->expr, 'name') && is_string($methodStatement->expr->name)) {
$methodName = $methodStatement->expr->name;
$objectToBeInvestigated = $methodStatement->expr;
}
if(in_array(strtolower($methodName), $this->dangerousFunctions)) {
if(!empty($objectToBeInvestigated->args[0])) {
$this->checkTheArgument($methodStatement, $objectToBeInvestigated);
}
}
}
}
private function mainCycle($classStatement)
{
if(is_object($classStatement)) {
if(property_exists($classStatement, 'stmts') && is_array($classStatement->stmts)) {
foreach ($classStatement->stmts as $methodStatement) {
if($methodStatement->getType() != 'Expr_MethodCall'
&& $methodStatement->getType() != 'Expr_Assign') {
$this->checkNonAssignAndMethodCallStatements($methodStatement);
// The ternary operator
}elseif($methodStatement->getType() == 'Expr_Assign'
&& $methodStatement->expr->getType() == 'Expr_Ternary') {
$this->checkTernaryOperator($methodStatement);
}
else {
$this->checkExpressionOrAssign($methodStatement);
}
}
}
else
{
$this->checkExpressionOrAssign($classStatement);
}
}
}
private function investigateVariable($methodStatement, $argumentName)
{
$variable = $this->findVariableByName($this->methodStatements, $argumentName, $methodStatement->getLine());
// If we can't find the variable definition in the current method then flag this for manual review
if (!$variable) {
$this->result[] = $methodStatement->getLine();
} //This is needed for constructions such as newSQL = oldSQL = "Vulnerable Query", and then newSQL is used as the first argument
elseif (property_exists($variable, 'expr') && property_exists($variable->expr, 'expr')) {
$this->checkForDoubleAssignment($methodStatement, $variable);
} // this is the Param() binding
elseif ($variable->expr->getType() == 'Expr_BinaryOp_Concat') {
$variable = $variable->expr;
$this->checkConcatMethod($methodStatement, $variable);
} // the string is not constant
else {
$this->checkForRegularString($methodStatement, $variable);
}
}
private function checkTheArgument($methodStatement, $objectToBeInvestigated)
{
//the name and type of the first argument
$argumentType = $objectToBeInvestigated->args[0]->value->getType();
if ($argumentType == 'Expr_BinaryOp_Concat') {
$objectToBeInvestigated = $objectToBeInvestigated->args[0]->value;
$this->checkConcatMethod($methodStatement, $objectToBeInvestigated);
}
if ($argumentType == 'Scalar_Encapsed') {
$this->result[] = $methodStatement->getLine();
}
if ($argumentType == 'Expr_Variable') {
$argumentName = $objectToBeInvestigated->args[0]->value->name;
$this->investigateVariable($methodStatement, $argumentName);
}
}
private function checkTheIfStatement($methodStatement)
{
if ($methodStatement->else) {
$this->mainCycle($methodStatement->else);
}
if ($methodStatement->elseifs) {
$this->mainCycle($methodStatement->elseifs[0]);
}
if (property_exists($methodStatement->cond, 'right')) {
$this->checkExpressionOrAssign($methodStatement->cond->right);
}
if (property_exists($methodStatement->cond, 'left')) {
$this->checkExpressionOrAssign($methodStatement->cond->left);
}
if (property_exists($methodStatement->cond, 'left') && $methodStatement->cond->left->getType() == 'Expr_FuncCall') {
if ($methodStatement->cond->left->args) {
$this->checkExpressionOrAssign($methodStatement->cond->left->args[0]->value);
}
}
}
private function collectAllTheStatements($methodStatement)
{
$statements = array();
if (!empty($methodStatement->stmts)) {
$statements[] = $methodStatement->stmts;
}
if (!empty($methodStatement->cases)) {
$statements[] = $methodStatement->cases;
}
if (!empty($methodStatement->else)) {
$statements[] = $methodStatement->else->stmts;
}
if (!empty($methodStatement->elseifs[0])) {
$statements[] = $methodStatement->elseifs[0]->stmts;
}
if (isset($methodStatement->elseifs[0])) {
$statements[] = $methodStatement->elseifs[0]->stmts;
}
return $statements;
}
private function checkForSafeComments($methodStatement)
{
if (is_array($methodStatement->getAttribute('comments'))) {
foreach ($methodStatement->getAttribute('comments') as $comment) {
$reflector = new \ReflectionClass($comment);
$classProperty = $reflector->getProperty('text');
$classProperty->setAccessible(true);
$commentText = $classProperty->getValue($comment);
if (strpos(strtolower($commentText), 'safesql') !== false) {
return true;
}
}
}
}
private function checkConcatMethod($methodStatement, $objectToBeInvestigated)
{
if (
// this is a call to the Param() method which is safe
(property_exists($objectToBeInvestigated->left, 'right') && $objectToBeInvestigated->left->right->getType() == 'Expr_ArrayDimFetch')
|| ($objectToBeInvestigated->right->getType() != 'Scalar_String' && $objectToBeInvestigated->right->getType() != 'Expr_Cast_Int' && $objectToBeInvestigated->right->getType() != 'Expr_ClassConstFetch')
) {
$this->result[] = $methodStatement->getLine();
}
$this->checkIfWeAreInterpolatingWithMethodOtherThanParam($methodStatement, $objectToBeInvestigated);
$this->checkIfTheInterpolatedVariableIsDangerous($methodStatement, $objectToBeInvestigated);
$this->checkIfWeAreInterpolatingWithADangerousMethod($methodStatement, $objectToBeInvestigated);
}
private function checkForDoubleAssignment($methodStatement, $variable)
{
if ($variable->expr->getType() != 'Scalar_String' && $variable->expr->expr->getType() != 'Scalar_String') {
$this->result[] = $methodStatement->getLine();
}
}
private function checkForRegularString($methodStatement, $variable)
{
if ($variable->expr->getType() != 'Scalar_String') {
$this->result[] = $methodStatement->getLine();
}
}
private function checkSwitchStatement($methodStatement)
{
foreach ($methodStatement->cases as $switchCase) {
$this->mainCycle($switchCase);
}
}
private function checkTernaryOperator($methodStatement)
{
$this->checkExpressionOrAssign($methodStatement->expr->if);
$this->checkExpressionOrAssign($methodStatement->expr->else);
}
private function checkNonAssignAndMethodCallStatements($methodStatement)
{
// Drill deep down if there are more statements
if (property_exists($methodStatement, 'stmts')) {
$this->mainCycle($methodStatement);
}
if ($methodStatement->getType() == 'Stmt_If') {
$this->checkTheIfStatement($methodStatement);
}
// The switch statements
if ($methodStatement->getType() == 'Stmt_Switch') {
$this->checkSwitchStatement($methodStatement);
}
// The sql method is in the returned directly: e.g. return GetAll(...);
if (property_exists($methodStatement, 'expr') && $methodStatement->getType() == 'Stmt_Return') {
if(!$this->checkForSafeComments($methodStatement)) {
$this->checkExpressionOrAssign($methodStatement->expr);
}
}
}
// this is needed so the CI can pick the failure and fail the job
protected function exitProperly()
{
if ($this->hasPotentialSQLInjection) {
exit(-1);
} else {
exit(0);
}
}
private function checkIfWeAreInterpolatingWithADangerousMethod($methodStatement, $objectToBeInvestigated)
{
if (property_exists($objectToBeInvestigated->left, 'left') &&
property_exists($objectToBeInvestigated->left->left, 'right') &&
$objectToBeInvestigated->left->left->right->getType() == 'Expr_FuncCall'
) {
if ($objectToBeInvestigated->left->left->right->name->parts[0] != 'date') {
$this->result[] = $methodStatement->getLine();
}
}
}
private function checkIfTheInterpolatedVariableIsDangerous($methodStatement, $objectToBeInvestigated)
{
if (property_exists($objectToBeInvestigated->left, 'right')
&& $objectToBeInvestigated->left->right->getType() == 'Expr_Variable'
) {
$this->investigateVariable($methodStatement, $objectToBeInvestigated->left->right->name);
}
}
private function checkIfWeAreInterpolatingWithMethodOtherThanParam($methodStatement, $objectToBeInvestigated)
{
if(property_exists($objectToBeInvestigated->left, 'right')) {
if($objectToBeInvestigated->left->right->getType() == 'Expr_MethodCall' && $objectToBeInvestigated->left->right->name != 'Param') {
$this->result[] = $methodStatement->getLine();
}
if($objectToBeInvestigated->left->right->getType() == 'Expr_FuncCall') {
$this->result[] = $methodStatement->getLine();
}
}
}
}