일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- pfsense
- miniconda
- ELASTIC
- elastic stack
- ansible
- 한글가이드
- application security
- PlayBook
- centos 8
- endpoint security
- G-suite
- hardening
- Proxy
- proxycfg
- bash
- xe guest utilities
- 보안양파
- macos
- freebsd
- Windows
- 로그인불가
- x-pack
- Kibana server is not ready yet
- docker
- Elasticsearch
- Kibana
- GitLab
- ssh key 배포
- XCP-ng
- Today
- Total
목록전체 글 (677)
선 밖에 선 자유인
#!/usr/bin/perl -w use strict; ### 3대 기본 구조 #### # 스칼라 my $scalar_A = "A single thing"; my $scalar_B = 42; print "Scalar A = [$scalar_A] and Scalar_B = [$scalar_B]\n"; # 배열 my @array_A = ("a", "list", "of", "things"); my @array_B = (3,7,21,24); print "Array_A = [@array_A] and Array_B = [@array_B]\n"; # 해시 배열 my %hasharray; $hasharray{"Roelof"} = "Temmingh"; $hasharray{"Haroon"} = "Meer"; $hashar..
최근들어 리버스 엔지니어링(역공학)에 관심을 많으신분들이 늘어났습니다. 하지만 역공학은 해보고 싶은데 어떻게 준비해야될지 모르시는 분들을 위해 어떻게 준비해나가야 하는지를 서술할 예정입니다. 물론 제가 실력이 뛰어난 편이 아니기 때문에 잘못된 정보 혹은 더 좋은 설명 방식이 있으시면 적극적으로 리플 혹은 메일을 보내주시면. 참고 하여 고치겠습니다. (메일은 머릿말 아래 '더보기'를 누르시면 있습니다.) -------------------------------------------------------------------------------------------------------- 리버스 엔지니어링을 준비하기 이전에 선행 이해도가 필요합니다. 1. 기본적인 프로그래밍 지식 (절차 지향, 객체 지향 ..
명령어 설 명 Data Transfer MOV Move 데이터 이동 (전송) PUSH Push 오퍼랜드의 내용을 스택에 쌓는다 POP Pop 스택으로부터 값을 뽑아낸다. XCHG Exchange Register/ memory with Register 첫 번째 오퍼랜드와 두 번째 오퍼랜드 교환 IN Input from AL/AX to Fixed port 오퍼랜드로 지시된 포트로부터 AX에 데이터 입력 OUT Output from AL/AX to Fixed port 오퍼랜드가 지시한 포트로 AX의 데이터 출력 XLAT Translate byte to AL BX:AL이 지시한 데이블의 내용을 AL로 로드 LEA Load Effective Address to Register 메모리의 오프셋값을 레지스터로 로드 ..
snort 설치전 libpcap 라이브러리와 pcre가 설치되어있는지 rpm -qa|grep libpcap pcre로 확인 깔려있지 않다면 yum 을 이용하여 설치 # yum install libpcap libpcap-devel # yum install pcre pcre-devel snort 최신 버전 다운 # wget http://www.snort.org/dl/current/snort-2.8.4.tar.gz 컴파일 환경설정 및 컴파일, 설치 # ./configure --prefix=/usr/local/snort --sysconfdir=/etc/snort --with-mysql=/usr/local/mysql –enable -dynamic # make && make install 만일 snort IDS와 ..