Hacking Address of real function ?

  • Thread starter Thread starter ptitleray
  • Start date Start date
  • Views Views 786
  • Replies Replies 1

ptitleray

Well-Known Member
Newcomer
Joined
Dec 17, 2013
Messages
49
Reaction score
85
Trophies
0
XP
239
Country
France
I'm on 4.1.0 firmware and i would like to know how to get the address of certain functions :dry:
I recovered almost all addresses with the help of :
- OSDynLoad_Acquire()
- OSDynLoad_FindExport()
but I can't retrieve the REAL address of :
- FSGetStat()
- MEMAllocFromDefaultHeapEx()
and few others

Can somebody help me ? :P
 
I'm on 4.1.0 firmware and i would like to know how to get the address of certain functions :dry:
I recovered almost all addresses with the help of :
- OSDynLoad_Acquire()
- OSDynLoad_FindExport()
but I can't retrieve the REAL address of :
- FSGetStat()
- MEMAllocFromDefaultHeapEx()
and few others

Can somebody help me ? :P

MEMAllocFromDefaultHeapEx is actually a function pointer. You need to set isData (second arg of FindExport) to 1, and then it will give you the pointer. Dereferencing that pointer gets you the address of the function itself. FSGetStat() may work in a similar way.
 

Site & Scene News

Popular threads in this forum