Skip to content

Commit 56a6703

Browse files
Add files via upload
1 parent c23035f commit 56a6703

File tree

54 files changed

+1426
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+1426
-0
lines changed

LNK Exploit/Lnk-Compiler.exe

5 KB
Binary file not shown.
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.7.34221.43
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lnk-Compiler", "Lnk-Compiler\Lnk-Compiler.csproj", "{C3283C68-CE8A-4D80-AEA9-DB15AF8ABDCB}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{C3283C68-CE8A-4D80-AEA9-DB15AF8ABDCB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{C3283C68-CE8A-4D80-AEA9-DB15AF8ABDCB}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{C3283C68-CE8A-4D80-AEA9-DB15AF8ABDCB}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{C3283C68-CE8A-4D80-AEA9-DB15AF8ABDCB}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {337D2112-2B27-478F-B310-D62E701FA7A3}
24+
EndGlobalSection
25+
EndGlobal
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net46</TargetFramework>
6+
<RootNamespace>Millenium_Compiler</RootNamespace>
7+
</PropertyGroup>
8+
9+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
using System;
2+
using System.IO;
3+
4+
internal class Program
5+
{
6+
[STAThread]
7+
private static void Main(string[] args)
8+
{
9+
string icon = "";
10+
11+
if (File.Exists("src\\icon.ico")&&File.Exists("cleansrc\\main.py")&&Directory.Exists("src"))
12+
{
13+
icon = Convert.ToBase64String(File.ReadAllBytes("src\\icon.ico"));
14+
string textToAppend = File.ReadAllText("cleansrc\\\\main.py");
15+
textToAppend = textToAppend.Replace("icon = \"\"", "icon = \"" + icon + "\"");
16+
File.WriteAllText("src\\main.py", textToAppend);
17+
System.Diagnostics.Process.Start("build.bat");
18+
}
19+
else
20+
{
21+
Console.WriteLine("Some of the necessary files is missing");
22+
string a = Console.ReadLine();
23+
}
24+
}
25+
}
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
5+
</startup>
6+
</configuration>
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
//------------------------------------------------------------------------------
2+
// <auto-generated>
3+
// Этот код создан программой.
4+
// Исполняемая версия:4.0.30319.42000
5+
//
6+
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
7+
// повторной генерации кода.
8+
// </auto-generated>
9+
//------------------------------------------------------------------------------
10+
11+
using System;
12+
using System.Reflection;
13+
14+
[assembly: System.Reflection.AssemblyCompanyAttribute("Lnk-Compiler")]
15+
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
16+
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
17+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
18+
[assembly: System.Reflection.AssemblyProductAttribute("Lnk-Compiler")]
19+
[assembly: System.Reflection.AssemblyTitleAttribute("Lnk-Compiler")]
20+
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
21+
22+
// Создано классом WriteCodeFragment MSBuild.
23+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
6bc8d4b24542cc8ed4782776dba533bb50ec5e2c
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
is_global = true
2+
build_property.RootNamespace = Millenium_Compiler
3+
build_property.ProjectDir = C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Lnk-Compiler\
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
5+
</startup>
6+
</configuration>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
{
2+
"format": 1,
3+
"restore": {
4+
"C:\\Users\\attat\\OneDrive\\Документы\\GitHub\\LNK Exploit for Public\\LNK Exploit (source code)\\Lnk-Compiler\\Lnk-Compiler\\Lnk-Compiler.csproj": {}
5+
},
6+
"projects": {
7+
"C:\\Users\\attat\\OneDrive\\Документы\\GitHub\\LNK Exploit for Public\\LNK Exploit (source code)\\Lnk-Compiler\\Lnk-Compiler\\Lnk-Compiler.csproj": {
8+
"version": "1.0.0",
9+
"restore": {
10+
"projectUniqueName": "C:\\Users\\attat\\OneDrive\\Документы\\GitHub\\LNK Exploit for Public\\LNK Exploit (source code)\\Lnk-Compiler\\Lnk-Compiler\\Lnk-Compiler.csproj",
11+
"projectName": "Lnk-Compiler",
12+
"projectPath": "C:\\Users\\attat\\OneDrive\\Документы\\GitHub\\LNK Exploit for Public\\LNK Exploit (source code)\\Lnk-Compiler\\Lnk-Compiler\\Lnk-Compiler.csproj",
13+
"packagesPath": "C:\\Users\\attat\\.nuget\\packages\\",
14+
"outputPath": "C:\\Users\\attat\\OneDrive\\Документы\\GitHub\\LNK Exploit for Public\\LNK Exploit (source code)\\Lnk-Compiler\\Lnk-Compiler\\obj\\",
15+
"projectStyle": "PackageReference",
16+
"fallbackFolders": [
17+
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
18+
],
19+
"configFilePaths": [
20+
"C:\\Users\\attat\\AppData\\Roaming\\NuGet\\NuGet.Config",
21+
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
22+
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
23+
],
24+
"originalTargetFrameworks": [
25+
"net46"
26+
],
27+
"sources": {
28+
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
29+
"C:\\Program Files\\dotnet\\library-packs": {},
30+
"https://api.nuget.org/v3/index.json": {}
31+
},
32+
"frameworks": {
33+
"net46": {
34+
"targetAlias": "net46",
35+
"projectReferences": {}
36+
}
37+
},
38+
"warningProperties": {
39+
"warnAsError": [
40+
"NU1605"
41+
]
42+
}
43+
},
44+
"frameworks": {
45+
"net46": {
46+
"targetAlias": "net46",
47+
"dependencies": {
48+
"Microsoft.NETFramework.ReferenceAssemblies": {
49+
"suppressParent": "All",
50+
"target": "Package",
51+
"version": "[1.0.3, )",
52+
"autoReferenced": true
53+
}
54+
},
55+
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.403\\RuntimeIdentifierGraph.json"
56+
}
57+
},
58+
"runtimes": {
59+
"win7-x86": {
60+
"#import": []
61+
}
62+
}
63+
}
64+
}
65+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2+
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
4+
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
5+
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
6+
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
7+
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
8+
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\attat\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
9+
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
10+
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion>
11+
</PropertyGroup>
12+
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
13+
<SourceRoot Include="C:\Users\attat\.nuget\packages\" />
14+
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
15+
</ItemGroup>
16+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2+
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
4+
<Import Project="$(NuGetPackageRoot)microsoft.netframework.referenceassemblies.net46\1.0.3\build\Microsoft.NETFramework.ReferenceAssemblies.net46.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.netframework.referenceassemblies.net46\1.0.3\build\Microsoft.NETFramework.ReferenceAssemblies.net46.targets')" />
5+
</ImportGroup>
6+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
{
2+
"format": 1,
3+
"restore": {
4+
"C:\\Users\\attat\\OneDrive\\Документы\\GitHub\\LNK Exploit for Public\\LNK Exploit (source code)\\Lnk-Compiler\\Millenium-Compiler\\Millenium-Compiler.csproj": {}
5+
},
6+
"projects": {
7+
"C:\\Users\\attat\\OneDrive\\Документы\\GitHub\\LNK Exploit for Public\\LNK Exploit (source code)\\Lnk-Compiler\\Millenium-Compiler\\Millenium-Compiler.csproj": {
8+
"version": "1.0.0",
9+
"restore": {
10+
"projectUniqueName": "C:\\Users\\attat\\OneDrive\\Документы\\GitHub\\LNK Exploit for Public\\LNK Exploit (source code)\\Lnk-Compiler\\Millenium-Compiler\\Millenium-Compiler.csproj",
11+
"projectName": "Millenium-Compiler",
12+
"projectPath": "C:\\Users\\attat\\OneDrive\\Документы\\GitHub\\LNK Exploit for Public\\LNK Exploit (source code)\\Lnk-Compiler\\Millenium-Compiler\\Millenium-Compiler.csproj",
13+
"packagesPath": "C:\\Users\\attat\\.nuget\\packages\\",
14+
"outputPath": "C:\\Users\\attat\\OneDrive\\Документы\\GitHub\\LNK Exploit for Public\\LNK Exploit (source code)\\Lnk-Compiler\\Millenium-Compiler\\obj\\",
15+
"projectStyle": "PackageReference",
16+
"fallbackFolders": [
17+
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
18+
],
19+
"configFilePaths": [
20+
"C:\\Users\\attat\\AppData\\Roaming\\NuGet\\NuGet.Config",
21+
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
22+
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
23+
],
24+
"originalTargetFrameworks": [
25+
"net46"
26+
],
27+
"sources": {
28+
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
29+
"C:\\Program Files\\dotnet\\library-packs": {},
30+
"https://api.nuget.org/v3/index.json": {}
31+
},
32+
"frameworks": {
33+
"net46": {
34+
"targetAlias": "net46",
35+
"projectReferences": {}
36+
}
37+
},
38+
"warningProperties": {
39+
"warnAsError": [
40+
"NU1605"
41+
]
42+
}
43+
},
44+
"frameworks": {
45+
"net46": {
46+
"targetAlias": "net46",
47+
"dependencies": {
48+
"Microsoft.NETFramework.ReferenceAssemblies": {
49+
"suppressParent": "All",
50+
"target": "Package",
51+
"version": "[1.0.3, )",
52+
"autoReferenced": true
53+
}
54+
},
55+
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.403\\RuntimeIdentifierGraph.json"
56+
}
57+
},
58+
"runtimes": {
59+
"win7-x86": {
60+
"#import": []
61+
}
62+
}
63+
}
64+
}
65+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2+
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
4+
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
5+
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
6+
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
7+
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
8+
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\attat\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
9+
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
10+
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion>
11+
</PropertyGroup>
12+
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
13+
<SourceRoot Include="C:\Users\attat\.nuget\packages\" />
14+
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
15+
</ItemGroup>
16+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2+
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
4+
<Import Project="$(NuGetPackageRoot)microsoft.netframework.referenceassemblies.net46\1.0.3\build\Microsoft.NETFramework.ReferenceAssemblies.net46.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.netframework.referenceassemblies.net46\1.0.3\build\Microsoft.NETFramework.ReferenceAssemblies.net46.targets')" />
5+
</ImportGroup>
6+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
//------------------------------------------------------------------------------
2+
// <auto-generated>
3+
// Этот код создан программой.
4+
// Исполняемая версия:4.0.30319.42000
5+
//
6+
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
7+
// повторной генерации кода.
8+
// </auto-generated>
9+
//------------------------------------------------------------------------------
10+
11+
using System;
12+
using System.Reflection;
13+
14+
[assembly: System.Reflection.AssemblyCompanyAttribute("Lnk-Compiler")]
15+
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
16+
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
17+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
18+
[assembly: System.Reflection.AssemblyProductAttribute("Lnk-Compiler")]
19+
[assembly: System.Reflection.AssemblyTitleAttribute("Lnk-Compiler")]
20+
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
21+
22+
// Создано классом WriteCodeFragment MSBuild.
23+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
86e1415d35f60a7fc29bb30236b16b4066632a4e
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
is_global = true
2+
build_property.RootNamespace = Millenium_Compiler
3+
build_property.ProjectDir = C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Lnk-Compiler\
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
96c56944a0d344c36b2824e9de9b22d6c8353df7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Millenium-Compiler\bin\Release\net46\Lnk-Compiler.exe.config
2+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Millenium-Compiler\bin\Release\net46\Lnk-Compiler.exe
3+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Millenium-Compiler\bin\Release\net46\Lnk-Compiler.pdb
4+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Millenium-Compiler\obj\Release\net46\Lnk-Compiler.csproj.AssemblyReference.cache
5+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Millenium-Compiler\obj\Release\net46\Lnk-Compiler.GeneratedMSBuildEditorConfig.editorconfig
6+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Millenium-Compiler\obj\Release\net46\Lnk-Compiler.AssemblyInfoInputs.cache
7+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Millenium-Compiler\obj\Release\net46\Lnk-Compiler.AssemblyInfo.cs
8+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Millenium-Compiler\obj\Release\net46\Lnk-Compiler.csproj.CoreCompileInputs.cache
9+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Millenium-Compiler\obj\Release\net46\Lnk-Compiler.exe
10+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Millenium-Compiler\obj\Release\net46\Lnk-Compiler.pdb
11+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Lnk-Compiler\bin\Release\net46\Lnk-Compiler.exe.config
12+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Lnk-Compiler\bin\Release\net46\Lnk-Compiler.exe
13+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Lnk-Compiler\bin\Release\net46\Lnk-Compiler.pdb
14+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Lnk-Compiler\obj\Release\net46\Lnk-Compiler.csproj.AssemblyReference.cache
15+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Lnk-Compiler\obj\Release\net46\Lnk-Compiler.GeneratedMSBuildEditorConfig.editorconfig
16+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Lnk-Compiler\obj\Release\net46\Lnk-Compiler.AssemblyInfoInputs.cache
17+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Lnk-Compiler\obj\Release\net46\Lnk-Compiler.AssemblyInfo.cs
18+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Lnk-Compiler\obj\Release\net46\Lnk-Compiler.csproj.CoreCompileInputs.cache
19+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Lnk-Compiler\obj\Release\net46\Lnk-Compiler.exe
20+
C:\Users\attat\OneDrive\Документы\GitHub\LNK Exploit for Public\LNK Exploit (source code)\Lnk-Compiler\Lnk-Compiler\obj\Release\net46\Lnk-Compiler.pdb
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
5+
</startup>
6+
</configuration>
Binary file not shown.

0 commit comments

Comments
 (0)