How to make python script into PE file by pyinstaller
1. 관련글
:: https://nick2ya.tistory.com/6
2. 설치
1 |
python.exe -m pip install pyinstaller |
3. 사용법
1 |
pyinstaller.exe exploit.py |
4. 옵션
:: –onefile 또는 -F : 단독 실행 파일 형태로 제작, exe 파일 1개만 생성됨.
:: -n : 파일명 지정.
:: –icon : 아이콘 지정.
:: –noconsole 또는 -w : 콘솔화면 미출력.