{"meta":{"title":"CodeQL CLI CSV 출력","intro":"CodeQL CLI의 CSV 결과를 이해합니다.","product":"보안 및 코드 품질","breadcrumbs":[{"href":"/ko/enterprise-server@3.20/code-security","title":"보안 및 코드 품질"},{"href":"/ko/enterprise-server@3.20/code-security/reference","title":"Reference"},{"href":"/ko/enterprise-server@3.20/code-security/reference/code-scanning","title":"코드 검사"},{"href":"/ko/enterprise-server@3.20/code-security/reference/code-scanning/codeql","title":"CodeQL"},{"href":"/ko/enterprise-server@3.20/code-security/reference/code-scanning/codeql/codeql-cli","title":"CodeQL 커맨드 라인 인터페이스 (CLI)"},{"href":"/ko/enterprise-server@3.20/code-security/reference/code-scanning/codeql/codeql-cli/csv-output","title":"CodeQL CLI CSV 출력"}],"documentType":"article"},"body":"# CodeQL CLI CSV 출력\n\nCodeQL CLI의 CSV 결과를 이해합니다.\n\nCodeQL CLI의 분석 결과를 CSV 형식으로 저장하면 각 줄은 다음 정보가 포함된 쉼표로 구분된 목록을 포함하는 경고에 해당합니다.\n\n              **재산**|\n              **설명**|\n              **예시**\n-----|-----|-----\n이름 | 결과를 식별한 쿼리의 이름. | `Inefficient regular expression`\nDescription | 쿼리의 설명.| `A regular expression that requires exponential time to match certain inputs can be a performance bottleneck, and may be vulnerable to denial-of-service attacks.`\n심각도\n           | 쿼리의 심각도.| `error`\nMessage | 경고 메시지.| `This part of the regular expression may cause exponential backtracking on strings containing many repetitions of '\\\\\\\\'.`\n경로 | 경고가 포함된 파일의 경로. | `/vendor/codemirror/markdown.js`\n시작 줄 | 경고를 트리거한 코드가 시작되는 파일의 줄. | `617`\nStart column | 경고 코드의 시작을 표시하는 시작 줄의 열. 1인 경우에는 포함되지 않습니다. | `32`\n끝 줄 | 경고를 트리거한 코드가 끝나는 파일의 줄. 시작 줄과 값이 동일한 경우 포함되지 않습니다. | `64`\nEnd column | 사용할 수 있는 경우, 경고 코드의 끝을 표시하는 끝 줄의 열. 그렇지 않으면 끝 줄이 반복됩니다. | `617`"}