ExtraHop DNS 로그 수집

다음에서 지원:

이 문서에서는 Bindplane을 사용하여 ExtraHop DNS 로그를 Google Security Operations에 수집하는 방법을 설명합니다. 파서는 원시 메시지 문자열에서 JSON 형식 로그를 추출하고 이벤트를 삭제하여 JSON이 아닌 데이터를 처리합니다. 그런 다음 추출된 JSON의 특정 필드를 통합 데이터 모델 (UDM) 스키마의 해당 필드에 매핑하여 데이터 유형을 변환하고 다양한 DNS 응답 구조를 처리하여 일관된 표현을 보장합니다.

시작하기 전에

다음 기본 요건이 충족되었는지 확인합니다.

  • Google SecOps 인스턴스
  • Windows 2016 이상 또는 systemd가 설치된 Linux 호스트
  • 프록시 뒤에서 실행하는 경우 방화벽 포트가 열려 있는지 확인
  • ExtraHop DNS에 대한 액세스 권한

Google SecOps 수집 인증 파일 가져오기

  1. Google SecOps 콘솔에 로그인합니다.
  2. SIEM 설정 > 수집 에이전트로 이동합니다.
  3. 수집 인증 파일을 다운로드합니다. Bindplane이 설치될 시스템에 파일을 안전하게 저장합니다.

Google SecOps 고객 ID 가져오기

  1. Google SecOps 콘솔에 로그인합니다.
  2. SIEM 설정 > 프로필로 이동합니다.
  3. 조직 세부정보 섹션에서 고객 ID를 복사하여 저장합니다.

Bindplane 에이전트 설치

다음 안내에 따라 Windows 또는 Linux 운영체제에 Bindplane 에이전트를 설치합니다.

Windows 설치

  1. 명령 프롬프트 또는 PowerShell을 관리자로 엽니다.
  2. 다음 명령어를 실행합니다.

    msiexec /i "https://github.com/observIQ/bindplane-agent/releases/latest/download/observiq-otel-collector.msi" /quiet
    

Linux 설치

  1. 루트 또는 sudo 권한으로 터미널을 엽니다.
  2. 다음 명령어를 실행합니다.

    sudo sh -c "$(curl -fsSlL https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh)" install_unix.sh
    

추가 설치 리소스

추가 설치 옵션은 설치 가이드를 참고하세요.

Syslog를 수집하여 Google SecOps로 전송하도록 Bindplane 에이전트 구성

  1. 구성 파일에 액세스합니다.
    • config.yaml 파일을 찾습니다. 일반적으로 Linux에서는 /etc/bindplane-agent/ 디렉터리에 있고 Windows에서는 설치 디렉터리에 있습니다.
    • 텍스트 편집기 (예: nano, vi, 메모장)를 사용하여 파일을 엽니다.
  2. 다음과 같이 config.yaml 파일을 수정합니다. yaml receivers: udplog: # Replace the port and IP address as required listen_address: "0.0.0.0:514" exporters: chronicle/chronicle_w_labels: compression: gzip # Adjust the path to the credentials file you downloaded in Step 1 creds_file_path: '/path/to/ingestion-authentication-file.json' # Replace with your actual customer ID from Step 2 customer_id: <customer_id> endpoint: malachiteingestion-pa.googleapis.com # Add optional ingestion labels for better organization log_type: 'EXTRAHOP_DNS' raw_log_field: body ingestion_labels: service: pipelines: logs/source0__chronicle_w_labels-0: receivers: - udplog exporters: - chronicle/chronicle_w_labels
  • 인프라에 필요한 대로 포트와 IP 주소를 바꿉니다.

Bindplane 에이전트를 다시 시작하여 변경사항 적용

  • Linux에서 Bindplane 에이전트를 다시 시작하려면 다음 명령어를 실행합니다.

    sudo systemctl restart bindplane-agent
    
  • Windows에서 Bindplane 에이전트를 다시 시작하려면 서비스 콘솔을 사용하거나 다음 명령어를 입력하면 됩니다.

    net stop BindPlaneAgent && net start BindPlaneAgent
    

ExtraHop Open Data Stream (DNS)용 Syslog 구성

  1. https://<extrahop-hostname-or-IP-address>/admin를 사용하여 ExtraHop Administration에 로그인합니다.
  1. 시스템 구성 > 데이터 스트림 열기로 이동합니다.
  2. 대상 추가를 클릭합니다.
  3. 대상 유형 드롭다운에서 Syslog를 선택합니다.
  4. 다음 구성 세부정보를 제공합니다.
    • 이름: 타겟을 식별할 수 있는 고유한 이름을 입력합니다.
    • 호스트: Bindplane 에이전트 IP 주소를 입력합니다.
    • 포트: Bindplane 에이전트 포트 번호를 입력합니다.
    • 프로토콜: Bindplane 구성에 따라 UDP 또는 TCP를 선택합니다.
    • (선택사항) 현지 시간대의 타임스탬프와 함께 syslog 정보를 보내려면 현지 시간을 선택합니다.
    • 테스트를 클릭합니다.
  5. 저장을 클릭합니다.

UDM 매핑 테이블

로그 필드 UDM 매핑 논리
ans.data network.dns.answers.data 원시 로그의 answers 배열 내 data 필드에서 추출됩니다.
ans.name network.dns.answers.name 원시 로그의 answers 배열 내 name 필드에서 추출됩니다.
ans.ttl network.dns.answers.ttl 원시 로그의 answers 배열 내 ttl 필드에서 추출됩니다. uinteger로 변환됩니다.
ans.typeNum network.dns.answers.type 원시 로그의 answers 배열 내 typeNum 필드에서 추출됩니다. uinteger로 변환됩니다.
ans_data network.dns.answers.data answers 배열이 없는 경우 원시 로그의 ans_data 필드에서 추출됩니다.
ans_name network.dns.answers.name answers 배열이 없는 경우 원시 로그의 ans_name 필드에서 추출됩니다.
ans_ttl network.dns.answers.ttl answers 배열이 없는 경우 원시 로그의 ans_ttl 필드에서 추출됩니다. uinteger로 변환됩니다.
client_ip principal.ip 원시 로그의 client_ip 필드에서 추출됩니다.
dns_type network.dns.response 값이 'response'이면 'true'로 매핑되고, 그렇지 않으면 매핑되지 않습니다. boolean로 전환됩니다.
dst_ip target.ip 원시 로그의 dst_ip 필드에서 추출됩니다.
ip_or_host intermediary.hostname ip_or_host이 유효한 IP 주소가 아닌 경우 intermediary.hostname에 매핑됩니다.
ip_or_host intermediary.ip ip_or_host가 유효한 IP 주소인 경우 intermediary.ip에 매핑됩니다.
opcode network.dns.opcode 원시 로그의 opcode 필드에서 추출됩니다. 작업 코드 문자열에 따라 숫자 값에 매핑됩니다 (예: 'QUERY' -> 0). uinteger로 변환됩니다.
qname network.dns.questions.name 원시 로그의 qname 필드에서 추출됩니다.
qtype network.dns.questions.type 원시 로그의 qtype 필드에서 추출됩니다. 레코드 유형 문자열 (예: 'A' -> 1). uinteger로 변환됩니다.
metadata.event_type NETWORK_DNS로 설정합니다.
metadata.log_type EXTRAHOP_DNS로 설정합니다.
network.application_protocol DNS로 설정합니다.

도움이 더 필요하신가요? 커뮤니티 회원 및 Google SecOps 전문가로부터 답변을 받으세요.