標籤:android style class c java tar
常用android的smali注入代碼
1.增加log資訊
const-string v3,"SN"
invoke-static {v3,v0}, Landroid/util/Log;->v(Ljava/lang/String;Ljava/lang/String;)I
2.彈出訊息框
new AlertDialog.Builder(self)
.setTitle("普通對話方塊")
.setMessage("你好,Android!")
.show();
new-instance v1,Landroid/app/AlertDialog$Builder;
invoke-direct {v1,p0}, Landroid/app/AlertDialog$Builder;-><init>(Landroid/content/Context;)V
.line 29
.local v1,builder:Landroid/app/AlertDialog$Builder;
const-string v2,"\u666e\u901a\u5bf9\u8bdd\u6846"
invoke-virtual {v1,v2}, Landroid/app/AlertDialog$Builder;->setTitle(Ljava/lang/CharSequence;)Landroid/app/AlertDialog$Builder;
.line 31
const-string v2,"\u4f60\u597d\uff0cAndroid!"
invoke-virtual {v1,v2},Landroid/app/AlertDialog$Builder;->setMessage(Ljava/lang/CharSequence;)Landroid/app/AlertDialog$Builder;
.line 52
invoke-virtual {v1},Landroid/app/AlertDialog$Builder;->create()Landroid/app/AlertDialog;
move-result-object v2
invoke-virtual {v2},Landroid/app/AlertDialog;->show()V
將上述smali代碼插入MainActivity.smali中的create函數的return-void語句前面
.line指令不影響結果
3.卡住程式運行
方法一:
try{
Thread.sleep(60*1000);
}catch(InterruptedException e){
e.printStackTrace();
}
.line 69
const-wide/32 v1,0xeff0
:try_start_0
#v1=(LongLo);v2=(LongHi);
invoke-static {v1,v2},Ljava/lang/Thread;->Sleep(J)V
:try_end_0
.catch Ljava/lang/InterruptedException; {:try_start_0 .. try_end_0} :catch_0
.line 87
:goto_0
#v0=(Conflicted);
#此後面是try後的內容
return-void
.line 70
:catch_0
#v0=(Uninit);
move-exception v0
.line 72
.local v0, e:Ljava/lang/InterruptedException;
#v0=(Reference);
invoke-virtual {v0}, Ljava/lang/InterruptedException;->printStackTrace()V
goto :goto_0
方法二:
android.os.SystemClock.sleep(60*1000);
const-wide/32 v0, 0xea60
invoke-static {v0, v1}, Landroid/os/SystemClock;->sleep(J)V
4.棧跟蹤(調用關係)
#new Exception("print trace").printStackTrace();
new-instance v0,Ljava/lang/Exception;
const-string v1,"print trace"
invoke-direct {v0,v1}, Ljava/lang/Exception;-><init>(Ljava/lang/String;)V
invoke-virtual {v0}, Ljava/lang/Exception;->printStackTrace()V
棧跟蹤資訊記錄了程式從啟動到printStackTrace()被執行期間所有被調用過的方法。從下往上查看棧跟蹤資訊,
找到第一條以com.android.stackTrace開頭的資訊。
棧跟蹤資訊是WARN層級,而且Tag名稱被系統命令為System.err. 命令列:adb logcat -s System.err:V *:W
5.Method Profiling(調用關係)
#android.os.Debug.startMethodTracing("123"); "123"為檔案名稱
#a();
#android.os.Debug.stopMethodTracing();
Android-Manifest.xml添加SD卡寫入許可權
<user-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
#android.os.Debug.startMethodTracing("123");
const-string v0, "123"
invoke-static {v0}, Landroid/os/Debug;->startMethodTracing(Ljava/lang/String;) V
#android.os.Debug.stopMethodTracing();
invoke-static {}, Landroid/os/Debug;->stopMethodTracing() V
SD卡的根目錄產生123.trace
分析命令:
adb pull /mnt/sdcard/123.trace
traceview 123.trace