아파치 메소드(method) 제한 및 확인
# Web&WAS/Apache2021. 11. 4. 20:03아파치 메소드(method) 제한 및 확인

메소드 확인방법 $ curl -v -X OPTIONS http://localhost httpd.conf 설정 사이에 설정 해당경로만 메소드 제한걸리는 단점 하위폴더는 안됨! 아래처럼 으로 url pattern으로 차단해야함 Order deny,allow Deny from all

centos5 curl 버전 업그레이드
# Operation System/Linux2020. 3. 26. 10:59centos5 curl 버전 업그레이드

1 2 3 4 5 6 7 8 9 10 11 12 # curl --version curl 7.15.5 (i386-redhat-linux-gnu) libcurl/7.15.5 OpenSSL/0.9.8b zlib/1.2.3 libidn/0.6.5 Protocols: tftp ftp telnet dict ldap http file https ftps Features: GSS-Negotiate IDN IPv6 Largefile NTLM SSL libz # wget https://curl.haxx.se/download/curl-7.69.1.tar.gz # ./configure --with-ssl=/usr/local/ssl --disable-ldap # make # make install Colored by Color..

centos5 텔레그램 알림봇 연결불가 이슈
# trouble shooting2020. 2. 27. 17:06centos5 텔레그램 알림봇 연결불가 이슈

centos5.11에서 텔레그램 감시 설정 걸었었는데 아래와 같이 오류 발생 curl: (35) error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version tlsv1이 문제가되어 발생된듯합니다. openssl 및 curl 버전 업그레이드하면 해결! openssl버전 업그레이드 https://darksharavim.tistory.com/463 centos5 openssl 버전 업그레이드 버전확인 $ openssl version OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008 $ wget https://www.openssl.org/source/old/1.0.2/openssl-1.0.2u.tar.gz $ ...

리눅스 원격 SSH접속시 텔레그램(telegram) 알람
# Operation System/Linux2019. 12. 18. 10:42리눅스 원격 SSH접속시 텔레그램(telegram) 알람

ssh설정폴더에 /etc/ssh/sshrc 파일생성 후 아래와 같이 작성 (실행권한 주세요~ chmod +x sshrc) #!/bin/bash DESTINATION="텔래그램 채널(대화방) ID" BOTID="텔레그램 봇 ID 입력" remoteip=`w | grep $USER | awk '{print $3}'` HOSTNAME_S=`hostname -s` conntime=$(date +"%Y-%m-%d %H:%M:%S") msg=`echo -e "접속서버 : " $HOSTNAME_S " \n접속IP : " $remoteip "\n접속시간 : "$conntime "\n"$USER"계정이 접속되었습니다!!"` curl -s \ --request POST https://api.telegram.org/bot{..

curl를 이용한 다음 자동로그인
# Script/PHP2016. 8. 24. 12:25curl를 이용한 다음 자동로그인

$loginUrl = 'https://logins.daum.net/Mail-bin/login.cgi?dummy=1238466344458'; $login_data = 'enpw=비밀번호&id=아이디&pw=비밀번호&url=http://www.daum.net&webmsg=-1'; $cookie_nm = "./cookie.txt"; $ch = curl_init(); curl_setopt ($ch, CURLOPT_URL,$loginUrl); //접속할 URL 주소 curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt ($ch, CURLOPT_SSLVERSION,1); curl_setopt ($ch, CURLOPT_HEADER, 1); curl_setopt ..

image