About 15,800 results
Open links in new tab
  1. Find all calls of a given function with Ghidra

    Dec 6, 2024 · I would like to know how to find all the explicit calls to a given function with Ghidra. For example, I am looking at the assembly of a function and I would like to list all the calls referring to ...

  2. Ghidra find xref function chain - Reverse Engineering Stack Exchange

    Dec 2, 2024 · Is there a Ghidra feature that lets me see the "chain" of xrefs? Like, potential call stacks? Or the chain of function xref? This feels like something that should be doable given what …

  3. How to get cross-references to a struct type in IDA by IDAPython and ...

    I'm writing an IDA plugin using idapython in order to add comments (located in database) to variables of struct types. In order to do this, firstly, i need to get the list of cross-references to a ...

  4. Force IDA to reanalyze a function recursively?

    Apr 12, 2021 · How can i force IDA to re analyze a function recursively (meaning including every function inside of it and so on) and recognize all the functions inside of all the functions? because …

  5. IDAPython: How to get function argument values

    Mar 4, 2018 · I always write ad-hoc code to get the values passed to function calls, like finding the XRef to a function and then tracking back disassembly to find some specific MOV or PUSH instruction. For …

  6. Correct way to understand local_ in ghidra disassembly

    Dec 6, 2020 · One thing you can do that may make this more obvious is to turn off the setting that causes Ghidra to use the local_ variables directly in the assembly. You can do this via Edit -> Tool …

  7. IDA is not recognizing cross references - Reverse Engineering Stack ...

    Dec 20, 2015 · Edit -> Global -> Cross-references -> Cross reference depth. Increase as applicable. From the documentation: This value "how many bytes of an object to look at to collect cross …

  8. Find reference to string in radare2

    Dec 19, 2015 · answered axt seems to take only an address as input not a string i was able to coax axt to print a xref with axt str.hello_world_n in the hello world.exe but many other exes fail to find the …

  9. How can I get xrefs to class member variables in IDA?

    Nov 11, 2020 · The other answer is wrong; it's totally possible (assuming the IDB already has a type for the structure in question, and that type has been applied to arguments/variables in Hex-Rays). In IDA …

  10. Access a XREFs with frida - Reverse Engineering Stack Exchange

    Nov 24, 2022 · For resolving XREF you first have to analyze the whole binary, so this is more a job for IDA Pro or Ghidra. You can first analyze the binary offline in IDA/Ghidra, extract the xref and send …