1Password 로그 수집

다음에서 지원:

이 문서에서는 Bindplane을 사용하여 1Password 로그를 Google Security Operations에 수집하는 방법을 설명합니다. 파서는 원시 JSON 형식 로그 데이터를 Google SecOps 통합 데이터 모델 (UDM)을 준수하는 구조화된 형식으로 변환합니다. 특히 사용자 로그인 시도와 관련된 이벤트를 정규화하고 보강하는 데 중점을 두어 사용자, 위치, 클라이언트 정보, 시도 결과에 관한 세부정보를 추출합니다.

시작하기 전에

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

  • Google SecOps 인스턴스
  • Windows 2016 이상 또는 systemd가 있는 Linux 호스트
  • 프록시 뒤에서 실행하는 경우 방화벽 포트가 열려 있음
  • 1Password에 대한 액세스 권한 관리

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

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

Google SecOps 고객 ID 가져오기

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

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 파일을 수정합니다.

    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: '/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
            ingestion_labels:
                log_type: 'ONEPASSWORD'
                raw_log_field: body
    
    service:
        pipelines:
            logs/source0__chronicle_w_labels-0:
                receivers:
                    - udplog
                exporters:
                    - chronicle/chronicle_w_labels
    
  3. 인프라에 필요한 대로 포트와 IP 주소를 바꿉니다.

  4. <customer_id>를 실제 고객 ID로 바꿉니다.

  5. Google SecOps 수집 인증 파일 가져오기 섹션에서 인증 파일이 저장된 경로로 /path/to/ingestion-authentication-file.json를 업데이트합니다.

변경사항을 적용하려면 Bindplane 에이전트를 다시 시작하세요.

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

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

    net stop BindPlaneAgent && net start BindPlaneAgent
    

1Password API 토큰 가져오기

  1. 1Password 웹 UI에 로그인합니다.
  2. 통합으로 이동합니다.
  3. 페이지 상단에서 디렉터리를 클릭합니다.
  4. 토큰 이름을 입력하고 토큰 만료를 설정합니다.
  5. 이벤트 보고에서 기타를 클릭합니다.
  6. 해당 이벤트 유형을 선택합니다.
  7. Issue Token(토큰 발급)을 클릭하여 액세스 토큰 키를 생성합니다.
  8. 1Password에 저장을 클릭하고 토큰을 저장할 보관함을 선택합니다.
  9. 통합 세부정보 보기를 클릭하여 토큰을 확인합니다.

