Shell Script Compiler
一個通用的 shell 腳本編譯器。Shc 接受一個在命令列中指定的腳本,並產生 C 原始碼。生成的原始碼隨後會被編譯並鏈接,以產生一個去除符號表的二進位可執行文件。 編譯後的二進位文件仍然依賴於 shell 腳本第一行中指定的 shell(即 shebang,例如 #!/bin/sh),因此 shc 無法創建完全獨立的二進位文件。 Shc 本身並不是一個像 cc 那樣的編譯器,而是對 shell 腳本進行編碼和加密,並生成具有到期功能的 C 原始碼。之後,它使用系統的編譯器來編譯出一個去除符號表的二進位文件,該文件的行為與原始腳本完全相同。在執行時,編譯後的二進位文件將解密並使用 shell 的 -c 選項來執行代碼。
Usage
|
|
Shell Script Compiler無法保護你的腳本
撰寫了一個 shell script,裡面包含 API 金鑰等機敏資訊 為了避免一般用戶讀到腳本內的 API 金鑰等機敏內容,所以使用 shc 轉成 binary,看似一般人讀不到腳本內容,就放在 production 環境
Note that it doesn’t work with bash (or sh based on bash), as one can do: env SHELLOPTS=verbose ./script.x to see the content of the script. There’s probably easy ways to bypass with other shells as well.
建立 hello.sh
|
|
編譯並確定他是 elf,沒有 symbols
雖然排版亂了,但還是看到了 code 由於 SHELLOPTS 是 readonly 變數,即使在腳本裡面嘗試unset SHELLOPTS去反制,也無法阻擋SHELLOPTS=verbose效果
|
|
用 strace 也可以看到要給 bash 跑的指令,雖然比 SHELLOPTS=verbose 亂的多
|
|
官方表示 -U
可以被免被 strace 追蹤,但 202502 測試時會返回 ./hello: Operation not permitted
無法使用