The CFG recovery functionality uses symbol information to correctly generate the control flow graph of a specific function, however, this information is not automatically extracted from the binary being processed (it has to be done manually). The goal is to extract symbol information automatically once a binary is loaded so it can be used by the different analysis module such as the basicblock (which implement the CFG recovery functionality).
The CFG recovery functionality uses symbol information to correctly generate the control flow graph of a specific function, however, this information is not automatically extracted from the binary being processed (it has to be done manually). The goal is to extract symbol information automatically once a binary is loaded so it can be used by the different analysis module such as the
basicblock(which implement the CFG recovery functionality).