Functions.extended_caller_functions()
Returns a Functions object representing the functions through which the functions from current Functions object could be called.
extended_caller_functions() →
Functions
The function will retrieve extended/inter-procedural functions, meaning it works recursively. It returns the Functions object representing all the functions that ultimately call the function in question.
Query Example
from glider import *
def query():
funcs = Functions().with_name("withdrawFromPair").extended_caller_functions().exec(2)
return funcs
Output Example

Last updated