mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-19 09:56:10 +00:00
f2ac1ece55
add
95 lines
3.7 KiB
C#
95 lines
3.7 KiB
C#
// Decompiled with JetBrains decompiler
|
|
// Type: Microsoft.InfoCards.CustomTokenProvider
|
|
// 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.Collections.ObjectModel;
|
|
using System.IdentityModel.Policy;
|
|
using System.IdentityModel.Selectors;
|
|
using System.IdentityModel.Tokens;
|
|
using System.ServiceModel;
|
|
using System.ServiceModel.Security.Tokens;
|
|
|
|
namespace Microsoft.InfoCards
|
|
{
|
|
internal class CustomTokenProvider : SecurityTokenProvider, IDisposable
|
|
{
|
|
private InfoCardPolicy m_policy;
|
|
private InfoCard m_card;
|
|
private IssuedSecurityTokenParameters m_parameters;
|
|
private TokenDescriptor m_token;
|
|
private EndpointAddress m_target;
|
|
private SelfIssuedSamlTokenFactory m_tokenFactory;
|
|
private bool m_isSelfIssuedCreds;
|
|
private ProtocolProfile m_protocolProfile;
|
|
private SelfIssuedAuthProofToken m_proofToken;
|
|
|
|
public CustomTokenProvider(
|
|
IssuedSecurityTokenParameters parameters,
|
|
InfoCard card,
|
|
EndpointAddress target,
|
|
bool isSelfIssuedCreds,
|
|
ProtocolProfile profile)
|
|
{
|
|
this.m_isSelfIssuedCreds = isSelfIssuedCreds;
|
|
this.m_card = card;
|
|
this.m_parameters = parameters;
|
|
this.m_target = target;
|
|
this.m_protocolProfile = profile;
|
|
this.ValidatePolicy();
|
|
this.m_tokenFactory = new SelfIssuedSamlTokenFactory();
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
if (this.m_token != null)
|
|
{
|
|
this.m_token.Dispose();
|
|
this.m_token = (TokenDescriptor) null;
|
|
}
|
|
if (this.m_proofToken == null)
|
|
return;
|
|
this.m_proofToken.Dispose();
|
|
this.m_proofToken = (SelfIssuedAuthProofToken) null;
|
|
}
|
|
|
|
private void ValidatePolicy()
|
|
{
|
|
try
|
|
{
|
|
this.m_policy = PolicyFactory.CreatePolicyForCustomTokenProvider(this.m_target, this.m_parameters, this.m_protocolProfile);
|
|
this.m_policy.SetRecipientInfo(this.m_policy.ImmediateTokenRecipient, (string) null, 0U);
|
|
if (this.m_isSelfIssuedCreds)
|
|
this.m_policy.ThrowIfNonPpidClaimsPresent();
|
|
this.m_policy.Validate();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
if (!InfoCardTrace.IsFatal(ex))
|
|
throw InfoCardTrace.ThrowHelperError((Exception) new TrustExchangeException(SR.GetString("FailedReadingIPSTSPolicy"), ex));
|
|
throw;
|
|
}
|
|
}
|
|
|
|
protected override SecurityToken GetTokenCore(TimeSpan timeout)
|
|
{
|
|
StoreConnection connection = StoreConnection.GetConnection();
|
|
this.m_card.Connection = connection;
|
|
try
|
|
{
|
|
this.m_token = this.m_tokenFactory.CreateToken(this.m_card, (TokenFactoryCredential) null, this.m_policy, false);
|
|
this.m_proofToken = this.m_token.SymmetricProof != null ? new SelfIssuedAuthProofToken(new InMemorySymmetricSecurityKey(this.m_token.SymmetricProof.Key), this.m_token.ExpirationTime) : new SelfIssuedAuthProofToken(this.m_card.GetPrivateCryptography(this.m_policy.Recipient.GetIdentifier()), this.m_token.ExpirationTime);
|
|
return (SecurityToken) new GenericXmlSecurityToken(this.m_token.ProtectedToken, (SecurityToken) this.m_proofToken, this.m_token.EffectiveTime, this.m_token.ExpirationTime, (SecurityKeyIdentifierClause) new SamlAssertionKeyIdentifierClause(this.m_token.TokenId), (SecurityKeyIdentifierClause) null, (ReadOnlyCollection<IAuthorizationPolicy>) null);
|
|
}
|
|
finally
|
|
{
|
|
connection.Close();
|
|
this.m_card.Connection = (StoreConnection) null;
|
|
}
|
|
}
|
|
}
|
|
}
|