Creator

You are here:-Creator

About Creator

This author has not yet filled in any details.
So far Creator has created 133 blog entries.

curl 이용하여 웹 접속 체크 IP version 6 기반에서

Testing port connectivity with curl based on IP version 6 환경 1) 클라이언트: curl, latest version 2) 웹서버: Apache Tomcat with IP version 6   접속 테스트 1) Client: curl, IP 버전 6 주소와 함께 사용할 인터페이스를 지정해야 한다. # curl -g -6 "http://[fe80::20c:29ff:fe2f:52de%ens192]:8080/daytime" <html> <head> <title>DayTime</title> </head> <body> <div style="font-size: 40px; text-align: center; font-weight:

By |2024-02-24T11:17:21+09:008월 14th, 2021|Categories: Tech|curl 이용하여 웹 접속 체크 IP version 6 기반에서 댓글 닫힘

How to Manually Update Curl on CentOS

0) need epel-release # yum -y update epel-release 1) create a new file /etc/yum.repos.d/city-fan.repo # vi /etc/yum.repos.d/city-fan.repo 2) Paste the following contents: [CityFan] name=City Fan Repo baseurl=http://www.city-fan.org/ftp/contrib/yum-repo/rhel$releasever/$basearch/ enabled=1 gpgcheck=0 3) Check version # curl -V ex) curl 7.78.0 (x86_64-redhat-linux-gnu) // 2021-08-14    

By |2021-08-17T08:25:54+09:008월 14th, 2021|Categories: Tech|How to Manually Update Curl on CentOS 댓글 닫힘

PLURA V5 웹방화벽 무엇이 다를까요? (2021.07.30)

Excellent Cyber Security Partner 「PLURA V5」  PLURA V5 Letter - 2021. 07. PLURA V5 웹방화벽(PLURA V5 WAF) 무엇이 다를까요? 종래의 웹방화벽 솔루션은 OWASP TOP 10 공격 위주의 탐지와 차단을 제공하므로, 고객별, 서비스별 취약점 대응에는 효과적이지 않습니다.또한, 통계적인 특징과 상호 데이터 분석 등을 반영해야 하는 크리덴셜 스터핑, 볼륨메트릭, SQL 인젝션 공격 등으로 인한 실시간 데이터유출의 해킹

By |2024-02-24T11:17:21+09:008월 13th, 2021|Categories: Newsletter|PLURA V5 웹방화벽 무엇이 다를까요? (2021.07.30) 댓글 닫힘

만료된 CentOS 6 환경에서 yum update 실행하기

CentOS 6 Update Repo 종료에 따른 해결 방안, 종료일 2020년 11월 30일. * 오직 64비트에서만 # Always check ntp ntpdate time.google.com # clear yum cache rm -f /var/lib/rpm/__* rpm --rebuilddb -v -v yum clean all rm -rf /var/cache/yum # make new repo with vault.centos mkdir -p /var/cache/yum/x86_64/6/base/ mkdir -p /var/cache/yum/x86_64/6/extras/ mkdir -p /var/cache/yum/x86_64/6/updates/ echo https://vault.centos.org/6.10/os/x86_64/

By |2024-02-24T11:17:21+09:007월 27th, 2021|Categories: Tech|만료된 CentOS 6 환경에서 yum update 실행하기 댓글 닫힘

유해차단 목록 다운받기

squidGuard 에서 Shalla 블랙 리스트를 주기적으로 다운받아 동기화를 위한 스크립트 # vi squidguard-update-blacklist.sh #!/bin/sh # Configure this section according to your system settings squidGuardpath="/usr/bin/squidGuard" squidpath="/usr/sbin/squid" httpget="/usr/bin/wget" tarpath="/bin/tar" chownpath="/bin/chown" dbhome="/var/lib/squidGuard/db/" # same as squidguard.conf dbhomeBL="/var/lib/squidGuard/db/BL" # same as squidguard.conf squidGuardowner="squid." workdir="/tmp" # download actual shalla's blacklist shallalist="http://www.shallalist.de/Downloads/shallalist.tar.gz" $httpget $shallalist -O $workdir/shallalist.tar.gz || exit 1 #cp /root/shallalist.tar.gz

By |2024-02-24T11:17:21+09:007월 19th, 2021|Categories: Tech|유해차단 목록 다운받기 댓글 닫힘

로깅(Logging) 을 위하여 SSD 사용하기

동접이 증가하면 성능에 영향을 미치는 것이 많습니다. 그 중에서도 웹 시스템의 경우, 액세스가 늘어나면 로깅(logging) 또한 증가합니다. /var/log 가 HDD 보다 SSD 일 경우 시스템의 안정적인 운영에 도움이 됩니다. 무엇을 사용하고 있는지 확인하기 위한 명령어는 다음과 같습니다. cat /sys/block/sda/queue/rotational 0: SSD 1: HDD   참고 사이트 https://unix.stackexchange.com/questions/65595/how-to-know-if-a-disk-is-an-ssd-or-an-hdd

By |2021-07-16T18:22:33+09:007월 16th, 2021|Categories: Tech|로깅(Logging) 을 위하여 SSD 사용하기 댓글 닫힘

MAC 주소 확인하기

PC 서버의 고유 정보로 활용하기 위하여 MAC 주소 사용하기   명령 관리자 실행 2. ipconfig /all 실행 3. MAC 주소 확인 각 어댑터 "물리적 주소" 확인   참고 사이트 https://m.blog.naver.com/kangyh5/221684721675

By |2024-02-24T11:17:23+09:007월 14th, 2021|Categories: Tech|MAC 주소 확인하기 댓글 닫힘

curl 프록시 옵션 설정

curl 를 옵션 설정 中 프록시 경유하기 다음은 테스트 용 악성코드를 다운로드 받는 예제 (* 주의 필요) curl -O -x "http://127.0.0.1:3128" http://www.eicar.org/download/eicar.com curl -O --proxy "http://127.0.0.1:3128" http://www.eicar.org/download/eicar.com curl -x localhost:3128 -I -L http://www.eicar.org/download/eicar.com -x 뿐만 아니라 --proxy 동일한 옵션이다. 참고 자료 https://oxylabs.io/blog/curl-with-proxy https://krespo.net/188 https://red.ht/2UKB3yC

By |2024-02-24T11:17:23+09:007월 14th, 2021|Categories: Tech|curl 프록시 옵션 설정 댓글 닫힘