일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- bash
- centos 8
- xe guest utilities
- ssh key 배포
- ELASTIC
- Elasticsearch
- 보안양파
- x-pack
- Kibana server is not ready yet
- G-suite
- endpoint security
- Windows
- hardening
- ansible
- PlayBook
- 로그인불가
- XCP-ng
- pfsense
- miniconda
- GitLab
- 한글가이드
- macos
- proxycfg
- elastic stack
- application security
- freebsd
- docker
- Kibana
- Proxy
- Today
- Total
목록전체 글 (677)
선 밖에 선 자유인
서버측에서 ssh-keygen 실행$ ssh-keygenGenerating public/private rsa key pair.Enter file in which to save the key (/home/danielsong/.ssh/id_rsa):Created directory ‘/home/danielsong/.ssh’.Enter passphrase (empty for no passphrase):Enter same passphrase again:Your identification has been saved in /home/danielsong/.ssh/id_rsa.Your public key has been saved in /home/danielsong/.ssh/id_rsa.pub.The key finger..
http://www.xxx.com/index.php?=PHPB8B5F2A0-3C92-11d3-A3A9-4C7B08C10000 같은 방법으로 PHP Credits 정보를 확인할 수 있다. expose_php=Offdisplay_errors=offsession.name=session_id 를 통해 해결 가능
시작 → 실행에서 regedit HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters에 값 추가마우스 오른쪽 클릭하여 새로 만들기 → DWORD 값 추가하여 이름을 AutoShareWks 입력. 값 데이터는 0 2. 윈도우 2000 서버/윈도우 서버 2003 경우 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters에 값을 추가마우스 오른쪽 클릭하여 새로 만들기 → DWORD 값 추가하여 이름을 AutoShareServer 입력. 값 데이터는 0
lighttpd 플 이용하여 web 서버 설치 후 /etc/lighttpd/conf.d/dirlisting.conf 파일 수정dir-listing.activate = "disable" => dir-listing.activate = "enable" lighttpd 서버 재시작 후 rsync 나 wget 을 이용하여 파일을 다움로드 - wget 이용시 # cd /var/www/lighttpd# wget -r -nH -N http://ftp.daum.net/centos - rsync 이용 시# cd /var/www/lighttpd# mkdir FreeBSD# cd FreeBSD# rsync -avz --delete ftp.kaist.ac.kr::FreeBSD
Magento 설치 시 PHP extension "dom" must be loaded.PHP extension "mcrypt" must be loaded.PHP extension "gd" must be loaded. 이와 같은 에러가 발생하게 되면 다음과 같이 작업 후# yum install php-gd# yum install php-dom rpmfind.net 에서 epel 검색해서 다운로드# rpm -Uvh epel-release-6-8.noarch.rpm# yum update# yum install php-mcrypt # /etc/init.d/httpd restart
lighttpd.conf 파일 수정 # vi /etc/lighttpd/lighttpd.conf Append / modifyserver.dir-listing = "enable" 다음과 같이 수정 후 lighttpd restartdir-listing.activate = "disable"
시스템 업데이트 # freebsd-update fetch# freebsd-update install ports 업데이트# portsnap fetch portsnap 최초 실행 시 다음의 명령어 실행 (최초 실행 시에만 실행)# portsnap extract# portsnap update [출처] FreeBSD Ports Collection 가져오기 & 업데이트 (portsnap)|작성자 실바람
아파치에서 SSL 2.0을 비활성화 아파치에서 SSL 2.0을 (SSLv2) 해제하는 방법 자세히 만 SSL 3.0 (SSLv3) 및 TLS 1.0되도록는 SSL (Secure Socket Layer) 연결에 사용할 수 있습니다. 기존의 아파치 conf의 파일을 백업 cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.bak httpd.conf에서 SSLCipherSuite에 대한 기존 참조를 주석 sed -i 's/SSLCipherSuite/#SSLCipherSuite/g' /etc/httpd/conf/httpd.conf 값을 httpd.conf에 다음 두 줄을 추가 SSLProtocol all -SSLv2SSLCipherSuite ALL:!ADH:!N..