Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1062205
  • 博文数量: 239
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 3618
  • 用 户 组: 普通用户
  • 注册时间: 2012-11-12 13:17
文章分类

全部博文(239)

文章存档

2021年(1)

2016年(1)

2015年(30)

2014年(91)

2013年(116)

分类: LINUX

2013-06-08 21:58:14

           很多时候,我们的脚本中涉及的用户名/密码/ip等敏感信息,我们需要使用一些加密方面来屏蔽这些信息,确保我们的系统安全(主要防菜鸟),虽然shc可以实现强大的加密功能,但是他需要另外安装shc软件,比较麻烦,应对一般的加密,个人推荐直接喜用系统自带的gzexe(大部分Linux,unix都有)


[root@db2 home]# cat test.sh 
#!/bin/sh
echo "Hello World!"

[root@db2 home]# gzexe test.sh 
test.sh: 20.0%

现在的话test.sh里面就加密了。
[root@db2 home]# strings test.sh
#!/bin/sh
skip=44
tab=' '
nl='
IFS=" $tab$nl"
umask=`umask`
umask 77
gztmpdir=
trap 'res=$?
  test -n "$gztmpdir" && rm -fr "$gztmpdir"
  (exit $res); exit $res
' 0 1 2 3 5 10 13 15
if type mktemp >/dev/null 2>&1; then
  gztmpdir=`mktemp -dt`
else
  gztmpdir=/tmp/gztmp$$; mkdir $gztmpdir
fi || { (exit 127); exit 127; }
gztmp=$gztmpdir/$0
case $0 in
-* | */*'
') mkdir -p "$gztmp" && rm -r "$gztmp";;
*/*) gztmp=$gztmpdir/`basename "$0"`;;
esac || { (exit 127); exit 127; }
case `echo X | tail -n +1 2>/dev/null` in
X) tail_n=-n;;
*) tail_n=;;
esac
if tail $tail_n +$skip <"$0" | gzip -cd > "$gztmp"; then
  umask $umask
  chmod 700 "$gztmp"
  (sleep 5; rm -fr "$gztmpdir") 2>/dev/null &
  "$gztmp" ${1+"$@"}; res=$?
else
  echo >&2 "Cannot decompress $0"
  (exit 127); res=127
fi; exit $res
test.sh


[root@db2 home]# ls
test.sh  test.sh~

tesh.sh~里面存放了原来的脚本信息

[root@db2 home]# cat test.sh~
#!/bin/sh
echo "Hello World!"

用gzexe -d test.sh可以还原test.sh里面的信息
[root@db2 home]# gzexe -d test.sh
[root@db2 home]# cat test.sh
#!/bin/sh
echo "Hello World!"





阅读(2788) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~