TOOL설치

x64dbgpy

우와해커 2020. 6. 26. 17:29

x64dbgpy, PytQt5 설치

ptrhon 2.7.10 설치 x86,x64각각 폴더 생성 후 압축파일을 해제하여

x64dbgpy, PyQt5, sip.pyd 파일을 각각의 아키텍쳐에 다음과 같이 위치시킨다. 

C:\Python27_x86\Lib\site-packages
x64dbgpy
PyQt5
sip.pyd

C:\Users\yim91\Desktop\REVERSING\x64dbg\release\x32\plugins
x64dbgpy
x64dbgpy.dp32
x64dbg_editor

C:\Python27_x64
위와 상동.

 

Qt 실행법 

플러그인 -> Open (GUI)Script -> x64dbg_editor.py

C:\Users\yim91\Desktop\REVERSING\x64dbg\release\x64\plugins\x64dbg_editor\x64dbg_editor.py

 

테스트 코드

- 스탭인 5번하는 코드

* 잘못된 스크립트 경로를 불러오면 자동으로 종료되니 조심하기 바란다.... -_-;;;

사용하려는 스크립트를 불러오도록 경로를 import해주면 된다.

\x64dbg\release\x32\plugins\x64dbgpy\pluginsdk\_scriptapi
from x64dbgpy.pluginsdk._scriptapi import *
for a in range(0, 5):
	debug.StepIn()

 

 

설치참고: https://www.youtube.com/watch?v=rIFA6t1Z9Fc&feature=youtu.be
릴리즈파일: https://github.com/x64dbg/x64dbgpy/releases
개발자용 소스파일: https://github.com/x64dbg/x64dbgpy

PyQt5: https://github.com/x64dbg/PyQt5/releases

 

 

 

 

개발자용 소스 컴파일시 에러: XP용 컴포넌트 설치해야 함
https://stackoverflow.com/questions/12748896/cannot-open-windows-h-in-microsoft-visual-studio

 

사용자는 그냥 릴리즈 파일 설치하면 된다.

https://github.com/x64dbg/x64dbgpy/releases

'TOOL설치' 카테고리의 다른 글

Failed to connect, CredSSP required by server.  (0) 2020.07.14
tmux  (0) 2020.07.07
[VPN] 와이어가드 config 연결  (0) 2020.06.14
파이썬 pip, 모듈 설치  (0) 2020.06.01
리눅스 스크롤 버퍼 크기 설정  (0) 2020.05.28