보안이슈
php 해킹파일 검색
씨엔아이소프트
2018. 5. 23. 17:54
반응형
/* 해킹파일 찾기 */
find / -name "*.php" -print | xargs grep -Hl "@include \"\\\x"
find / -name "*.php" -print | xargs grep -Hl "=Array();global"
find / -name "*.php" -print | xargs grep -Hl "\=\$_COOKIE;"
find / -name "*.php" -print | xargs grep -Hl "<? @eval(\$_POST\["
find / -name "*.php" -print | xargs grep -Hl "<? system"
find / -name "index.php" -print | xargs grep -Hl '@include \"\\057'
find / -name "*.php" | xargs grep -l "\-shell"
find / -name "*.php" | xargs grep -l "function Os6IHql("
find / -name "*.php" | xargs grep -Hl "eval(\$_POST\[cmd\]"
find / -name "*.php" | xargs grep -Hl "ro521.com"
find / -name "*.php" | xargs grep -l "b374k-shell"
반응형