일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ansible
- freebsd
- miniconda
- ssh key 배포
- macos
- xe guest utilities
- pfsense
- application security
- endpoint security
- Elasticsearch
- 한글가이드
- Kibana
- GitLab
- PlayBook
- elastic stack
- bash
- ELASTIC
- docker
- hardening
- XCP-ng
- G-suite
- x-pack
- centos 8
- Windows
- Proxy
- Kibana server is not ready yet
- proxycfg
- 로그인불가
- 보안양파
- Today
- Total
목록All Story (677)
선 밖에 선 자유인
https://redmine.openinfosecfoundation.org/projects/suricata/wiki/FreeBSD_8 Pre-installation requirements Before you can build Suricata for your system, run the following command to ensure that you have everything you need for the installation.Make sure you enter all commands as root/super-user, otherwise it will not work. pkg_add -r autoconf262 automake19 gcc45 libyaml pcre libtool \libnet11 lib..
출처 : https://redmine.openinfosecfoundation.org/projects/suricata/wiki/CentOS_56_Installation Pre-installation requirements You will have to use the Fedora EPEL repository for some packages to enable this repository. It is the same for i386 and x86_64: sudo rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/x86_64/epel-release-5-4.noarch.rpmBefore you can build Suricata for your system, run th..
vi ~/.vimrcset autoindent " 자동으로 들여쓰기를 한다.set cindent " C 프로그래밍을 할때 자동으로 들여쓰기를 한다.set smartindent " 좀더 똑똑한 들여쓰기를 위한 옵션이다.set textwidth=79 " 만약 79번째 글자를 넘어가면 set wrap " 자동으로 를 삽입하여 다음 줄로 넘어간다.set nowrapscan " 검색할 때 문서의 끝에서 다시 처음으로 돌아가지 않는다.set nobackup " 백업 파일을 만들지 않는다.set visualbell " 키를 잘못눌렀을 때 삑 소리를 내는 대신 번쩍이게 한다.set ruler " 화면 우측 하단에 현재 커서의 위치(줄,칸)를 보여준다.set tabstop=4 " Tab을 눌렀을 때 8칸 대신 4칸 이동..
/etc/udev/rules.d/70-persistent-net.rules 수정 여기서 두번째 (빨간색) 놈은, 부팅 하면서 udev 가 추가해준 것이다. 즉, 현재 설정이다. 오른쪽에 보면 현재 MAC Address 가 있는걸 볼 수 있다. 또, 가장 마지막에 보면 NAME="eth1" 으로 되어있다. 그럼, 간단하게, 위에있는놈을 삭제해주고, NAME="eth1" 을 eth0 으로 바꿔주고 시스템을 reboot
- gpg-key 관련 gpg --keyserver keyserver.ubuntu.com --recv 4874D3686E80C6B7 gpg --export --armor 4874D3686E80C6B7 | sudo apt-key add - sudo apt-get update 무선 네트워크 설정 관련 http://houseforce.blog.me/120014658820 http://n0fate.springnote.com/pages/882108 gpg --keyserver keyserver.ubuntu.com --recv 4874D3686E80C6B7 gpg --export --armor 4874D3686E80C6B7 | sudo apt-key add - sudo apt-get update apt-key ad..
커널 오브젝트(Kernel Object) : Windows 운영체제가 프로세스, 스레드, 파일과 같은 리소스들을 원활히 관리하기 위해 필요한 정보가 저장된 메모리 블록. 오브젝트 핸들(HANDLE)을 이용한 커널 오브젝트 조작 - 프로세스 우선 순위 변경 BOOL SetPriorityClass( HANDLE hProcess,// 우선 순위를 변경할 프로세스의 핸들 전달 DWORD dwpriorityClass// 새롭게 적용할 우선순위 정보 전달 ); // if the function fails, the return value is zero. // if the function fails, the return value is zero. - 프로세스의 핸들 정보 알아내기 HANDLE GetCurrentProc..
GetLastError.cpp #include #include #include int _tmain(void) { HANDLE hFile = CreateFile(// Windows System 함수 _T("ABC.DAT"), GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); if(hFile == INVALID_HANDLE_VALUE)// 함수 호출 실패할 경우 INVALID_HANDLE_VALUE 반환 { _tprintf(_T("error code : %d \n"), GetLastError() ); return 0; } return 0; } ErrorStateChange.cpp #include #includ..