For the complete documentation index, see llms.txt. This page is also available as Markdown.

Okta 로그 쿼리

이 페이지에는 Okta 로그 데이터에 대한 Panther 쿼리 예제가 포함되어 있습니다

아래에는 Okta 이벤트를 조사하고 학습하는 데 시작점이 될 몇 가지 쿼리가 있습니다. 이 쿼리들은 기존 로그 데이터를 조사하기 위한 것입니다. 새로 유입되는 데이터를 감지하는 데 관심이 있다면, 다음을 활성화하는 것을 고려하세요 여기에서 Panther가 관리하는 Okta 탐지 항목.

다음 쿼리들은 별도로 명시되지 않는 한 Snowflake SQL 구문으로 작성되었습니다.

최근 7일간 사용자별 로그인 상위

-- 최근 7일간 사용자별 로그인 상위
SELECT actor:alternateId as actor, COUNT(*) as total
FROM panther_logs.public.okta_systemlog 
WHERE eventtype = 'user.authentication.sso' 
  and outcome:result = 'SUCCESS' 
  and p_occurs_since(7d)
GROUP BY actor
ORDER BY total desc

최근 1일간 시간별 로그인

-- 최근 1일간 시간별 로그인
SELECT  
  time_slice(p_event_time, 1, 'HOUR', 'START') as "start",
  time_slice(p_event_time, 1, 'HOUR', 'END') as "end",
  count(*) as "logins",
  count(distinct(actor:alternateId)) as "users"
FROM panther_logs.public.okta_systemlog 
WHERE eventtype = 'user.authentication.sso' 
  and outcome:result = 'SUCCESS' 
  and p_occurs_since(1d)
GROUP BY "start", "end"
ORDER BY "start" desc

최근 7일간 상위 애플리케이션

최근 7일간 실패한 사용자 상위

최근 7일간 사유별 로그인 실패

최근 7일간 가짜 계정 로그인 시도

Okta 조직에 대한 Okta Support 접근 식별

Okta에서 Admin 권한이 부여된 모든 사용자 식별

마지막 업데이트

도움이 되었나요?