1
+ Java . perform ( function ( ) {
2
+ // Get a class handler of the KeyStore class
3
+ // https://docs.oracle.com/javase/9/docs/api/java/security/KeyStore.html
4
+ const keyStore = Java . use ( 'java.security.KeyStore' ) ;
5
+ // Overload the method "getKey" to capture the input parameters
6
+ keyStore . getKey . overload ( 'java.lang.String' , '[C' ) . implementation = function ( alias , pass ) {
7
+ // Log the successful hook to fridas console
8
+ console . log ( '[+] new getKey operation found!' ) ;
9
+ console . log ( 'Password: ' + pass . join ( "" ) ) ;
10
+ // Call the original function to keep the app working
11
+ return this . getKey ( alias , pass ) ;
12
+ }
13
+ keyStore . getInstance . overload ( 'java.lang.String' ) . implementation = function ( s ) {
14
+ // Log the successful hook to fridas console
15
+ console . log ( '[+] new keyStore.getInstance operation found!' ) ;
16
+ console . log ( 'Content: ' + s ) ;
17
+ // Call the original function to keep the app working
18
+ return this . getInstance ( s ) ;
19
+ }
20
+ keyStore . getInstance . overload ( 'java.lang.String' , 'java.security.Provider' ) . implementation = function ( s , p ) {
21
+ // Log the successful hook to fridas console
22
+ console . log ( '[+] new keyStore.getInstance operation found!' ) ;
23
+ console . log ( 'Content: ' + s ) ;
24
+ // Call the original function to keep the app working
25
+ return this . getInstance ( s , p ) ;
26
+ }
27
+ keyStore . getInstance . overload ( 'java.lang.String' , 'java.lang.String' ) . implementation = function ( s , s2 ) {
28
+ // Log the successful hook to fridas console
29
+ console . log ( '[+] new keyStore.getInstance operation found!' ) ;
30
+ console . log ( 'Content: ' + s ) ;
31
+ console . log ( 'Content2: ' + s2 ) ;
32
+ // Call the original function to keep the app working
33
+ return this . getInstance ( s , s2 ) ;
34
+ }
35
+
36
+ keyStore . $init . overload ( 'java.security.KeyStoreSpi' , 'java.security.Provider' , 'java.lang.String' ) . implementation = function ( keyStoreSpi , securityProvider , s ) {
37
+ // Log the successful hook to fridas console
38
+ console . log ( '[+] new keyStore.$init operation found!' ) ;
39
+ // Call the original function to keep the app working
40
+ return this . $init ( keyStoreSpi , securityProvider , s ) ;
41
+ }
42
+
43
+ keyStore . store . overload ( 'java.io.OutputStream' , '[C' ) . implementation = function ( outputStream , pass ) {
44
+ // Log the successful hook to fridas console
45
+ console . log ( '[+] new keyStore.store operation found!' ) ;
46
+ console . log ( 'Password: ' + pass . join ( "" ) ) ;
47
+ // Call the original function to keep the app working
48
+ return this . store ( outputStream , pass ) ;
49
+ }
50
+ keyStore . load . overload ( 'java.io.InputStream' , '[C' ) . implementation = function ( inputStream , pass ) {
51
+ // Log the successful hook to fridas console
52
+ console . log ( '[+] new keyStore.load operation found!' ) ;
53
+ if ( pass != null )
54
+ {
55
+ console . log ( 'Password Length: ' + pass . length ( ) ) ;
56
+ console . log ( 'Password: ' + pass . join ( "" ) ) ;
57
+ }
58
+ // Call the original function to keep the app working
59
+ return this . load ( inputStream , pass ) ;
60
+ }
61
+ } ) ;
0 commit comments