Skip to content

progrium/mnotify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mnotify

Tool for getting change notifications on memory addresses. Proof of concept.

To compile mnotify, install frida-core.h and libfrida-core.a as described here.

A library wraps the mnotify executable, which can be used like this:

package main

import (
	"log"
	"time"

	"github.com/progrium/mnotify"
)

func main() {
	i := 0

	mnotify.Observe(&i, func() {
		log.Println(i)
	})
	defer mnotify.Close()

	for {
		i++
		time.Sleep(2 * time.Second)
	}
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages