Function: find_demangled
Returns the memory address of a demangled symbol. The search is fuzzy, but case-sensitive.
This function is safe
Parameters
module:- the module to search through.Modulename: str- the name of the symbol to search for. case-sensitive fuzzy search. this means your search term matches by case-exactly, however it is a contains search, e.g. searching forFooBarinvoid symbol FooBarBaz()matches, butfoobarwon’t match.
Exceptions
If module memory is invalid, or cannot find any exports.
Return Value
Returns an int representing the memory address of the symbol. If not found, returns None.