안티 바이러스 > 바이러스 조치내역

안티 바이러스 > 바이러스 조치내역 조회

GET https://openapi.exosp.com/logs/v2/anti-virus/virus-control

안티 바이러스 > 바이러스 조치내역을 조회하는 API 입니다.

Query Parameters

항목
타입
설명

offset*

int

((현재 페이지 번호 -1)*tableSize) 현재 페이지의 첫 번째 데이터가 위치한 인덱스를 나타냅니다.

tableSize*

int

페이지 사이즈

startTimeUTC*

string

응답 데이터 시작 시각

UTC 기준, ISO 8601포맷 최신 3개월 이내의 시각만 입력해주세요.

endTimeUTC*

string

응답 데이터 종료 시각 UTC 기준, ISO 8601포맷

sortType*

string

응답 데이터 정렬 유형 (조치 시각 기준) ASC : 오름차순, DESC : 내림차순

timezone

string

응답 데이터 타임존https://en.wikipedia.org/wiki/List_of_tz_database_time_zones 에서 TZ identifier 참고

기본값 : UTC

search

string

검색어

검색 대상 : 사용자 이름, 그룹 이름, 컴퓨터 이름, 파일 이름

기본값 : 빈값

Response Schema

항목
타입
설명

code

int

응답 처리 결과 코드

0 : 성공, 1 : 실패

message

string

응답 처리 결과 메세지

success : 성공, 그 외 : 실패

body

object

body 상세

항목
타입
설명

total

int

전체 레코드 수

data

array

data 상세

항목
타입
설명

name

string

사용자 이름

departmentName

string

그룹 이름

departmentFull

string

그룹 전체 경로

computerName

string

컴퓨터 이름

osType

string

os 유형 windows : 윈도우 , macos : 맥

osUserName

string

os 계정

fileName

string

파일 이름

filePath

string

파일 경로

processHash

string

프로세스 해시(SHA256)

inspectionType

string

검사 유형 Real Time Detection : 실시간 검사,

Scheduled Scan : 예약 검사,

Manual Scan : 수동 검사

virusName

string

바이러스 이름

virusType

string

바이러스 유형

action

string

조치 유형 Quarantined : 격리,

Disinfected : 치료,

Skipped : 처리 안함,

None : 없음

actionResult

string

조치 결과 Success : 성공, Fail : 실패

dateOfEntryUTC

string

조치 시각

UTC 기준, ISO 8601포맷

dateOfEntry

string

조치 시각

요청 타임존 기준, ISO 8601포맷

Example

curl -X 'GET' \
  'https://openapi.exosp.com/logs/v2/anti-virus/virus-control?offset=0&tableSize=1&startTimeUTC=2024-05-01T15%3A00%3A00%2B00%3A00&endTimeUTC=2024-08-01T15%3A00%3A00%2B00%3A00&timezone=Asia%2FSeoul&sortType=DESC' \
  -H 'accept: application/json' \
  -H 'x-exosp-access: YOUR_ACCESS_KEY' \
  -H 'x-exosp-secret: YOUR_ACCESS_SECRET' 

{
  "code": 0,
  "message": "success",
  "body": {
    "total": 317,
    "data": [
      {
          "name": "이시연",
          "departmentName": "웹서비스",
          "departmentFull": "어벤져스 > 제품 > 개발 > 웹서비스",
          "computerName": "DESKTOP-OSP3WGB",
          "osType": "windows",
          "osUserName": "LSY",
          "fileName": "sqlite viewer helper.exe",
          "filePath": "c:\\users\\lsy\\.vscode\\extensions\\qwtel.sqlite-viewer-0.9.3-win32-x64\\out\\bin\\sqlite viewer helper.exe",
          "processHash": "8d697710042b7d222d5ea703ed913dabb34b4977c4a94c891afa46419b58a98f",
          "inspectionType": "Scheduled Scan",
          "virusName": "HEUR/APC",
          "virusType": "APC/MALWARE",
          "action": "Quarantined",
          "actionResult": "Success",
          "dateOfEntryUTC": "2024-11-11T02:32:36+00:00",
          "dateOfEntry": "2024-11-11T02:32:36+00:00"
      }
    ]
  }
}

Last updated