Posts by Victor Costa • 1 point
4 posts
-
0
votes1
answer154
viewsQ: Do you need to allocate memory when you have struct inside another struct?
I want to save and recover data from a struct, but this struct has other struct inside it, I don’t know if I did it correctly, I don’t know if I should use typedef or just struct. I don’t know if I…
-
0
votes1
answer32
viewsA: How to recover the address of the function that loaded my dll or the PE of the thread where it was loaded
I found the solution Getmoduleinformation returns an object with the information(PE, Baseddr, Size) of a module, so just calculate the difference between Address and Addressbase; #include "wFunc.h"…
canswered Victor Costa 1 -
-2
votes1
answer32
viewsQ: How to recover the address of the function that loaded my dll or the PE of the thread where it was loaded
The thread that loads my DLL uses Loadlibrarya , I would like to recover the address (01145EA7) from the instruction that loads it or the PE (01C5B514) from the thread that loads it. load dll assm:…
casked Victor Costa 1 -
0
votes0
answers57
viewsQ: How to recover mouse pointer position on android
I have an Accessibility service that captures events touch the screen, and I have a USB mouse connected to the Android device, I would like to know how I can recover the mouse position on the…