Skip to content

Instantly share code, notes, and snippets.

@shenweiw
shenweiw / AdbCommands
Created October 11, 2019 13:34 — forked from Pulimet/AdbCommands
Adb useful commands list
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
== Shell
@shenweiw
shenweiw / disassemble.md
Created September 30, 2019 15:42 — forked from jarun/disassemble.md
Guide to disassemble

prerequisites

  • Compile the program in gcc with debug symbols enabled (-g)
  • Do NOT strip the binary
  • To generate assembly code using gcc use the -S option: gcc -S hello.c

utilities

objdump