다음 항목을 실행하도록 Linux 호스트를 구성합니다.

  • 다음 명령어를 실행합니다.

      import datetime
      import requests
      import os
      import socket
      import json
    
    # For more information, check out the support page: https://support.1password.com/events-reporting
    
      api_token = os.environ.get('EVENTS_API_TOKEN')
      url = "https://events.1password.com"
      if not api_token:
          print("Please set the EVENTS_API_TOKEN environment variable.")
          exit(1)
      start_time = datetime.datetime.now() - datetime.timedelta(hours=24)
    
    # Define the bindplane agent details
    
      syslog_server_ip = <ip-address> # Replace with your Bindplane IP
      syslog_server_port = <port-number> # Replace with your Bindplane port
      headers = {
          "Content-Type": "application/json",
          "Authorization": f"Bearer {api_token}"
      payload = {
          "limit": 20,
          "start_time": start_time.astimezone().replace(microsecond=0).isoformat()
    
    # Alternatively, use the cursor returned from previous responses to get any new events
      # payload = { "cursor": cursor }
      try:
          r = requests.post(f"{url}/api/v1/signinattempts", headers=headers, json=payload)
          r.raise_for_status()  # Raise an exception if the request fails
          if r.status_code == requests.codes.ok:
    
    # Send the response to the bindplane server
              syslog_message = f"{json.dumps(r.json())}"
              with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock:
                  sock.connect((syslog_server_ip, syslog_server_port))
                  sock.sendall(f"{syslog_message}\n".encode())
          else:
              print(f"Error getting sign-in attempts: status code {r.status_code}")
      except requests.exceptions.RequestException as e:
          print(f"Request error: {e}")
      except Exception as e:
          print(f"Error during syslog logging: {e}")
    

UDM 매핑 테이블

로그 필드 UDM 매핑 논리
카테고리 security_result.category_details 값은 원시 로그의 category 필드에서 가져옵니다.
client.app_name principal.application 값은 원시 로그의 client.app_name 필드에서 가져옵니다.
client.app_version metadata.product_version 값은 원시 로그의 client.app_version 필드에서 가져옵니다.
client.ip_address principal.ip 값은 원시 로그의 client.ip_address 필드에서 가져옵니다.
client.os_name principal.platform 이 값은 원시 로그의 client.os_name 필드에서 가져와 해당 UDM 플랫폼 값 (LINUX, WINDOWS, MAC)에 매핑됩니다.
client.os_version principal.platform_version 값은 원시 로그의 client.os_version 필드에서 가져옵니다.
client.platform_name principal.resource.attribute.labels.key: platform_name, principal.resource.attribute.labels.value: Chrome 값은 원시 로그의 client.platform_name 필드에서 가져옵니다.
client.platform_version principal.asset.platform_software.platform_version 값은 원시 로그의 client.platform_version 필드에서 가져옵니다.
국가 principal.location.country_or_region location.country이 없는 경우 값은 원시 로그의 country 필드에서 가져옵니다.
item_uuid security_result.about.resource.attribute.labels.key: item_uuid, security_result.about.resource.attribute.labels.value: nx4f2lhmafhhfkvgid6ff2fyh4 값은 원시 로그의 item_uuid 필드에서 가져옵니다.
location.city principal.location.city 값은 원시 로그의 location.city 필드에서 가져옵니다.
location.country principal.location.country_or_region 값은 원시 로그의 location.country 필드에서 가져옵니다.
location.latitude principal.location.region_latitude 값은 원시 로그의 location.latitude 필드에서 가져옵니다.
location.longitude principal.location.region_longitude 값은 원시 로그의 location.longitude 필드에서 가져옵니다.
location.region principal.location.name 값은 원시 로그의 location.region 필드에서 가져옵니다.
session.ip principal.ip 값은 원시 로그의 session.ip 필드에서 가져옵니다.
session_uuid network.session_id 값은 원시 로그의 session_uuid 필드에서 가져옵니다.
target_user.email target.user.email_addresses 값은 원시 로그의 target_user.email 필드에서 가져옵니다.
target_user.uuid target.user.userid 값은 원시 로그의 target_user.uuid 필드에서 가져옵니다.
타임스탬프 metadata.event_timestamp.seconds, metadata.event_timestamp.nanos 값은 원시 로그의 timestamp 필드에서 가져와 초 및 나노초로 변환됩니다.
유형 additional.fields.key: type, additional.fields.value.string_value: mfa_ok 값은 원시 로그의 type 필드에서 가져옵니다.
user.email principal.user.email_addresses 값은 원시 로그의 user.email 필드에서 가져옵니다.
user.name principal.user.user_display_name 값은 원시 로그의 user.name 필드에서 가져옵니다.
used_version additional.fields.key: used_version, additional.fields.value.string_value: 1 값은 원시 로그의 used_version 필드에서 가져옵니다.
uuid principal.resource.attribute.labels.key: uuid, principal.resource.attribute.labels.value: EPNGUJLHFVHCXMJL5LJQGXTENA 값은 원시 로그의 uuid 필드에서 가져옵니다.
vault_uuid security_result.about.resource.attribute.labels.key: vault_uuid, security_result.about.resource.attribute.labels.value: lddjidoxtrxteclqhubbo3pkyq 값은 원시 로그의 vault_uuid 필드에서 가져옵니다.
해당 사항 없음 extensions.auth 이 필드에 빈 객체가 생성됩니다.
해당 사항 없음 metadata.event_type categorysuccess 또는 firewall_reported_success인 경우 값은 USER_LOGIN으로 설정되고, 사용자 정보가 없는 경우 STATUS_UPDATE, 그 외의 경우 USER_UNCATEGORIZED으로 설정됩니다.
해당 사항 없음 metadata.log_type 값은 ONEPASSWORD로 설정됩니다.
해당 사항 없음 metadata.product_name 값은 ONEPASSWORD로 설정됩니다.
해당 사항 없음 metadata.vendor_name 값은 ONEPASSWORD로 설정됩니다.
해당 사항 없음 security_result.action categorysuccess 또는 firewall_reported_success인 경우 값은 ALLOW로 설정되고, categorycredentials_failed, mfa_failed, modern_version_failed 또는 firewall_failed인 경우 값은 BLOCK로 설정되며, 그 외의 경우에는 비어 있습니다.

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