Get Android Security Provider MSTG-NETWORK-6
4 views
955f48b6...
Description
Print in console the security provider used in the application (MSTG-NETWORK-6)
How to Use
Download the script and run it with Frida CLI:
Download ScriptThen run with Frida:
frida -U -f YOUR_PACKAGE_NAME -l get-android-security-provider-mstg-network-6.js
Replace YOUR_PACKAGE_NAME with the target app's package name.
Source Code
JavaScript
Java.perform(function () {
var Sec = Java.use("java.security.Security");
var SecInstance = Sec.$new();
console.log(SecInstance.getProviders());
});
Comments