| View previous topic :: View next topic |
| Author |
Message |
pspwill
Joined: 17 Nov 2005 Posts: 51
|
Posted: Tue Aug 11, 2009 1:22 am Post subject: Detect MS Access |
|
|
Does anyone know of any ways i can detect when is being accessed? I have thought that maybe i could hook the sceIoRead/Write functions but am concerned that could get a little messy. Any other ways?
Thanks, Will |
|
| Back to top |
|
 |
Zer01ne
Joined: 08 Sep 2008 Posts: 29
|
Posted: Tue Aug 11, 2009 6:02 am Post subject: |
|
|
| For ? |
|
| Back to top |
|
 |
slasher2661996
Joined: 22 Feb 2009 Posts: 91 Location: Melbourne Australia ZOMG
|
Posted: Tue Aug 11, 2009 7:17 am Post subject: Re: Detect MS Access |
|
|
| pspwill wrote: | Does anyone know of any ways i can detect when is being accessed? I have thought that maybe i could hook the sceIoRead/Write functions but am concerned that could get a little messy. Any other ways?
Thanks, Will |
Hook it, and then make your function like this:
| Code: | int HookedFunction(param 1, param 2)
{
//Your code here
sceIoWrite();
}
|
|
|
| Back to top |
|
 |
pspwill
Joined: 17 Nov 2005 Posts: 51
|
Posted: Tue Aug 11, 2009 7:36 am Post subject: Re: Detect MS Access |
|
|
| slasher2661996 wrote: |
Hook it, and then make your function like this:
| Code: | int HookedFunction(param 1, param 2)
{
//Your code here
sceIoWrite();
}
|
|
I know how to hook the functions I was just wondering if there was a better way to do it. |
|
| Back to top |
|
 |
m0skit0
Joined: 02 Jun 2009 Posts: 226
|
Posted: Tue Aug 11, 2009 7:46 pm Post subject: |
|
|
Well, you can monitor MS I/O addresses, but that would be even messier I think. _________________
| The Incredible Bill Gates wrote: | | The obvious mathematical breakthrough would be development of an easy way to factor large prime numbers. |
|
|
| Back to top |
|
 |
Torch

Joined: 28 May 2008 Posts: 842
|
Posted: Wed Aug 12, 2009 1:36 pm Post subject: |
|
|
| Depends on what programs you want to monitor. You can hook the sceIo* syscalls to monitor usermode access by games/homebrew. Or hook the driver to monitor all access. Check Dax's forum for a driver hook sample; the source of that UMD speed monitoring thing. Can also look at CXMB for driver hook sample. |
|
| Back to top |
|
 |
|