PEASS-ng/winPEAS/winPEASexe/winPEAS/Info/FilesInfo/Certificates/CertificateInfo.cs
makikvues 343b8bb96b - refactoring/cleanup
- added .net versions check
- added PrintMappedDrivesWMI
- added PrintMicrosoftUpdatesCOM
- added PrintSystemLastShutdownTime
- added PrintCurrentUserIdleTime
- added PowerShell Core Version check
- updated ListCloudCreds
- updated GetMcAfeeSitelistFiles
- added PrintMachineAndUserCertificateFiles
2021-02-07 23:13:14 +01:00

20 lines
655 B
C#

using System;
using System.Collections.Generic;
namespace winPEAS.Info.FilesInfo.Certificates
{
internal class CertificateInfo
{
public string StoreLocation { get; set; }
public string Issuer { get; set; }
public string Subject { get; set; }
public DateTime ValidDate { get; set; }
public DateTime ExpiryDate { get; set; }
public bool HasPrivateKey { get; set; }
public bool? KeyExportable { get; set; }
public string Thumbprint { get; set; }
public string Template { get; set; }
public List<string> EnhancedKeyUsages { get; set; } = new List<string>();
}
}