Instructions.without_callee_function_name()

Adds a filter to get instructions that don't call a function with the given name.

without_callee_function_name(name: str, sensitivity: bool = True) → Instructions

Query Example

from glider import *

def query():
  return (
    Instructions()
    .without_callee_function_name("keccka256")
    .exec(2,1)
  )

Output Example

Last updated