mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-19 18:06:10 +00:00
66 lines
2.0 KiB
C#
66 lines
2.0 KiB
C#
|
// Decompiled with JetBrains decompiler
|
|||
|
// Type: Microsoft.InfoCards.GetRecipientRequest
|
|||
|
// 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.Generic;
|
|||
|
using System.IO;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Microsoft.InfoCards
|
|||
|
{
|
|||
|
internal class GetRecipientRequest : UIAgentRequest
|
|||
|
{
|
|||
|
private string m_recipientId;
|
|||
|
private Recipient m_recipient;
|
|||
|
|
|||
|
public GetRecipientRequest(
|
|||
|
IntPtr rpcHandle,
|
|||
|
Stream inArgs,
|
|||
|
Stream outArgs,
|
|||
|
ClientUIRequest parent)
|
|||
|
: base(rpcHandle, inArgs, outArgs, parent)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnMarshalInArgs() => this.m_recipientId = Utility.DeserializeString((BinaryReader) new InfoCardBinaryReader(this.InArgs, Encoding.Unicode));
|
|||
|
|
|||
|
protected override void OnProcess()
|
|||
|
{
|
|||
|
InfoCardTrace.Assert(null != this.m_recipientId, "null thumb print");
|
|||
|
StoreConnection connection = StoreConnection.GetConnection();
|
|||
|
try
|
|||
|
{
|
|||
|
DataRow singleRow = connection.GetSingleRow(new List<QueryParameter>()
|
|||
|
{
|
|||
|
new QueryParameter("ix_objecttype", new object[1]
|
|||
|
{
|
|||
|
(object) -3
|
|||
|
}),
|
|||
|
new QueryParameter("ix_name", new object[1]
|
|||
|
{
|
|||
|
(object) this.m_recipientId
|
|||
|
})
|
|||
|
}.ToArray());
|
|||
|
if (singleRow == null)
|
|||
|
return;
|
|||
|
this.m_recipient = new Recipient((Stream) new MemoryStream(singleRow.GetDataField()));
|
|||
|
}
|
|||
|
finally
|
|||
|
{
|
|||
|
connection.Close();
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnMarshalOutArgs()
|
|||
|
{
|
|||
|
BinaryWriter writer = new BinaryWriter(this.OutArgs, Encoding.Unicode);
|
|||
|
InfoCardTrace.Assert(null != this.m_recipient, "null recipient");
|
|||
|
this.m_recipient.Serialize(writer);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|