// 보안 체크 명령어 모음 (linux security commands)
1. netstat -an|grep LISTEN
2. lsof|grep LISTEN
3. find / -name .exec -exec cat {} \; -print
4. find / -name .forward -exec cat {} \; -print
5. find / -name .rhosts -exec cat {} \; -print
6. find / -nouser -o -nogroup -print;
7. find / -type f \( -perm -004000 -o -perm -002000 \) -exec ls -lg {} \; // SetUID SetGID 체크하기
8. find /dev -type -f -print; // 디바이스 디렉토리에서 일반 파일찾기
9. find / -ctime -1 -exec ls -l {} \; -print;
10. 8. find / -mtime -1 -exec ls -l {} \; -print; // 수정된 파일찾기 1일 안에...
11. find / -type d \( -perm -2 -o -perm -20 \) -exec ls -lg {} \; // write permission 있는 디렉토리 찾기.
// root user cron..( ORACLE USER 에서 처리할수 있는 명령어 실행하기)
19 15 * * * su - oracle -c '/oracle/product/8.1.7/bin/exp userid=young/dlwodud file=/oracle/temp/ddd1.dmp'
25 15 * * * su - oracle -c '/oracle/temp/imp.sh'
댓글 없음:
댓글 쓰기