일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- centos 8
- pfsense
- bash
- xe guest utilities
- Windows
- Kibana server is not ready yet
- 한글가이드
- endpoint security
- ssh key 배포
- ELASTIC
- hardening
- Kibana
- proxycfg
- application security
- Proxy
- freebsd
- docker
- GitLab
- 보안양파
- miniconda
- 로그인불가
- XCP-ng
- x-pack
- PlayBook
- macos
- Elasticsearch
- G-suite
- ansible
- elastic stack
- Today
- Total
목록IT (650)
선 밖에 선 자유인
- recursive를 통해 하위 디렉터리에서 내용 추출 # 패턴으로 검색 find ./ -name '*.gz' -exec zgrep "" {} \; # regex를 통해 확장자 검색 find ./ -name '*.gz' -exec zgrep -E -i "\.xls|\.xlsx|.pdf" {} \;
Windows 에서 사용자 SID 확인 방법cmd> wmic useraccount get name, sid - 보안 식별자에 대한 기술 개요https://technet.microsoft.com/ko-kr/library/dn743661(v=ws.11).aspx - well known SID Listhttps://support.microsoft.com/en-us/kb/243330 정리해 보았다 SID Name S-1-0 Null Authority S-1-0-0 Nobody S-1-1 World Authority S-1-1-0 Everyone S-1-2 Local Authority S-1-2-0 Local S-1-2-1 Console Logon S-1-3 Creator Authority S-1-3-0 Crea..
https://www.pcisecuritystandards.org/document_library?category=saqs
hosts.txt 파일에 저장된 host에 ping check --------------------------------------------------------@echo offsetLocal EnableDelayedExpansion for /f "tokens=* delims= " %%a in (hosts.txt) do (ping %%a)--------------------------------------------------------
가끔 UTF-8 포맷으로 저장된 csv 파일의 경우 엑셀이나 여러 프로그램에서 한글이 깨짐. 막 깨짐 간단한 파이썬 코드로 EUC-KR로 포맷 변경 #!/usr/bin/python import codecs infile = codecs.open('test.csv', 'r', encoding='utf-8') outfile = codecs.open('test2.csv', 'w', encoding='euc_kr') for line in infile: line = line.replace(u'\xa0', ' ') # 가끔 \xa0 문자열로 인해 오류가 발생하므로 변환 outfile.write(line) infile.close() outfile.close() 응용: 쉘 스크립트를 이용해 해당 디렉토리의 파일들 모두 ..
CentOS 한글 설정 방법 #UTF-8 /etc/sysconfig/i18nLANG="ko_KR.UTF-8"SUPPORTED="en_US.UTF-8:en_US:en:ko_KR.UTF-8:ko_KR:ko"SYSFONT="latarcyrheb-sun16"SYSFONTACM="8859-15" /etc/profileexport LC_ALL="ko_KR.UTF-8"export LANG="ko_KR.UTF-8" #EUC-KR /etc/sysconfig/i18nLANG="ko_KR.EUC-KR"SUPPORTED="en_US.UTF-8:en_US:en:ko_KR.UTF-8:ko_KR:ko"SYSFONT="latarcyrheb-sun16"
- 리눅스 Banner 파일 정보/etc/issue : 로컬 접속 시 보여주는 메시지 (로그인 전)/etc/issue.net : 원격 접속 시 보여주는 메시지 (로그인 전)/etc/motd : 로컬접속, 원격접속 모두 로그인 성공 후 보여주는 메시지 (로그인 후) ssh_config 파일에는 Banner /etc/isssue.net 으로 지정