pyinstaller
[Python] pyinstaller EXE 파일 소스코드 Decompile
Index0x00 pyinstaller로 실습 exe 파일 생성0x01 필요한 툴0x02 pyinstxtractor.py (download)0x03 HxD로 파일 형식 분석 및 시그니처 추가0x04 uncompyle6 모듈을 통한 소스코드 확인0x05 문제 해결0x06 암호화된 키 값 확인 [Python] exe 파일 만들기 - pyinstallerpyinstaller 설치 pip install pyinstaller 간단한 테스트를 해보자 import datetime now = datetime.datetime.now() nowDatetime = now.strftime("%Y-%m-%d %H:%M:%S") print(nowDatetime)#2020-11-23 02:35:20 cmd를 열어 test.py 파..