mirror of
https://github.com/github/codeql.git
synced 2026-05-19 13:48:30 +02:00
Removes the use of points-to for accessing various built-ins from three of the queries. In order for this to work I had to extend the lists of known built-ins slightly.
20 lines
482 B
Plaintext
20 lines
482 B
Plaintext
/**
|
|
* @name 'apply' function used
|
|
* @description The builtin function 'apply' is obsolete and should not be used.
|
|
* @kind problem
|
|
* @tags maintainability
|
|
* @problem.severity warning
|
|
* @sub-severity high
|
|
* @precision very-high
|
|
* @id py/use-of-apply
|
|
*/
|
|
|
|
import python
|
|
private import semmle.python.ApiGraphs
|
|
|
|
from CallNode call
|
|
where
|
|
major_version() = 2 and
|
|
call = API::builtin("apply").getACall().asCfgNode()
|
|
select call, "Call to the obsolete builtin function 'apply'."
|