UNPKG

rms-runtime-mobile-security

Version:

Runtime Mobile Security (RMS), powered by FRIDA, is a powerful web interface that helps you to manipulate Android and iOS Apps at Runtime

18 lines (15 loc) 598 B
/************************************************************************ * Name: Dump NSUserDefaults * OS: iOS * Author: @noobpk * Source: https://github.com/noobpk/frida-ios-hook *************************************************************************/ send("[*] Started: Read NSUserDefaults PLIST file"); try { var NSUserDefaults = ObjC.classes.NSUserDefaults; var NSDictionary = NSUserDefaults.alloc().init().dictionaryRepresentation(); send(NSDictionary.toString()) } catch (err) { send("[!] Exception: " + err.message); } send("[*] Completed: Read NSUserDefaults PLIST file");