Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- centos 8
- GitLab
- freebsd
- ELASTIC
- elastic stack
- 보안양파
- Elasticsearch
- Kibana server is not ready yet
- application security
- pfsense
- macos
- endpoint security
- 로그인불가
- miniconda
- Proxy
- G-suite
- proxycfg
- hardening
- Kibana
- ansible
- PlayBook
- ssh key 배포
- x-pack
- xe guest utilities
- XCP-ng
- bash
- 한글가이드
- docker
- Windows
Archives
- Today
- Total
선 밖에 선 자유인
pcap 파일의 구조 본문
struct pcap_file_header{ bpf_u_int32 magic; // 고정 값 0xa1b2c3d4 u_short version_major; // 패킷 파일 포맷 버전 u_short version_minor; // 패킷 파일 포맷 버전 bpf_int32 thiszone; // 시간 관련 bpf_u_int32 sigflgs; // bpf_u_int32 snaplen; // 캡쳐된 패킷 길이 bpf_u_int32 linktype; // 데이터 링크 타입 };- pcap 파일 헤더 구조체 -
typedef struct pcaprec_hdr_s{ guint32 ts_secc; // timestamp seconds guint32 ts_usec; // timestamp microseconds guint32 incl_len; // number of octets of packet saved in file guint32 orig_len; // actual length of packet }pcaprec_hdr_t;- pcap 레코드 헤더 구조체 -
Comments