In fuzzing, an important part is to monitor the targeted (attacked) process for any crash and keep recording crash details. Sulley is a fuzzing framework mainly intended to work in Linux and Windows and written Python. I am planning to port it to Android using Kivy as example, however I am wondering if the process monitor will work properly on Android as I except process monitoring on Android has different approach? Any advice on this?
Sulley uses pydbg, a "pure-python win32 debugger interface." So, no, it will probably not work.
Sulley's process_monitor_unix.py seems to just run and monitor the process.