timeit.Timer objects use

Common sample programs Time consuming The test method uses the timeit.Timer object, defines some preparation codes by setting the setup, sets the code that needs to test the running time through the stmt, and tests the performance through the timeit method (you can enter the number of runs and calculate the average) In the actual […]

Frida modifies Android device information, imsi, imei, mac, utdid and other device information generation algorithms

Don’t say anything, just upload the code, many articles are deleted for no reason, I have to say that the power of capital is really powerful, the following code is only for communication and learning, it is all generated by chatgpt, if there is any infringement, please contact gpt! function main() {<!– –> Java. perform(function() […]

Android11 authorized application to obtain IMEI number and ICCID

Obtaining device information such as IMEI number on Android 11 requires android.permission.READ_PRIVILEGED_PHONE_STATE permission, and this permission is only granted to system-level applications. In the project, if the targetSdkVersion value is less than 29, the result is null, and if it is greater than 28, a SecurityException error will be reported. 1. Get ICCID public String […]