scan-ftp-user.sh

scan-ftp-user.sh

#! /bin/sh
export LC_ALL=zh_CN.UTF-8
cd /bin2/
sh scan-ftp-user-daily.sh > scan-ftp-user-daily.sh.log 2>&1
/usr/bin/mutt -s "scan-ftp-user-daily" scm-svr-mtr@scm5.***.cn < scan-ftp-user-daily.sh.log 

scan-ftp-user-daily.sh

#!/bin/sh 
if [ -f scan-ftp-user3.txt ] 
then 
rm -f scan-ftp-user3.txt 
fi 
if [ -f scan-ftp-user1.txt ] 
then 
rm -f scan-ftp-user1.txt 
fi 
cat /usr/etc/proftpd1/passwd > scan-ftp-user1.txt 
cat /usr/etc/proftpd2/passwd >> scan-ftp-user1.txt 
cat /usr/etc/proftpd3/passwd >> scan-ftp-user1.txt 
cat /usr/etc/proftpd4/passwd >> scan-ftp-user1.txt

sed -i "s/:/n:/" scan-ftp-user1.txt 
sed -i "/^:/"d scan-ftp-user1.txt 
sed -i "/^#/"d scan-ftp-user1.txt 
sed -i "/^builder/"d scan-ftp-user1.txt 
sed -i "/^test/"d scan-ftp-user1.txt 
sort scan-ftp-user1.txt | uniq - scan-ftp-user3.txt 
echo "***账号总数***" 
cat scan-ftp-user3.txt | wc -l 
echo "." 
echo "***字母大写的账号***" 
grep [A-Z] scan-ftp-user3.txt 
echo "." 
echo "***账号变化***" 
diff scan-ftp-user3.txt scan-ftp-user.txt 
cat scan-ftp-user3.txt > scan-ftp-user.txt 
cat scan-ftp-user.txt > scan-ftp-user.at.txt 
sed -i "s/.***.com/@***.com/" scan-ftp-user.at.txt 
sed -i "s/.***.com/@***.com/" scan-ftp-user.at.txt 
sed -i "s/.***.com/@***.com/" scan-ftp-user.at.txt 
sed -i "s/.***.com/@***.com/" scan-ftp-user.at.txt 
sed -i "s/.***.com.cn/@***.com.cn/" scan-ftp-user.at.txt 
sed -i "s/.***.com/@***.com/" scan-ftp-user.at.txt 
sed -i "s/.***.com/@***.com/" scan-ftp-user.at.txt 
sed -i "s/.***.com/@***.com/" scan-ftp-user.at.txt 
sed -i "s/.***.cn/@***.cn/" scan-ftp-user.at.txt 
sed -i "s/.***.com/@***.com/" scan-ftp-user.at.txt 
sed -i "s/.***.com/@***.com/" scan-ftp-user.at.txt 
sed -i "s/.***.cn/@***.cn/" scan-ftp-user.at.txt 
sed -i "s/.***.com/@***.com/" scan-ftp-user.at.txt 
sed -i "s/.***.cn/@***.cn/" scan-ftp-user.at.txt 
echo "." 
echo "***帐号不是集团的邮箱***" 
grep -v -E '.***.com$|.***.com$|.***.com$|.***.com$|.***.com$|.***.com$|.***.cn$|.***.com$|.***.cn$|.***.com$|.***.com$|.***.com.cn$|.***.com$|.***.cn$|.***.com$' scan-ftp-user.txt

你可能感兴趣的:(scan-ftp-user.sh)