32 |
32 |
33 |
33 |
34 def checkExecUsed(reportError, context, config): |
34 def checkExecUsed(reportError, context, config): |
35 """ |
35 """ |
36 Function to check for the use of 'exec'. |
36 Function to check for the use of 'exec'. |
37 |
37 |
38 @param reportError function to be used to report errors |
38 @param reportError function to be used to report errors |
39 @type func |
39 @type func |
40 @param context security context object |
40 @param context security context object |
41 @type SecurityContext |
41 @type SecurityContext |
42 @param config dictionary with configuration data |
42 @param config dictionary with configuration data |
43 @type dict |
43 @type dict |
44 """ |
44 """ |
45 if context.callFunctionNameQual == 'exec': |
45 if context.callFunctionNameQual == "exec": |
46 reportError( |
46 reportError(context.node.lineno - 1, context.node.col_offset, "S102", "M", "H") |
47 context.node.lineno - 1, |
|
48 context.node.col_offset, |
|
49 "S102", |
|
50 "M", |
|
51 "H" |
|
52 ) |
|