{"meta":{"title":"CodeQL CLI の CSV 出力","intro":"CodeQL CLI からの CSV 結果を理解します。","product":"セキュリティとコードの品質","breadcrumbs":[{"href":"/ja/code-security","title":"セキュリティとコードの品質"},{"href":"/ja/code-security/reference","title":"リファレンス"},{"href":"/ja/code-security/reference/code-scanning","title":"コード スキャン"},{"href":"/ja/code-security/reference/code-scanning/codeql","title":"CodeQL"},{"href":"/ja/code-security/reference/code-scanning/codeql/codeql-cli","title":"CodeQL コマンドラインインターフェース (CLI)"},{"href":"/ja/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.`\nSeverity | クエリの重大度。| `error`\nメッセージ | 警告メッセージ。| `This part of the regular expression may cause exponential backtracking on strings containing many repetitions of '\\\\\\\\'.`\n経路 | 警告を含むファイルのパス。 | `/vendor/codemirror/markdown.js`\n開始行 | 警告をトリガーしたコードが開始されるファイルの行。 | `617`\n開始列 | 警告コードの開始を示す開始行の列。 1 に等しい場合は含まれません。 | `32`\nエンドライン | 警告をトリガーしたコードが終了するファイルの行。 開始行と同じ値の場合は含まれません。 | `64`\n最終列 | 使用可能な場合は、警告コードの終了を示す終了行の列。 それ以外の場合は、終了行が繰り返されます。 | `617`"}