mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-19 09:56:10 +00:00
f2ac1ece55
add
65 lines
2.5 KiB
C#
65 lines
2.5 KiB
C#
// Decompiled with JetBrains decompiler
|
|
// Type: Microsoft.InfoCards.X509RecipientIdentity
|
|
// Assembly: infocard, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
|
|
// MVID: ADE0A079-11DB-4A46-8BDE-D2A592CA8DEA
|
|
// Assembly location: C:\Users\Administrateur\Downloads\Virusshare-00001-msil\Virus.Win32.Expiro.w-1f15ee7e9f7da02b6bfb4c5a5e6484eb9fa71b82d3699c54bcc7a31794b4a66d.exe
|
|
|
|
using Microsoft.InfoCards.Diagnostics;
|
|
using System;
|
|
using System.IdentityModel.Tokens;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
using System.ServiceModel;
|
|
|
|
namespace Microsoft.InfoCards
|
|
{
|
|
internal class X509RecipientIdentity : RecipientIdentity
|
|
{
|
|
private X509Certificate2Collection m_certificates;
|
|
private Recipient.RecipientCertParameters m_recipientParams;
|
|
private bool isChainTrusted;
|
|
|
|
public Recipient.RecipientCertParameters RecipientParams => this.m_recipientParams;
|
|
|
|
public X509Certificate2 LeafCertificate => this.m_certificates[0];
|
|
|
|
public X509RecipientIdentity(EndpointAddress epr, X509Certificate2Collection certificates)
|
|
: base(epr)
|
|
{
|
|
this.m_certificates = certificates;
|
|
}
|
|
|
|
public override void Validate()
|
|
{
|
|
if (this.HasBeenValidated)
|
|
return;
|
|
this.isChainTrusted = this.ValidateCertificate();
|
|
this.Identifier = Recipient.CertGetRecipientIdHash(this.LeafCertificate, this.m_certificates, this.isChainTrusted, out this.m_recipientParams);
|
|
this.OrganizationIdentifier = Recipient.CertGetRecipientOrganizationIdHash(this.LeafCertificate, this.m_certificates, this.ValidateCertificate());
|
|
this.OrganizationPPIDIdentifier = Recipient.CertGetRecipientOrganizationPPIDSeedHash(this.LeafCertificate, this.m_certificates, this.ValidateCertificate());
|
|
this.HasBeenValidated = true;
|
|
}
|
|
|
|
public override string GetName()
|
|
{
|
|
string name = this.LeafCertificate.FriendlyName;
|
|
if (string.IsNullOrEmpty(name))
|
|
name = this.LeafCertificate.GetNameInfo(X509NameType.SimpleName, false);
|
|
return name;
|
|
}
|
|
|
|
private bool ValidateCertificate()
|
|
{
|
|
bool chainTrustPassed = false;
|
|
try
|
|
{
|
|
InfoCardX509Validator.ValidateChainOrPeer(this.LeafCertificate, this.m_certificates, out chainTrustPassed);
|
|
}
|
|
catch (SecurityTokenValidationException ex)
|
|
{
|
|
throw InfoCardTrace.ThrowHelperError((Exception) new IdentityValidationException(SR.GetString("RecipientCertificateNotValid"), (Exception) ex));
|
|
}
|
|
return chainTrustPassed;
|
|
}
|
|
}
|
|
}
|