https://github.com/habales/adbdump
Command line tool written in Go to monitor the connection between android adb and and a android device.
https://github.com/habales/adbdump
adb android-adb android-device pcap-analyzer
Last synced: about 1 year ago
JSON representation
Command line tool written in Go to monitor the connection between android adb and and a android device.
- Host: GitHub
- URL: https://github.com/habales/adbdump
- Owner: HaBaLeS
- License: other
- Created: 2018-03-15T12:37:56.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-16T16:00:18.000Z (about 8 years ago)
- Last Synced: 2025-03-25T01:38:29.567Z (about 1 year ago)
- Topics: adb, android-adb, android-device, pcap-analyzer
- Language: Go
- Size: 4.88 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ADBDump
Command line tool written in Go to monitor the connection between Android adb and and a Android device. As the connection
is TCP based even if you run over USB it is easy to capture the traffic.
Tool was created to analyze a specific problem on instrumented test execution. It dumps the commands that are not binary
to transfer any files. You will see the ADB internal protocoll and output like on _adb logcat_.
You can live capture on any device or replay a existing pcap capture.
***For live Capture you need root. As always before you run anything as root, have a look a the code.***
Install with
go get -v -u github.com/HaBaLeS/ADBDump
if $GOPATH/bin is in your PATH run it with
ADBDump -r filep.pcap
to replay a captured dump
sudo ADBDump
for a live dump or
sudo ADBDump -h
for Options