博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
对shell脚本进行加密
阅读量:6177 次
发布时间:2019-06-21

本文共 1997 字,大约阅读时间需要 6 分钟。

用shell脚本对系统进行自动化维护,简单,便捷而且可移植性好.

但shell脚本是可读写的,很有可能会泄露敏感信息,如用户名,密码,路径,IP等.
同样,在shell脚本运行时会也泄露敏感信息.
请问如何不影响脚本运行的前提下,对脚本进行加密?

一、shc方法

shc是一个加密shell脚本的工具.它的作用是把shell脚本转换为一个可执行的二进制文件,这就很好的解决了上述问题.

yum安装:

yum -y install shc

编译安装:

wget http://www.datsi.fi.upm.es/~frosal/sources/shc-3.8.7.tgztar xvfz shc-3.8.7.tgzcd shc-3.8.7make
验证shc是否正确安装
[root@martin shc-3.8.7]# ./shc -vshc parse(-f): No source file specifiedshc Usage: shc [-e date] [-m addr] [-i iopt] [-x cmnd] [-l lopt] [-rvDTCAh] -f script

创建一个示例Shell脚本

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

给脚本增加可执行权限

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

执行示例脚本

[root@martin shc-3.8.7]# ./random.shHow many random numbers do you want to generate?31423595557671

使用shc加密Shell脚本

[root@martin shc-3.8.7]# ./shc -v -r -T -f random.shshc shll=bashshc [-i]=-cshc [-x]=exec '%s' "$@"shc [-l]=shc opts=shc: cc  random.sh.x.c -o random.sh.xshc: strip random.sh.xshc: 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?3289552148729513

还不完善,只能全路径执行shc命令或者进入目录内,加入全局环境变量/etc/profile未生效

二、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

 

转载于:https://www.cnblogs.com/jmaly/p/7272680.html

你可能感兴趣的文章
mysql创建用户
查看>>
js深度克隆对象
查看>>
Hadoop基础-配置历史服务器
查看>>
vue - 条件语句
查看>>
System.nanoTime()和System.currentTimeMillis()性能问题
查看>>
VirtualBox使用物理硬盘建立磁盘
查看>>
分享Silverlight/Windows8/WPF/WP7/HTML5周学习导读(6月4日-6月10日)
查看>>
java实现Comparable接口和Comparator接口,并重写compareTo方法和compare方法
查看>>
oalTouch (OpenAL的一个应用)
查看>>
Installing GLUT for MinGW [转]
查看>>
WCF 报错:通信对象System.ServiceModel.Channels.ServiceChannel 无法用于通信,因为其处于“出错”状态。...
查看>>
数据结构---->图的遍历
查看>>
IronPython for ASP.NET 部署注意事项
查看>>
瑞典皇家理工学院工程实例:Sub-band Mixed Excitation LPC Vocoder In IP TELEPHONY
查看>>
勿忘我
查看>>
urlencode用法与误区
查看>>
发布和订阅的删除
查看>>
packets
查看>>
使用SVN提示“工作副本已经锁定”的解决办法
查看>>
关于索引删除的策略IndexDeletionPolicy
查看>>