'use strict'; const uuid = require('uuid'); rpc.exports = { init() { Interceptor.attach(Module.findExportByName('libsystem_kernel.dylib', 'open'), { onEnter(args) { send(['open', Memory.readUtf8String(args[0])]); } }); return uuid.v4(); } };