TOOL설치 11

[Python] Windows에서 파이썬2,3 동시에 사용하는 설정

http2.tistory.com/19http2.tistory.com/19 python 2, 3 동시에 사용하기 (Windows) 글쓴이는 python 3.5를 매우매우 잘 사용하는중에 python 2.7버전도 사용할 필요성을 느껴서 (글 작성일 기준 OpenCV는 python 2.7까지만 지원) python 2.7과 python 3.5버전을 둘 다 사용하는 방법에 대해서 포�� http2.tistory.com mklink C:\Windows\python2.exe C:\python27\python.exe

TOOL설치 2020.08.02

tmux

https://edykim.com/ko/post/tmux-introductory-series-summary/ https://lukaszwrobel.pl/blog/tmux-tutorial-split-terminal-windows-easily/ 설정파일 바로 적용 tmux source-file .tmux.conf 세션 ■ 새 세션 생성 $ tmux new -s ■ 세션 이름 수정 ctrl + b, $ ■ 세션 종료 $ (tmux에서) exit ■ 세션 중단하기 (detached) ctrl + b, d ■ 세션 목록 보기 (list-session) $ tmux ls ■ 세션 다시 시작 $ tmux a $ tmux attach -t 세션번호 또는 세션이름 윈도우 관련(탭과 같은 개념) ■ 새 윈도우 생성 ctr..

TOOL설치 2020.07.07

x64dbgpy

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\x6..

TOOL설치 2020.06.26

[VPN] 와이어가드 config 연결

www.wireguard.com/quickstart/#command-line-interface 와이어가드 기본 PATH: /etc/wireguard/[파일명] 와이어가드 설정 파일, conf 파일을 다운로드 후 다음과 같은 파일명을 변경하여 copy&paste /etc/wireguard/wg0-client.conf root@kali:~/Desktop# wg-quick up wg0-client [#] ip link add wg0-client type wireguard [#] wg setconf wg0-client /dev/fd/63 [#] ip -4 address add 169.254.128.3/32 dev wg0-client [#] ip link set mtu 1420 up dev wg0-client [..

TOOL설치 2020.06.14