對shell腳本進行加密

用shell腳本對系統進行自動化維護,簡單,便捷並且可移植性好.
但shell腳本是可讀寫的,頗有可能會泄露敏感信息,如用戶名,密碼,路徑,IP等.
一樣,在shell腳本運行時會也泄露敏感信息.
請問如何不影響腳本運行的前提下,對腳本進行加密?shell

1、shc方法bash

shc是一個加密shell腳本的工具.它的做用是把shell腳本轉換爲一個可執行的二進制文件,這就很好的解決了上述問題.dom

yum安裝:工具

yum -y install shc加密

編譯安裝:spa

wget http://www.datsi.fi.upm.es/~frosal/sources/shc-3.8.7.tgz
tar xvfz shc-3.8.7.tgz
cd shc-3.8.7
make
驗證shc是否正確安裝
[root@martin shc-3.8.7]# ./shc -v
shc parse(-f): No source file specified

shc Usage: shc [-e date] [-m addr] [-i iopt] [-x cmnd] [-l lopt] [-rvDTCAh] -f script

建立一個示例Shell腳本code

[root@martin shc-3.8.7]# vi random.sh
#!/bin/bash
read -p "How many random numbers do you want to generate?" max
for (( start = 1; start <= $max; start++ ))
do
  echo -e $RANDOM
done

給腳本增長可執行權限blog

[root@martin shc-3.8.7]# chmod u+x random.sh

執行示例腳本ip

[root@martin shc-3.8.7]# ./random.sh
How many random numbers do you want to generate?3
14235
9555
7671

使用shc加密Shell腳本ci

[root@martin shc-3.8.7]# ./shc -v -r -T -f random.sh
shc shll=bash
shc [-i]=-c
shc [-x]=exec '%s' "$@"
shc [-l]=
shc opts=
shc: cc  random.sh.x.c -o random.sh.x
shc: strip random.sh.x
shc: chmod go-r random.sh.x

運行後會生成兩個文件,script-name.x 和 script-name.x.c
script-name.x是加密後的可執行的二進制文件
script-name.x.c是生成script-name.x的原文件(c語言)

[root@martin shc-3.8.7]# ll random.sh*
-rwxr-xr-x 1 root root   146 Aug  2 10:26 random.sh
-rwx--x--x 1 root root  9424 Aug  2 10:30 random.sh.x
-rw-r--r-- 1 root root 10080 Aug  2 10:30 random.sh.x.c

執行加密後的腳本

[root@martin shc-3.8.7]# ./random.sh.x 
How many random numbers do you want to generate?3
28955
21487
29513

還不完善,只能全路徑執行shc命令或者進入目錄內,加入全局環境變量/etc/profile未生效

2、gzexe

它是使用系統自帶的gzexe程序,它不但加密,同時壓縮文件

這種加密方式不是很是保險的方法,可是可以知足通常的加密用途,能夠隱蔽腳本中的密碼等信息。

使用方法:

[root@martin home]# gzexe random.sh 
random.sh:     20.5%
[root@martin home]# ll random.sh*
-rwxr-xr-x 1 root root 953 Aug  2 10:45 random.sh
-rwxr-xr-x 1 root root 146 Aug  2 10:45 random.sh~

它會把原來沒有加密的文件備份爲 file.sh~ ,同時 file.sh 即被變成加密文件

參考地址:

http://lidao.blog.51cto.com/3388056/1914205

https://yq.aliyun.com/ziliao/65848

相關文章
相關標籤/搜索