|
-
Mar 7th, 2007, 10:06 AM
#1
Thread Starter
Lively Member
Monitor Memory Injection/Lock Mem Space
Hey All, hope you can shed some light on this for me, i have a few questions...
1. Is there an event thrown when one process injects a value into the memory space of another process?
2. Is there a way(in c# or c, c+) to "lock" the memory space of a particular process, or lock in a fashion so that only approved processes may access its memory space?
Thanks in advance,
dave
-
Mar 8th, 2007, 08:27 AM
#2
Re: Monitor Memory Injection/Lock Mem Space
The purpose of a managed language is that you don't need to work with these things. You might remember malloc() from C, which you don't need to use now. Instead, you simply declare and instantiate your object and the allocation is done for you.
Is there something specific you are trying to do with regards to point #2?
-
Mar 8th, 2007, 10:02 AM
#3
Thread Starter
Lively Member
Re: Monitor Memory Injection/Lock Mem Space
what i want to do is monitor certain address to determine if someone/something is injecting values, i was wondering if there was a way to determine which process was doing the injecting, or if the injection could be blocked.
would there be a way to monitor the API call that would be made inorder to make this injection?
-
Mar 8th, 2007, 10:08 AM
#4
Thread Starter
Lively Member
Re: Monitor Memory Injection/Lock Mem Space
this link is a good example of what i will be trying to catch
-
Mar 8th, 2007, 02:54 PM
#5
Re: Monitor Memory Injection/Lock Mem Space
Tell you what, drop C#. Head over to the C/C++ forum. These are languages better suited to your needs and are 'lower level' than C# and will therefore be able to give you more access to the memory spaces.
-
Mar 10th, 2007, 07:42 AM
#6
Thread Starter
Lively Member
Re: Monitor Memory Injection/Lock Mem Space
 Originally Posted by mendhak
Tell you what, drop C#. Head over to the C/C++ forum. These are languages better suited to your needs and are 'lower level' than C# and will therefore be able to give you more access to the memory spaces.
yeah thats what i figured i'd have to do, i was praying there was a way to do this
-
Mar 12th, 2007, 07:54 AM
#7
Re: Monitor Memory Injection/Lock Mem Space
Have you tried a fixed() block? Depends what you want to do really.
I don't live here any more.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|