文章分类 - re-compile
摘要:1 @Override 2 public void onClick(View v) { 3 switch (v.getId()) { 4 case R.id.stop: //0x7f05003d 5 Log....
阅读全文
摘要:direct method就是private函数,其余的public和protected函数都属于virtual method。所以在调用函数时,有invoke-direct,invoke-virtual,另外还有invoke-static、invoke-super以及invoke-interfac...
阅读全文
摘要:1 package com.example.wang; 2 3 import android.app.Activity; 4 import android.app.AlertDialog; 5 import android.content.Context; 6 import android.os...
阅读全文
摘要:SEAndroid是一种基于安全策略的MAC安全机制。这种安全策略又是建立在对象的安全上下文的基础上的。这里所说的对象分为两种类型,一种称主体(Subject),一种称为客体(Object)。主体通常就是指进程,而客观就是指进程所要访问的资源,例如文件、系统属性等。 安全上下文实际上就是一个附加在...
阅读全文
摘要://art/runtime/dex_file.h class DexFile { // Raw header_item. struct Header { uint8_t magic_[8]; uint32_t checksum_; // See also location_checksum_ uin
阅读全文
摘要:muhe221@muhe221-TP:~/soft/tools/apktool$ ./apktool d AliCrackme_1.apk Exception in thread "main" java.lang.UnsupportedClassVersionError: brut/apktool/...
阅读全文
摘要:android.app.Application这个包的onCreate()才是真正的Android入口点,只不过大多数开发者无需重写该类 重写Application import android.app.Application; import android.content.ComponentNam
阅读全文
摘要:Dalvik Virtual Machine does not use java bytecode. Instead, it uses it’s own file format called dex (Dalvik Executable Format). It holds definition of
阅读全文