| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- const mcc = '{{mcc}}'
- const mnc = '{{mnc}}'
- const simOperator = '{{simOperator}}'
- const networkOperator = '{{networkOperator}}'
- const simSerialNumber = '{{simSerialNumber}}'
- const iccId = '{{iccId}}'
- const number = '{{number}}'
- const imei = '{{imei}}'
- const imsi = '{{imsi}}'
- const countryIso = '{{countryIso}}'
- const subId = '{{subId}}'
- class Log {
- static TAG = '[SMS]'
- static Debug = true
- static format(...msg) {
- let m = []
- for (let i = 0; i < msg.length; i++) {
- if (typeof msg[i] === 'object') {
- m.push(JSON.stringify(msg[i]))
- } else {
- m.push(msg[i])
- }
- }
- m = m.join(' ')
- return m
- }
- static i(...msg) {
- if (!this.Debug) return
- console.log(`\x1b[30m${this.TAG} ${this.format(...msg)}\x1b[0m`)
- }
- static w(...msg) {
- console.log(`\x1b[33m${this.TAG} ${this.format(...msg)}\x1b[0m`)
- }
- static e(...msg) {
- console.log(`\x1b[31m${this.TAG} ${this.format(...msg)}\x1b[0m`)
- }
- static s(...msg) {
- console.log(`\x1b[32m${this.TAG} ${this.format(...msg)}\x1b[0m`)
- }
- }
- function trace(tag) {
- Log.e((tag || '') + Java.use('android.util.Log').getStackTraceString(Java.use('java.lang.Throwable').$new()))
- }
- setImmediate(() => {
- Java.perform(function () {
- const biyg = Java.use('biyg')
- biyg.al.overload('int').implementation = function (a) {
- const res = this.al(a)
- Log.w(`biyg.al(${a}) => ${res}`)
- if ('Config document received' === res) {
- trace('biyg.al')
- }
- return this.al(a)
- }
- })
- })
|