mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-22 03:16:11 +00:00
64 lines
2.2 KiB
C#
64 lines
2.2 KiB
C#
|
// Decompiled with JetBrains decompiler
|
|||
|
// Type: Microsoft.InfoCards.SendAgentStatusRequest
|
|||
|
// 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.IO;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Microsoft.InfoCards
|
|||
|
{
|
|||
|
internal class SendAgentStatusRequest : UIAgentRequest
|
|||
|
{
|
|||
|
private SendAgentStatusRequest.AgentStatusType m_agentStatus;
|
|||
|
private bool m_retVal;
|
|||
|
private uint m_ATApplicationsFlags;
|
|||
|
|
|||
|
public SendAgentStatusRequest(
|
|||
|
IntPtr rpcHandle,
|
|||
|
Stream inArgs,
|
|||
|
Stream outArgs,
|
|||
|
ClientUIRequest parentRequest)
|
|||
|
: base(rpcHandle, inArgs, outArgs, parentRequest)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnMarshalInArgs()
|
|||
|
{
|
|||
|
InfoCardTrace.Assert(this.InArgs.Length > 0L, "The agent status must be specified");
|
|||
|
BinaryReader binaryReader = (BinaryReader) new InfoCardBinaryReader(this.InArgs, Encoding.Unicode);
|
|||
|
this.m_agentStatus = (SendAgentStatusRequest.AgentStatusType) binaryReader.ReadUInt32();
|
|||
|
this.m_ATApplicationsFlags = binaryReader.ReadUInt32();
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnProcess()
|
|||
|
{
|
|||
|
this.m_retVal = false;
|
|||
|
switch (this.m_agentStatus)
|
|||
|
{
|
|||
|
case SendAgentStatusRequest.AgentStatusType.AGENT_DESKTOP_CREATED:
|
|||
|
case SendAgentStatusRequest.AgentStatusType.AGENT_DESKTOP_SWITCH_IN:
|
|||
|
this.ParentRequest.StartAccessibilityApplications(this.m_ATApplicationsFlags);
|
|||
|
break;
|
|||
|
case SendAgentStatusRequest.AgentStatusType.AGENT_DESKTOP_SWITCH_OUT:
|
|||
|
this.m_retVal = this.ParentRequest.RestartAccessibilityApplications();
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnMarshalOutArgs() => new BinaryWriter(this.OutArgs, Encoding.Unicode).Write(this.m_retVal);
|
|||
|
|
|||
|
public enum AgentStatusType
|
|||
|
{
|
|||
|
AGENT_INITIALIZING,
|
|||
|
AGENT_DESKTOP_CREATED,
|
|||
|
AGENT_DESKTOP_SWITCH_OUT,
|
|||
|
AGENT_DESKTOP_SWITCH_IN,
|
|||
|
AGENT_SHUTTING_DOWN,
|
|||
|
}
|
|||
|
}
|
|||
|
}
|