This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Android Keystore calls detection script | |
by Maurizio Siddu | |
Run with: | |
frida -U -f [APP_ID] -l keystore_spy.js --no-pause | |
*/ | |
setTimeout(function() { | |
Java.perform(function() { | |
console.log('') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Android Network Security Config bypass script | |
by Maurizio Siddu | |
Run with: | |
frida -U -f [APP_ID] -l frida_netsecconfig_bypass.js --no-pause | |
*/ | |
Java.perform(function(){ | |
console.log(''); | |
console.log('======'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Android ssl certificate pinning bypass script for various methods | |
by Maurizio Siddu | |
Run with: | |
frida -U -f <APP_ID> -l frida_multiple_unpinning.js [--no-pause] | |
*/ | |
setTimeout(function() { | |
Java.perform(function() { | |
console.log(''); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Another universal ssl certificate pinning bypass script for Android | |
by Maurizio Siddu | |
Run with: | |
frida -U -f [APP_ID] -l frida_universal_pinning_bypasser.js --no-pause | |
*/ | |
setTimeout(function() { | |
Java.perform(function() { | |
console.log(''); |