1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
| Java.perform(function () {
function showStacks() { console.log( Java.use("android.util.Log") .getStackTraceString( Java.use("java.lang.Throwable").$new() ) ); }
var ByteString = Java.use("com.android.okhttp.okio.ByteString"); function toBase64(tag, data) { console.log(tag + " Base64: " + ByteString.of(data).base64()); } function toHex(tag, data) { console.log(tag + " Hex: " + ByteString.of(data).hex()); } function toUtf8(tag, data) { console.log(tag + " Utf8: " + ByteString.of(data).utf8()); }
var messageDigest = Java.use("java.security.MessageDigest"); messageDigest.update.overload('byte').implementation = function (data) { console.log("MessageDigest.update('byte') is called!"); showStacks(); return this.update(data); } messageDigest.update.overload('java.nio.ByteBuffer').implementation = function (data) { console.log("MessageDigest.update('java.nio.ByteBuffer') is called!"); showStacks(); return this.update(data); } messageDigest.update.overload('[B').implementation = function (data) { console.log("MessageDigest.update('[B') is called!"); showStacks(); var algorithm = this.getAlgorithm(); var tag = algorithm + " update data"; toUtf8(tag, data); toHex(tag, data); toBase64(tag, data); console.log("======================================================="); return this.update(data); } messageDigest.update.overload('[B', 'int', 'int').implementation = function (data, start, length) { console.log("MessageDigest.update('[B', 'int', 'int') is called!"); showStacks(); var algorithm = this.getAlgorithm(); var tag = algorithm + " update data"; toUtf8(tag, data); toHex(tag, data); toBase64(tag, data); console.log("=======================================================", start, length); return this.update(data, start, length); }
messageDigest.digest.overload().implementation = function () { console.log("MessageDigest.digest() is called!"); showStacks(); var result = this.digest(); var algorithm = this.getAlgorithm(); var tag = algorithm + " digest result"; toUtf8(tag, result); toHex(tag, result); toBase64(tag, result); console.log("======================================================="); return result; } messageDigest.digest.overload('[B').implementation = function (data) { console.log("MessageDigest.digest('[B') is called!"); showStacks(); var algorithm = this.getAlgorithm(); var tag = algorithm + " digest data"; toUtf8(tag, data); toHex(tag, data); toBase64(tag, data); var result = this.digest(data); var tags = algorithm + " digest result"; toUtf8(tag, result); toHex(tags, result); toBase64(tags, result); console.log("======================================================="); return result; } messageDigest.digest.overload('[B', 'int', 'int').implementation = function (data, start, length) { console.log("MessageDigest.digest('[B', 'int', 'int') is called!"); showStacks(); var algorithm = this.getAlgorithm(); var tag = algorithm + " digest data"; toUtf8(tag, data); toHex(tag, data); toBase64(tag, data); var result = this.digest(data, start, length); var tags = algorithm + " digest result"; toHex(tags, result); toBase64(tags, result); console.log("=======================================================", start, length); return result; }
var mac = Java.use("javax.crypto.Mac"); mac.init.overload('java.security.Key', 'java.security.spec.AlgorithmParameterSpec').implementation = function (key, AlgorithmParameterSpec) { console.log("Mac.init('java.security.Key', 'java.security.spec.AlgorithmParameterSpec') is called!"); return this.init(key, AlgorithmParameterSpec); } mac.init.overload('java.security.Key').implementation = function (key) { console.log("Mac.init('java.security.Key') is called!"); var algorithm = this.getAlgorithm(); var tag = algorithm + " init Key"; var keyBytes = key.getEncoded(); toUtf8(tag, keyBytes); toHex(tag, keyBytes); toBase64(tag, keyBytes); console.log("======================================================="); return this.init(key); } mac.update.overload('byte').implementation = function (data) { console.log("Mac.update('byte') is called!"); return this.update(data); } mac.update.overload('java.nio.ByteBuffer').implementation = function (data) { console.log("Mac.update('java.nio.ByteBuffer') is called!"); return this.update(data); } mac.update.overload('[B').implementation = function (data) { console.log("Mac.update('[B') is called!"); var algorithm = this.getAlgorithm(); var tag = algorithm + " update data"; toUtf8(tag, data); toHex(tag, data); toBase64(tag, data); console.log("======================================================="); return this.update(data); } mac.update.overload('[B', 'int', 'int').implementation = function (data, start, length) { console.log("Mac.update('[B', 'int', 'int') is called!"); var algorithm = this.getAlgorithm(); var tag = algorithm + " update data"; toUtf8(tag, data); toHex(tag, data); toBase64(tag, data); console.log("=======================================================", start, length); return this.update(data, start, length); } mac.doFinal.overload().implementation = function () { console.log("Mac.doFinal() is called!"); var result = this.doFinal(); var algorithm = this.getAlgorithm(); var tag = algorithm + " doFinal result"; toUtf8(tag, result); toHex(tag, result); toBase64(tag, result); console.log("======================================================="); return result; } mac.doFinal.overload('[B').implementation = function (data) { console.log("Mac.doFinal.overload('[B') is called!"); return this.doFinal(data); } mac.doFinal.overload('[B', 'int').implementation = function (output, outOffset) { console.log("Mac.doFinal.overload('[B', 'int') is called!"); return this.doFinal(output, outOffset); } });
|