Cisco PIX 로그 수집

다음에서 지원:

이 문서에서는 Bindplane을 사용하여 Cisco PIX 로그를 Google Security Operations에 수집하는 방법을 설명합니다. 파서는 정규 표현식 (grok 패턴)과 조건부 논리를 사용하여 방화벽 syslog 메시지에서 필드를 추출합니다. 그런 다음 추출된 필드를 통합 데이터 모델 (UDM)에 매핑하여 소스 및 대상 IP 주소의 존재 여부에 따라 이벤트를 네트워크 연결, 상태 업데이트 또는 일반 이벤트로 분류합니다.

시작하기 전에

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

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

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

    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: 'CISCO_PIX_FIREWALL'
            raw_log_field: body
            ingestion_labels:
    
    service:
        pipelines:
            logs/source0__chronicle_w_labels-0:
                receivers:
                    - udplog
                exporters:
                    - chronicle/chronicle_w_labels
    
    • 인프라에 필요한 대로 포트와 IP 주소를 바꿉니다.
    • <customer_id>를 실제 고객 ID로 바꿉니다.
    • Google SecOps 수집 인증 파일 가져오기 섹션에서 인증 파일이 저장된 경로로 /path/to/ingestion-authentication-file.json를 업데이트합니다.

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

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

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

    net stop BindPlaneAgent && net start BindPlaneAgent
    

Cisco PIX 방화벽에서 Syslog 구성

  1. SSH 또는 콘솔 연결을 사용하여 Cisco PIX 어플라이언스에 로그인합니다.
  2. 권한 모드에 다음을 입력합니다.

    enable
    
  3. 구성 모드의 경우 다음 명령어를 입력합니다.

    conf t
    
  4. 다음 명령어를 입력하여 로깅 및 타임스탬프를 사용 설정합니다.

    logging on
    logging timestamp
    
  5. 다음 명령어를 입력하여 로그 수준을 구성합니다.

    logging trap information
    
  6. 다음 명령어를 입력하여 syslog 정보를 구성합니다.

    logging host <interface> <bindplane_IP_address>
    
    • <interface>를 Bindplane 에이전트에 액세스할 수 있는 인터페이스로 변경합니다.
    • <bindplane_IP_address>를 실제 Bindplane 에이전트 IP 주소로 변경합니다.

UDM 매핑 테이블

로그 필드 UDM 매핑 논리
datetime metadata.event_timestamp.seconds 추출된 타임스탬프를 에포크 초로 변환합니다.
datetime metadata.event_timestamp.nanos 추출된 타임스탬프를 에포크 나노초로 변환합니다.
설명 metadata.description 추출된 descrip 필드에서 직접 매핑됨
observer_ip observer.ip 추출된 observer_ip 필드에서 직접 매핑됨
proto network.ip_protocol 대문자로 변환된 후 추출된 proto 필드에서 직접 매핑됩니다. 값이 UDP, TCP 또는 ICMP인 경우에만 매핑됩니다.
src_ip principal.ip 추출된 src_ip 필드에서 직접 매핑됨
src_port principal.port 정수로 변환된 후 추출된 src_port 필드에서 직접 매핑됨
facility principal.resource.type 추출된 facility 필드에서 직접 매핑됨
action security_result.action_details 추출된 action 필드에서 직접 매핑됨
severity_level security_result.severity severity_level 값에 따라 매핑됨:
- 7, 6: INFORMATIONAL
- 5: LOW
- 4: MEDIUM
- 3: ERROR
- 2: HIGH
- 그 외: CRITICAL
dest_ip target.ip 추출된 dest_ip 필드에서 직접 매핑됨
dest_port target.port 정수로 변환된 후 추출된 dest_port 필드에서 직접 매핑됨
direction network.direction direction 필드가 inbound인 경우 INBOUND에 매핑됨
metadata.event_timestamp.seconds 최상위 'create_time.seconds' 필드에서 가져온 값
metadata.event_timestamp.nanos 최상위 'create_time.nanos' 필드에서 가져온 값
metadata.event_type src_ip 및 dest_ip의 존재 여부에 따라 결정됩니다.
- 둘 다 있음: NETWORK_CONNECTION
- src_ip만 있음: STATUS_UPDATE
- 그 외: GENERIC_EVENT
metadata.product_event_type facility, -, severity_level, -, mnemonic 필드의 연결입니다.
metadata.product_name 하드코딩된 값: CISCO_FWSM
metadata.vendor_name 하드코딩된 값: CISCO
security_result.action action 필드가 Deny, Teardown, denied 또는 Denied 중 하나인 경우 BLOCK에 매핑됩니다.

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