Query Details

List All CA Certificates

Query

Use Case: Identifying and extracting information on certificate authorities.

Query:

Certificate
| where IsCa == true
| project IsCa, CommonName, SubjectName

Explanation

The query is looking for certificates that are certificate authorities and extracting information such as whether it is a CA, the common name, and the subject name.

Details

Ugur Koc profile picture

Ugur Koc

Released: February 4, 2024

Tables

Certificate

Keywords

Certificate,IsCa,CommonName,SubjectName

Operators

whereproject

Actions