강의

멘토링

커뮤니티

Inflearn Community Q&A

daeinlee4159's profile image
daeinlee4159

asked

Simulated hacking of Android apps using Frida

Python binding structure

get_usb_device 에러 문의

Written on

·

721

0

파이썬 파인딩할 때 아래와 같은 메세지가 나오는데 도움을 얻을 수 있을까요?
frida 설치는 잘되어 있는데 에러가 발생하네요.
 
AttributeError: module 'frida' has no attribute 'get_usb_device
androidfrida모의해킹

Answer 2

0

daeinlee4159님의 프로필 이미지
daeinlee4159
Questioner

답변 너무 감사합니다.

보내주신 내용 다시 해보고 말씀드릴게요.

 

0

안녕하세요. 보안프로젝트 김태영입니다.

 

혹시, 작성하신 파이썬 파일 이름이 frida.py 로 되어있나요?

frida 모듈을 불러와서 파이썬 파일 이름과 동일하면 비슷한 오류가 나오더라구요.

 

다른 이름으로 되어 있다면 파이썬 코드 중에 일부를 아래와 같이 수정 부탁드립니다.

* 수정 전 : frida.get_usb_device()

* 수정 후 : frida.get_usb_device(1)

 

감사합니다.

daeinlee4159's profile image
daeinlee4159

asked

Ask a question