모바일 취약점 점검/Android
ADB Command
자주 쓰는 ADB 명령어를 남겨봅니다. 1. ADB 서버 실행 adb start-server 2. 연결 가능 기기 확인 adb devices 3. ADB 서버 종료 adb kill-server 4. 기기 리부팅 adb reboot 5. ADB 접속 adb shell 6. ADB 원격접속 adb shell 접속 시 USB로 연결된 기기로만 접속이 가능하며, 기기 IP로 접속할 경우 tcp 모드로 접속합니다. // 1. 최초 USB로 기기 연결 후 명령 실행 adb tcpip 5555 // 2. USB 해제 후 접속 가능 adb connect 기기IP:5555 adb -s 기기IP:5555 shell 7. 파일 업로드 adb push 파일명 저장디렉터리 8. 파일 다운로드 adb pull 파일전체경로 (경로..
2023. 12. 21. 16:35