统计php更改文件,可疑文件
Jun 20, 2016 pm 12:50 PM#!/bin/bash
#wirte by zhenglong 20150818
#Centos
# php Trojan checking
email="1525356778@qq.com"
rm -rf /tmp/file.txt
echo "Contain suspicious files:" >> /tmp/file.txt
find / -name "*.php" -type f -print0 | xargs -0 egrep "(phpspy|c99sh|milw0rm|eval\(gzuncompress\(base64_decoolcode|eval\(base64_decoolcode|spider_bc|gzinflate)" | awk -F: '{print $1}' | sort | uniq >> /tmp/file.txt
echo -e "\nContain file_put_contents:" >>/tmp/file.txt
grep -r --include=*.php 'file_put_contents(.*$_POST\[.*\]);' / >>/tmp/file.txt
echo -e "\nContain eval:" >> /tmp/file.txt
grep -r --include=*.php '[^a-z]eval($_POST' / >>/tmp/file.txt
echo -e "\n PHP file change in one day:" >> /tmp/file.txt
find / -mtime -1 -type f -name *.php >>/tmp/file.txt
cat /tmp/file.txt |mail -s "PHP Trojan" ${email}

인기 기사

인기 기사

뜨거운 기사 태그

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제











Laravel Back End : Part 2, React가있는 React 앱 구축

PHP의 컬 : REST API에서 PHP Curl Extension 사용 방법
