Skip to content

Instantly share code, notes, and snippets.

import frida # py -3 -m pip install frida
import sys
import struct
if __name__ == '__main__':
device = frida.get_local_device()
proc = [p for p in device.enumerate_processes() if p.name == 'MonsterHunterRise.exe']
if len(proc) == 0:
print('Rise not running!')
sys.exit(1)