일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
- XCP-ng
- x-pack
- 로그인불가
- Kibana
- docker
- application security
- 한글가이드
- pfsense
- proxycfg
- Kibana server is not ready yet
- G-suite
- Elasticsearch
- xe guest utilities
- ELASTIC
- 보안양파
- PlayBook
- endpoint security
- GitLab
- centos 8
- bash
- hardening
- macos
- ansible
- ssh key 배포
- Proxy
- Windows
- elastic stack
- miniconda
- freebsd
- Today
- Total
목록IT (650)
선 밖에 선 자유인
- zimbra 설치 관련 문서https://www.digitalocean.com/community/tutorials/how-to-install-vmware-zimbra-open-source-on-a-digitalocean-droplethttp://www.oss.kr/oss_repository9/41751http://blog.bizmerce.com/?p=1587 - zimbra collaboration server open source editionhttps://www.zimbra.com/downloads/os-downloads.htmlhttps://www.zimbra.com/downloads/community-downloads.html
- bwsf 다운svn checkout http://bwsfinder.googlecode.com/svn/trunk/ bwsfinder-read-only - 실행./bwsfinder.pl -m w -e -d /var/www/html -t php HowToDetectWebShell_Kor.pdf
http://wikisecurity.net/
- VM을 선택- 우측의 VM General Properties 에서 Properties 버튼을 클릭- Boot Options 항목- OS boot parameters의 값을 – quiet console=hvc0 에서 single 로 변경- VM을 재시작 후 패스워드 변경- OS boot parameters 의 값 – quiet console=hvc0 로 변경
잘 나와 있음 http://www.mssqltips.com/sqlservertip/2340/resolving-could-not-open-a-connection-to-sql-server-errors/
wireless security
** 각 라인별로 ssh 작업 등을 할 때는 구) 의 내용은 에러가 발생한다. 아래와 같이 cat 으로 파일을 열어 라인별로 받아오는 방법을 권장 #!/bin/bash exec < [파일명] while read linedo echo $linedone or #!/bin/bash for line in `cat test.txt` $linedone ** line에 띄어쓰기가 있는 경우 문제됨 ---------------------------------------------구)#!/bin/bash for file in 'test.txt' ; do while read line ; do $line done < $filedone