├── 001.png ├── 002.png ├── BinaryPlanting ├── BinaryPlanting.sln ├── BinaryPlanting │ ├── App.config │ ├── BinaryPlanting.csproj │ ├── ILMerge.props │ ├── ILMergeOrder.txt │ ├── Printer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Utils.cs │ ├── bin │ │ └── x64 │ │ │ └── Release │ │ │ ├── BinaryPlanting.exe │ │ │ └── BinaryPlanting.pdb │ ├── obj │ │ ├── Debug │ │ │ ├── BinaryPlanting.csprojAssemblyReference.cache │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Release │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── x64 │ │ │ ├── Debug │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ └── Release │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ ├── BinaryPlanting.csproj.FileListAbsolute.txt │ │ │ ├── BinaryPlanting.ilmerge │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ └── packages.config └── packages │ ├── ILMerge.3.0.40 │ ├── .signature.p7s │ ├── ILMerge.3.0.40.nupkg │ ├── build │ │ └── ILMerge.props │ ├── docs │ │ └── ilmerge-manual.md │ └── tools │ │ └── net452 │ │ ├── ILMerge.exe │ │ └── System.Compiler.dll │ ├── MSBuild.ILMerge.Task.1.1.3 │ ├── .signature.p7s │ ├── Icon.png │ ├── License.txt │ ├── MSBuild.ILMerge.Task.1.1.3.nupkg │ ├── build │ │ ├── MSBuild.ILMerge.Task.props │ │ └── MSBuild.ILMerge.Task.targets │ ├── content │ │ ├── ILMerge.props │ │ └── ILMergeOrder.txt │ └── tools │ │ └── MSBuild.ILMerge.Task.dll │ └── NtApiDotNet.1.1.27 │ ├── .signature.p7s │ ├── NtApiDotNet.1.1.27.nupkg │ └── lib │ └── net45 │ ├── NtApiDotNet.XML │ └── NtApiDotNet.dll └── readme.md /001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/001.png -------------------------------------------------------------------------------- /002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/002.png -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/BinaryPlanting.sln -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/BinaryPlanting/App.config -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting/BinaryPlanting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/BinaryPlanting/BinaryPlanting.csproj -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting/ILMerge.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/BinaryPlanting/ILMerge.props -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting/ILMergeOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/BinaryPlanting/ILMergeOrder.txt -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting/Printer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/BinaryPlanting/Printer.cs -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/BinaryPlanting/Program.cs -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/BinaryPlanting/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/BinaryPlanting/Utils.cs -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting/bin/x64/Release/BinaryPlanting.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/BinaryPlanting/bin/x64/Release/BinaryPlanting.exe -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting/bin/x64/Release/BinaryPlanting.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/BinaryPlanting/bin/x64/Release/BinaryPlanting.pdb -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting/obj/Debug/BinaryPlanting.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/BinaryPlanting/obj/Debug/BinaryPlanting.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/BinaryPlanting/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/BinaryPlanting/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/BinaryPlanting/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/BinaryPlanting/obj/x64/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting/obj/x64/Release/BinaryPlanting.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting/obj/x64/Release/BinaryPlanting.ilmerge: -------------------------------------------------------------------------------- 1 | BinaryPlanting.exe 2 | NtApiDotNet.dll 3 | -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/BinaryPlanting/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /BinaryPlanting/BinaryPlanting/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/BinaryPlanting/packages.config -------------------------------------------------------------------------------- /BinaryPlanting/packages/ILMerge.3.0.40/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/packages/ILMerge.3.0.40/.signature.p7s -------------------------------------------------------------------------------- /BinaryPlanting/packages/ILMerge.3.0.40/ILMerge.3.0.40.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/packages/ILMerge.3.0.40/ILMerge.3.0.40.nupkg -------------------------------------------------------------------------------- /BinaryPlanting/packages/ILMerge.3.0.40/build/ILMerge.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/packages/ILMerge.3.0.40/build/ILMerge.props -------------------------------------------------------------------------------- /BinaryPlanting/packages/ILMerge.3.0.40/docs/ilmerge-manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/packages/ILMerge.3.0.40/docs/ilmerge-manual.md -------------------------------------------------------------------------------- /BinaryPlanting/packages/ILMerge.3.0.40/tools/net452/ILMerge.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/packages/ILMerge.3.0.40/tools/net452/ILMerge.exe -------------------------------------------------------------------------------- /BinaryPlanting/packages/ILMerge.3.0.40/tools/net452/System.Compiler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/packages/ILMerge.3.0.40/tools/net452/System.Compiler.dll -------------------------------------------------------------------------------- /BinaryPlanting/packages/MSBuild.ILMerge.Task.1.1.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/packages/MSBuild.ILMerge.Task.1.1.3/.signature.p7s -------------------------------------------------------------------------------- /BinaryPlanting/packages/MSBuild.ILMerge.Task.1.1.3/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/packages/MSBuild.ILMerge.Task.1.1.3/Icon.png -------------------------------------------------------------------------------- /BinaryPlanting/packages/MSBuild.ILMerge.Task.1.1.3/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/packages/MSBuild.ILMerge.Task.1.1.3/License.txt -------------------------------------------------------------------------------- /BinaryPlanting/packages/MSBuild.ILMerge.Task.1.1.3/MSBuild.ILMerge.Task.1.1.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/packages/MSBuild.ILMerge.Task.1.1.3/MSBuild.ILMerge.Task.1.1.3.nupkg -------------------------------------------------------------------------------- /BinaryPlanting/packages/MSBuild.ILMerge.Task.1.1.3/build/MSBuild.ILMerge.Task.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/packages/MSBuild.ILMerge.Task.1.1.3/build/MSBuild.ILMerge.Task.props -------------------------------------------------------------------------------- /BinaryPlanting/packages/MSBuild.ILMerge.Task.1.1.3/build/MSBuild.ILMerge.Task.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/packages/MSBuild.ILMerge.Task.1.1.3/build/MSBuild.ILMerge.Task.targets -------------------------------------------------------------------------------- /BinaryPlanting/packages/MSBuild.ILMerge.Task.1.1.3/content/ILMerge.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/packages/MSBuild.ILMerge.Task.1.1.3/content/ILMerge.props -------------------------------------------------------------------------------- /BinaryPlanting/packages/MSBuild.ILMerge.Task.1.1.3/content/ILMergeOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/packages/MSBuild.ILMerge.Task.1.1.3/content/ILMergeOrder.txt -------------------------------------------------------------------------------- /BinaryPlanting/packages/MSBuild.ILMerge.Task.1.1.3/tools/MSBuild.ILMerge.Task.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/packages/MSBuild.ILMerge.Task.1.1.3/tools/MSBuild.ILMerge.Task.dll -------------------------------------------------------------------------------- /BinaryPlanting/packages/NtApiDotNet.1.1.27/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/packages/NtApiDotNet.1.1.27/.signature.p7s -------------------------------------------------------------------------------- /BinaryPlanting/packages/NtApiDotNet.1.1.27/NtApiDotNet.1.1.27.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/packages/NtApiDotNet.1.1.27/NtApiDotNet.1.1.27.nupkg -------------------------------------------------------------------------------- /BinaryPlanting/packages/NtApiDotNet.1.1.27/lib/net45/NtApiDotNet.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/packages/NtApiDotNet.1.1.27/lib/net45/NtApiDotNet.XML -------------------------------------------------------------------------------- /BinaryPlanting/packages/NtApiDotNet.1.1.27/lib/net45/NtApiDotNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/BinaryPlanting/packages/NtApiDotNet.1.1.27/lib/net45/NtApiDotNet.dll -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neofito/CVE-2020-1337/HEAD/readme.md --------------------------------------------------------------------------------