일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- proxycfg
- 한글가이드
- 보안양파
- endpoint security
- PlayBook
- GitLab
- ssh key 배포
- docker
- Windows
- Kibana
- 로그인불가
- xe guest utilities
- G-suite
- pfsense
- centos 8
- application security
- bash
- XCP-ng
- macos
- x-pack
- ELASTIC
- hardening
- Kibana server is not ready yet
- miniconda
- ansible
- Proxy
- Elasticsearch
- elastic stack
- 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