Results 1 to 7 of 7

Thread: Monitor Memory Injection/Lock Mem Space

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jun 2003
    Posts
    124

    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

  2. #2
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    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?

  3. #3

    Thread Starter
    Lively Member
    Join Date
    Jun 2003
    Posts
    124

    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?

  4. #4

    Thread Starter
    Lively Member
    Join Date
    Jun 2003
    Posts
    124

    Re: Monitor Memory Injection/Lock Mem Space

    this link is a good example of what i will be trying to catch

  5. #5
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    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.

  6. #6

    Thread Starter
    Lively Member
    Join Date
    Jun 2003
    Posts
    124

    Re: Monitor Memory Injection/Lock Mem Space

    Quote 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

  7. #7
    type Woss is new Grumpy; wossname's Avatar
    Join Date
    Aug 2002
    Location
    #!/bin/bash
    Posts
    5,682

    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
  •  



Click Here to Expand Forum to Full Width