顯示具有 Pyinstaller 標籤的文章。 顯示所有文章
顯示具有 Pyinstaller 標籤的文章。 顯示所有文章

2018年2月25日 星期日

如何保護你的 Python 程式碼

在今年 2 月底時,公司的讀書會輪到我報告了
本來是想講怎麼破解得到 Python 的程式碼,後來覺得很多人會聽不懂
而且我們公司的是做安全的,教怎麼保護的方法還要正面一些

2016年11月24日 星期四

Python 反編譯第一次就上手 ~ Pyinstaller reverse engineer

觀念要先釐清

  • Disassembler
    • A disassembler is a software tool which transforms machine code into a human readable mnemonic representation called assembly language.
  • Decompiler
    • Software used to revert the process of compilation. Decompiler takes a binary program file as input and output the same program expressed in a structured higher-level language.


這裡就不說明 python 的編譯、執行方法
可以上網找找 pyc, pyo 的資料,他們說明的都比我清楚