├── .gitignore ├── .project ├── .pydevproject ├── .settings └── org.eclipse.core.resources.prefs ├── CONTRIBUTORS ├── LICENSE ├── Makefile ├── README.rst ├── andbug ├── data └── monitor_fun.conf ├── doc ├── Android动态逆向分析工具(一)——Andbug之基本操作.doc ├── Android动态逆向分析工具(三)——andbug常见问题汇总.doc ├── Android动态逆向分析工具(二)——Andbug扩展功能.doc ├── Android动态逆向分析工具(四)——Andbug补充调试功能.doc └── readme.txt ├── info ├── AndBug-RECON-2011.pdf ├── Android动态逆向分析工具(一)——Andbug之基本操作.pdf ├── Android动态逆向分析工具(三)——andbug常见问题汇总.pdf ├── Android动态逆向分析工具(二)——Andbug扩展功能.pdf └── Android动态逆向分析工具(四)——Andbug补充调试功能.pdf ├── lib ├── andbug │ ├── __init__.py │ ├── cmd │ │ ├── __init__.py │ │ ├── break-detail.py │ │ ├── break.py │ │ ├── break_list.py │ │ ├── break_remove.py │ │ ├── class_detail.py │ │ ├── class_trace.py │ │ ├── classes.py │ │ ├── dump.py │ │ ├── exit.py │ │ ├── frame_value.py │ │ ├── help.py │ │ ├── inspect.py │ │ ├── method_detail.py │ │ ├── method_trace.py │ │ ├── methods.py │ │ ├── monitor.py │ │ ├── navi.py │ │ ├── resume.py │ │ ├── shell.py │ │ ├── source.py │ │ ├── statics.py │ │ ├── step.py │ │ ├── suspend.py │ │ ├── thread_trace.py │ │ ├── threads.py │ │ ├── version.py │ │ └── vm_cap.py │ ├── coffee │ │ └── frontend.coffee │ ├── command.py │ ├── config.py │ ├── data.py │ ├── data │ │ ├── frontend.js │ │ ├── jquery-1.6.1.min.js │ │ └── style.css │ ├── errors.py │ ├── log.py │ ├── options.py │ ├── proto.py │ ├── screed.py │ ├── source.py │ ├── util.py │ ├── view │ │ ├── footer.tpl │ │ ├── frontend.tpl │ │ └── header.tpl │ └── vm.py └── jdwp │ ├── jdwp.c │ ├── jdwp.pyx │ ├── wire.c │ └── wire.h ├── pylint.rc ├── setup.py └── tests ├── __init__.py ├── jdwp.py ├── log.py ├── options.py └── proto.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/.pydevproject -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/README.rst -------------------------------------------------------------------------------- /andbug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/andbug -------------------------------------------------------------------------------- /data/monitor_fun.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/data/monitor_fun.conf -------------------------------------------------------------------------------- /doc/Android动态逆向分析工具(一)——Andbug之基本操作.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/doc/Android动态逆向分析工具(一)——Andbug之基本操作.doc -------------------------------------------------------------------------------- /doc/Android动态逆向分析工具(三)——andbug常见问题汇总.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/doc/Android动态逆向分析工具(三)——andbug常见问题汇总.doc -------------------------------------------------------------------------------- /doc/Android动态逆向分析工具(二)——Andbug扩展功能.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/doc/Android动态逆向分析工具(二)——Andbug扩展功能.doc -------------------------------------------------------------------------------- /doc/Android动态逆向分析工具(四)——Andbug补充调试功能.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/doc/Android动态逆向分析工具(四)——Andbug补充调试功能.doc -------------------------------------------------------------------------------- /doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/doc/readme.txt -------------------------------------------------------------------------------- /info/AndBug-RECON-2011.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/info/AndBug-RECON-2011.pdf -------------------------------------------------------------------------------- /info/Android动态逆向分析工具(一)——Andbug之基本操作.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/info/Android动态逆向分析工具(一)——Andbug之基本操作.pdf -------------------------------------------------------------------------------- /info/Android动态逆向分析工具(三)——andbug常见问题汇总.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/info/Android动态逆向分析工具(三)——andbug常见问题汇总.pdf -------------------------------------------------------------------------------- /info/Android动态逆向分析工具(二)——Andbug扩展功能.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/info/Android动态逆向分析工具(二)——Andbug扩展功能.pdf -------------------------------------------------------------------------------- /info/Android动态逆向分析工具(四)——Andbug补充调试功能.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/info/Android动态逆向分析工具(四)——Andbug补充调试功能.pdf -------------------------------------------------------------------------------- /lib/andbug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/__init__.py -------------------------------------------------------------------------------- /lib/andbug/cmd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/__init__.py -------------------------------------------------------------------------------- /lib/andbug/cmd/break-detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/break-detail.py -------------------------------------------------------------------------------- /lib/andbug/cmd/break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/break.py -------------------------------------------------------------------------------- /lib/andbug/cmd/break_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/break_list.py -------------------------------------------------------------------------------- /lib/andbug/cmd/break_remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/break_remove.py -------------------------------------------------------------------------------- /lib/andbug/cmd/class_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/class_detail.py -------------------------------------------------------------------------------- /lib/andbug/cmd/class_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/class_trace.py -------------------------------------------------------------------------------- /lib/andbug/cmd/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/classes.py -------------------------------------------------------------------------------- /lib/andbug/cmd/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/dump.py -------------------------------------------------------------------------------- /lib/andbug/cmd/exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/exit.py -------------------------------------------------------------------------------- /lib/andbug/cmd/frame_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/frame_value.py -------------------------------------------------------------------------------- /lib/andbug/cmd/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/help.py -------------------------------------------------------------------------------- /lib/andbug/cmd/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/inspect.py -------------------------------------------------------------------------------- /lib/andbug/cmd/method_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/method_detail.py -------------------------------------------------------------------------------- /lib/andbug/cmd/method_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/method_trace.py -------------------------------------------------------------------------------- /lib/andbug/cmd/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/methods.py -------------------------------------------------------------------------------- /lib/andbug/cmd/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/monitor.py -------------------------------------------------------------------------------- /lib/andbug/cmd/navi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/navi.py -------------------------------------------------------------------------------- /lib/andbug/cmd/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/resume.py -------------------------------------------------------------------------------- /lib/andbug/cmd/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/shell.py -------------------------------------------------------------------------------- /lib/andbug/cmd/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/source.py -------------------------------------------------------------------------------- /lib/andbug/cmd/statics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/statics.py -------------------------------------------------------------------------------- /lib/andbug/cmd/step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/step.py -------------------------------------------------------------------------------- /lib/andbug/cmd/suspend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/suspend.py -------------------------------------------------------------------------------- /lib/andbug/cmd/thread_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/thread_trace.py -------------------------------------------------------------------------------- /lib/andbug/cmd/threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/threads.py -------------------------------------------------------------------------------- /lib/andbug/cmd/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/version.py -------------------------------------------------------------------------------- /lib/andbug/cmd/vm_cap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/cmd/vm_cap.py -------------------------------------------------------------------------------- /lib/andbug/coffee/frontend.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/coffee/frontend.coffee -------------------------------------------------------------------------------- /lib/andbug/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/command.py -------------------------------------------------------------------------------- /lib/andbug/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/config.py -------------------------------------------------------------------------------- /lib/andbug/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/data.py -------------------------------------------------------------------------------- /lib/andbug/data/frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/data/frontend.js -------------------------------------------------------------------------------- /lib/andbug/data/jquery-1.6.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/data/jquery-1.6.1.min.js -------------------------------------------------------------------------------- /lib/andbug/data/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/data/style.css -------------------------------------------------------------------------------- /lib/andbug/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/errors.py -------------------------------------------------------------------------------- /lib/andbug/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/log.py -------------------------------------------------------------------------------- /lib/andbug/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/options.py -------------------------------------------------------------------------------- /lib/andbug/proto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/proto.py -------------------------------------------------------------------------------- /lib/andbug/screed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/screed.py -------------------------------------------------------------------------------- /lib/andbug/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/source.py -------------------------------------------------------------------------------- /lib/andbug/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/util.py -------------------------------------------------------------------------------- /lib/andbug/view/footer.tpl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/andbug/view/frontend.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/view/frontend.tpl -------------------------------------------------------------------------------- /lib/andbug/view/header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/view/header.tpl -------------------------------------------------------------------------------- /lib/andbug/vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/andbug/vm.py -------------------------------------------------------------------------------- /lib/jdwp/jdwp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/jdwp/jdwp.c -------------------------------------------------------------------------------- /lib/jdwp/jdwp.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/jdwp/jdwp.pyx -------------------------------------------------------------------------------- /lib/jdwp/wire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/jdwp/wire.c -------------------------------------------------------------------------------- /lib/jdwp/wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/lib/jdwp/wire.h -------------------------------------------------------------------------------- /pylint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/pylint.rc -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/jdwp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/tests/jdwp.py -------------------------------------------------------------------------------- /tests/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/tests/log.py -------------------------------------------------------------------------------- /tests/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/tests/options.py -------------------------------------------------------------------------------- /tests/proto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbc/AndBug/HEAD/tests/proto.py --------------------------------------------------------------------------------