일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- hardening
- bash
- G-suite
- Kibana server is not ready yet
- freebsd
- proxycfg
- x-pack
- docker
- 로그인불가
- Proxy
- Elasticsearch
- GitLab
- xe guest utilities
- Windows
- ssh key 배포
- miniconda
- elastic stack
- ansible
- Kibana
- centos 8
- endpoint security
- application security
- 한글가이드
- XCP-ng
- macos
- PlayBook
- ELASTIC
- pfsense
- 보안양파
- Today
- Total
목록IT (650)
선 밖에 선 자유인
- Modern Binary Exploitation - CSCI 4968http://security.cs.rpi.edu/courses/binexp-spring2015/https://github.com/RPISEC/MBE (자료)
- ANSIBLE Cheat Sheet from Jon Warbrickhttps://gist.github.com/andreicristianpetcu/b892338de279af9dac067891579cad7d
https://www.apriorit.com/dev-blog/363-how-to-reverse-engineer-os-x-and-ios-softwarehttps://github.com/michalmalik/osx-re-101
https://www.sans.org/reading-room/whitepapers/forensics/mac-os-malware-analysis-33178
exec < $1while read line do echo $line done while read line do echo $line done < $1 - 컬럼 별로 읽을 때 (test.txt)A B C D EF G H I J while read A B Cdo echo "${A},${B},${C}"done < test.txt
https://live8wire.wordpress.com/network/vlan-trunking-on-virtual-switch-for-vmware-esxi/https://www.vmware.com/content/dam/digitalmarketing/vmware/en/pdf/support/landing-pages/virtual-support-day-best-practices-virtual-networking-june-2012.pdfhttps://kb.vmware.com/s/article/1006628https://kb.vmware.com/s/article/1004074https://kb.vmware.com/s/article/1003825 http://thesolving.com/virtualization/..
여러개의 라인,필드가 있는 csv 파일의 경우 텍스트 처리 - 필드 체크하여 중복된 필드가 포함된 라인 제거 후 출력 (4번째 필드 기준)$ awk -F',' '!x[$4]++ {print $0}' - 정력하면서 출력$ sort -u -t ',' -k4,4 - 특정 필드를 기준으로 sortsort -t ',' -k 3 orsort -t ',' -k 3 -r
VMware ESXi에서 CentOS를 설치하는 경우 VM의 network interface 이름이 eth* 가 아닌 ens* 형식으로 기본 지정됨이 때 아래와 같이 설정하면 변경 가능 # vi /etc/default/grub GRUB_CMDLINE_LINUX=”rd.lvm.lv=rootvg/usrlv rd.lvm.lv=rootvg/swaplv crashkernel=auto vconsole.keymap=us rd.lvm.lv=rootvg/rootlv vconsole.font=latarcyrheb-sun16 rhgb quiet net.ifnames=0 biosdevname=0” # grub2-mkconfig -o /boot/grub2/grub.cfgGenerating grub configuration fi..