일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ssh key 배포
- Kibana server is not ready yet
- endpoint security
- ansible
- 로그인불가
- GitLab
- ELASTIC
- hardening
- Proxy
- centos 8
- XCP-ng
- macos
- 보안양파
- freebsd
- application security
- miniconda
- x-pack
- docker
- 한글가이드
- Kibana
- xe guest utilities
- elastic stack
- bash
- Elasticsearch
- PlayBook
- G-suite
- pfsense
- Windows
- proxycfg
- Today
- Total
목록IT/Programming (66)
선 밖에 선 자유인
http://codebeautify.org/
출처: http://stackoverflow.com/questions/24077314/how-to-send-an-email-with-style-in-python3 #!/usr/bin/python3 import smtplib msg_header = 'From: Sender Name \n' \ 'To: Receiver Name \n' \ 'Cc: Receiver2 Name \n' \ 'MIME-Version: 1.0\n' \ 'Content-type: text/html\n' \ 'Subject: Any subject\n' title = 'My title' msg_content = ' \n'.format(title=title) msg_full = (''.join([msg_header, msg_content])..
sed로 특정 문자열을 포함한 열을 삭제하는 구문은 아래와 같음# sed -i '//d' 그러나 mac 에서는 위와 같이 실행하는 경우 아래와 같이 에러가 발생sed: 1: : command a expects \ followed by text 아래와 같이 실행하면 원본을 .original 확장자가 붙은 파일이름으로 변경시키고 파일을 복사하여 해당 문자열을 제거 sed -i '.original' '//d' Ex) sed -i '.original' '/AAAA/d' file1.txt 실행 시 원본은 file1.txt.original 로 이름이 변경되며, file1.txt 라는 파일이 하나 복사됨file1.txt 에서 AAAA가 포함된 라인이 삭제됨
# /bin/version.sh # java -cp /lib/catalina.jar org.apache.catalina.util.ServerInfo
- nxlog 윈도 agent download 및 설치https://nxlog.co/products/nxlog-community-edition/download - C:\program files(x86)\nxlog\conf\nxlog.conf ------------------------------------------------------------------#define ROOT C:\Program Files\nxlogdefine ROOT C:\Program Files (x86)\nxlog Moduledir %ROOT%\modulesCacheDir %ROOT%\dataPidfile %ROOT%\data\nxlog.pidSpoolDir %ROOT%\dataLogFile %ROOT%\data\nxlog.lo..
- three VERY useful command-line utilities
- python-evtxhttp://www.williballenthin.com/evtx/index.htmlhttps://github.com/williballenthin/python-evtx
http://l5.appkr.kr/