일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- G-suite
- freebsd
- hardening
- elastic stack
- PlayBook
- miniconda
- Proxy
- pfsense
- Kibana
- macos
- Kibana server is not ready yet
- GitLab
- ansible
- ELASTIC
- Windows
- 로그인불가
- 한글가이드
- endpoint security
- XCP-ng
- proxycfg
- Elasticsearch
- 보안양파
- docker
- centos 8
- ssh key 배포
- x-pack
- application security
- bash
- xe guest utilities
- Today
- Total
목록IT (650)
선 밖에 선 자유인
http://storycompiler.tistory.com/111 * expr 정규 표현식의 예# expr "-rw-r--r--" : '.\(.*\)' => 결과 rw-r--r-- # expr "-rw-r--r--" : '...\(.*\)' => 결과 -r--r-- '.' 은 한개의 문자를 나타내므로 그 개수만큼 제거하고 ( ) 안의 문자들만 출력함
http://ssambback.tistory.com/entry/Linux-password-%EB%B3%B4%EC%95%88%EC%A0%95%EC%B1%85 위의 cracklib.so 를 이용한 계정 보안을 설정하기 위해서는 아래의 패키지를 설치해야 한다. $ sudo apt-get install libpam-cracklib
- grephttp://miniyo78.tistory.com/entry/grep-%EB%AA%85%EB%A0%B9%EC%96%B4 http://slgi97.egloos.com/10947881
http://blog.nacyot.com/articles/2014-01-27-easy-deploy-with-docker/
여러줄에 일일히 # 넣기 힘듬 Ctrl + V 입력하면 visual VISUAL BLOCK 지정 가능vi 위, 아래 키 이용해서 영역 지정 후Shift + i 를 입력한 후 # 입력ESC를 탁탁 눌러주면 여러줄 주석 처리 됨 or 아래와 같이 line 지정하여 주석 처리 가능10,100s/^/#/g
Apache Tomcat Hardening and Security Guide : https://geekflare.com/apache-tomcat-hardening-and-security-guide/ Securing Tomcathttps://www.owasp.org/index.php/Securing_tomcat
레드햇 리눅스의 Systme Audit 관련 내용 : https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Security_Guide/chap-system_auditing.html
아래의 파일에서 xxx가 포함된 첫째 줄만 출력 하려고 하는 경우 예) # cat test.txt aaa xxx bbb xxx grep "xxx" | awk '{print $2}' 의 결과로 xxx가 포함된 결과는 두 줄이 출력됨 if와 NR (현재 레코드 행 번호를 나타내는 내부 미리 정의된 변수) 를 이용하여 아래와 같이 작성 grep "xxx" test.txt | awk '{ if (NR==1) print $2 }' or grep "xxx" test.txt | awk '{ if ($1=="aaa") print $2 }' # 마지막 컬럼 출력 awk -F "" '{print $NR}'