About 15,300 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 …

  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 …

  3. Determine if there is a cross reference using idapython given a ...

    I want to end up in something like the following using idapython to determine if given a specific address there is an xref (without caring where the XREF comes from)

  4. How to find function calls in IDA Pro?

    Feb 28, 2022 · You can use the "xrefs" in IDA to visualize which function is calling the function you are interested in. Put your cursor on the function you want to trace, use the shortcut "x" (or …

  5. 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 …

  6. ARM (STM32) memory mapping on Ghidra: offset only part of the …

    Nov 22, 2022 · 00000014 25 2c 03 08 addr DAT_08032c25 UsageFault XREF[1]: Entry Point (*) 00000018 25 2c 03 08 addr DAT_08032c25 Notice how all the pointers point to …

  7. How can I make IDA see a string reference?

    At 0xC02860F0 hit + and select unicode to define it as a unicode string. IDA should recognize the reference after you do so.

  8. How to get cross-references to a struct type in IDA by IDAPython …

    Stack Variable References The xrefs you are showing are xrefs from stack variables. As you mentioned, when trying to get the xrefs to the struct, you get two types of results: In IDA the …

  9. 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? …

  10. idapython - Get Xrefs to a stack variable

    There is one function that does this: build_stkvar_xrefs, defined in C++ but exposed via the Python SWIG bindings. IDA builds stack xrefs dynamically when you ask for it. In order to use …