You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To be able to support #94 we first need to achieve:
Call Graph building across source files
Call Graph path query
Vulnerable function symbols in vulnerability database
This paves the path for [1]. We need to extend vet's code analysis framework to support call target resolution within a single source file. For example:
import x from y
v1 = v()
v2 = v1
v2()
Our analysis engine should be able to resolve v2 as x. Actual approach can be through assignment graph, PDG or other methodology.
The text was updated successfully, but these errors were encountered:
To be able to support #94 we first need to achieve:
This paves the path for [1]. We need to extend vet's code analysis framework to support call target resolution within a single source file. For example:
Our analysis engine should be able to resolve v2 as
x
. Actual approach can be through assignment graph, PDG or other methodology.The text was updated successfully, but these errors were encountered: