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

14 lines (13 loc) 612 B
/*********************************************************************** * Name: get ANDROID_ID * OS: Android * Author: iddoeldor * Source: https://github.com/iddoeldor/frida-snippets#get-android-id * Info: The ANDROID_ID is unique in each application ***********************************************************************/ Java.perform(function () { function getContext() { return Java.use('android.app.ActivityThread').currentApplication().getApplicationContext().getContentResolver(); } send('[-]' + Java.use('android.provider.Settings$Secure').getString(getContext(), 'android_id')); });