From 858faab66f439ecebe6b133f16b11e5cbf389b6e Mon Sep 17 00:00:00 2001 From: asta Date: Tue, 8 Oct 2024 14:35:25 -0400 Subject: [PATCH] Initial --- RBXInjector.sln | 25 +++ RBXInjector/App.config | 6 + RBXInjector/App.xaml | 9 + RBXInjector/App.xaml.cs | 17 ++ RBXInjector/MainWindow.xaml | 97 +++++++++ RBXInjector/MainWindow.xaml.cs | 172 ++++++++++++++++ RBXInjector/Properties/AssemblyInfo.cs | 52 +++++ RBXInjector/Properties/Resources.Designer.cs | 71 +++++++ RBXInjector/Properties/Resources.resx | 117 +++++++++++ RBXInjector/Properties/Settings.Designer.cs | 30 +++ RBXInjector/Properties/Settings.settings | 7 + RBXInjector/RBXInjector.csproj | 98 +++++++++ RBXInjector/bin/Release/RBXInjector.exe | Bin 0 -> 16384 bytes .../bin/Release/RBXInjector.exe.config | 6 + RBXInjector/bin/Release/RBXInjector.pdb | Bin 0 -> 48640 bytes .../Release/bin/WinTrust Patch Injector.exe | Bin 0 -> 19456 bytes ...ework,Version=v4.7.2.AssemblyAttributes.cs | 4 + RBXInjector/obj/Debug/App.g.cs | 70 +++++++ RBXInjector/obj/Debug/App.g.i.cs | 70 +++++++ ...gnTimeResolveAssemblyReferencesInput.cache | Bin 0 -> 2303 bytes RBXInjector/obj/Debug/MainWindow.baml | Bin 0 -> 5179 bytes RBXInjector/obj/Debug/MainWindow.g.cs | 182 +++++++++++++++++ RBXInjector/obj/Debug/MainWindow.g.i.cs | 182 +++++++++++++++++ ...RBXInjector.Properties.Resources.resources | Bin 0 -> 180 bytes ...RBXInjector.csproj.AssemblyReference.cache | Bin 0 -> 7357 bytes ...RBXInjector.csproj.CoreCompileInputs.cache | 1 + .../RBXInjector.csproj.FileListAbsolute.txt | 15 ++ .../RBXInjector.csproj.GenerateResource.cache | Bin 0 -> 84 bytes RBXInjector/obj/Debug/RBXInjector.exe | Bin 0 -> 21504 bytes RBXInjector/obj/Debug/RBXInjector.g.resources | Bin 0 -> 5407 bytes RBXInjector/obj/Debug/RBXInjector.pdb | Bin 0 -> 50688 bytes .../obj/Debug/RBXInjector_MarkupCompile.cache | 20 ++ .../Debug/RBXInjector_MarkupCompile.i.cache | 20 ++ .../Debug/RBXInjector_MarkupCompile.i.lref | 4 + .../obj/Debug/RBXInjector_MarkupCompile.lref | 4 + ...ework,Version=v4.7.2.AssemblyAttributes.cs | 4 + RBXInjector/obj/Release/App.g.cs | 70 +++++++ RBXInjector/obj/Release/App.g.i.cs | 70 +++++++ ...gnTimeResolveAssemblyReferencesInput.cache | Bin 0 -> 2307 bytes RBXInjector/obj/Release/MainWindow.baml | Bin 0 -> 3768 bytes RBXInjector/obj/Release/MainWindow.g.cs | 193 ++++++++++++++++++ RBXInjector/obj/Release/MainWindow.g.i.cs | 193 ++++++++++++++++++ ...RBXInjector.Properties.Resources.resources | Bin 0 -> 180 bytes ...RBXInjector.csproj.AssemblyReference.cache | Bin 0 -> 7357 bytes ...RBXInjector.csproj.CoreCompileInputs.cache | 1 + .../RBXInjector.csproj.FileListAbsolute.txt | 15 ++ .../RBXInjector.csproj.GenerateResource.cache | Bin 0 -> 84 bytes RBXInjector/obj/Release/RBXInjector.exe | Bin 0 -> 16384 bytes .../obj/Release/RBXInjector.g.resources | Bin 0 -> 3996 bytes RBXInjector/obj/Release/RBXInjector.pdb | Bin 0 -> 48640 bytes .../Release/RBXInjector_MarkupCompile.cache | 20 ++ .../Release/RBXInjector_MarkupCompile.i.cache | 20 ++ .../Release/RBXInjector_MarkupCompile.i.lref | 4 + .../Release/RBXInjector_MarkupCompile.lref | 4 + .../Properties.Resources.Designer.cs.dll | Bin 0 -> 4096 bytes 55 files changed, 1873 insertions(+) create mode 100644 RBXInjector.sln create mode 100644 RBXInjector/App.config create mode 100644 RBXInjector/App.xaml create mode 100644 RBXInjector/App.xaml.cs create mode 100644 RBXInjector/MainWindow.xaml create mode 100644 RBXInjector/MainWindow.xaml.cs create mode 100644 RBXInjector/Properties/AssemblyInfo.cs create mode 100644 RBXInjector/Properties/Resources.Designer.cs create mode 100644 RBXInjector/Properties/Resources.resx create mode 100644 RBXInjector/Properties/Settings.Designer.cs create mode 100644 RBXInjector/Properties/Settings.settings create mode 100644 RBXInjector/RBXInjector.csproj create mode 100644 RBXInjector/bin/Release/RBXInjector.exe create mode 100644 RBXInjector/bin/Release/RBXInjector.exe.config create mode 100644 RBXInjector/bin/Release/RBXInjector.pdb create mode 100644 RBXInjector/bin/Release/bin/WinTrust Patch Injector.exe create mode 100644 RBXInjector/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs create mode 100644 RBXInjector/obj/Debug/App.g.cs create mode 100644 RBXInjector/obj/Debug/App.g.i.cs create mode 100644 RBXInjector/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache create mode 100644 RBXInjector/obj/Debug/MainWindow.baml create mode 100644 RBXInjector/obj/Debug/MainWindow.g.cs create mode 100644 RBXInjector/obj/Debug/MainWindow.g.i.cs create mode 100644 RBXInjector/obj/Debug/RBXInjector.Properties.Resources.resources create mode 100644 RBXInjector/obj/Debug/RBXInjector.csproj.AssemblyReference.cache create mode 100644 RBXInjector/obj/Debug/RBXInjector.csproj.CoreCompileInputs.cache create mode 100644 RBXInjector/obj/Debug/RBXInjector.csproj.FileListAbsolute.txt create mode 100644 RBXInjector/obj/Debug/RBXInjector.csproj.GenerateResource.cache create mode 100644 RBXInjector/obj/Debug/RBXInjector.exe create mode 100644 RBXInjector/obj/Debug/RBXInjector.g.resources create mode 100644 RBXInjector/obj/Debug/RBXInjector.pdb create mode 100644 RBXInjector/obj/Debug/RBXInjector_MarkupCompile.cache create mode 100644 RBXInjector/obj/Debug/RBXInjector_MarkupCompile.i.cache create mode 100644 RBXInjector/obj/Debug/RBXInjector_MarkupCompile.i.lref create mode 100644 RBXInjector/obj/Debug/RBXInjector_MarkupCompile.lref create mode 100644 RBXInjector/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs create mode 100644 RBXInjector/obj/Release/App.g.cs create mode 100644 RBXInjector/obj/Release/App.g.i.cs create mode 100644 RBXInjector/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache create mode 100644 RBXInjector/obj/Release/MainWindow.baml create mode 100644 RBXInjector/obj/Release/MainWindow.g.cs create mode 100644 RBXInjector/obj/Release/MainWindow.g.i.cs create mode 100644 RBXInjector/obj/Release/RBXInjector.Properties.Resources.resources create mode 100644 RBXInjector/obj/Release/RBXInjector.csproj.AssemblyReference.cache create mode 100644 RBXInjector/obj/Release/RBXInjector.csproj.CoreCompileInputs.cache create mode 100644 RBXInjector/obj/Release/RBXInjector.csproj.FileListAbsolute.txt create mode 100644 RBXInjector/obj/Release/RBXInjector.csproj.GenerateResource.cache create mode 100644 RBXInjector/obj/Release/RBXInjector.exe create mode 100644 RBXInjector/obj/Release/RBXInjector.g.resources create mode 100644 RBXInjector/obj/Release/RBXInjector.pdb create mode 100644 RBXInjector/obj/Release/RBXInjector_MarkupCompile.cache create mode 100644 RBXInjector/obj/Release/RBXInjector_MarkupCompile.i.cache create mode 100644 RBXInjector/obj/Release/RBXInjector_MarkupCompile.i.lref create mode 100644 RBXInjector/obj/Release/RBXInjector_MarkupCompile.lref create mode 100644 RBXInjector/obj/Release/TempPE/Properties.Resources.Designer.cs.dll diff --git a/RBXInjector.sln b/RBXInjector.sln new file mode 100644 index 0000000..7ef0d83 --- /dev/null +++ b/RBXInjector.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.11.35312.102 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RBXInjector", "RBXInjector\RBXInjector.csproj", "{DF613A6D-94D1-4467-98A5-29A7D16B8D79}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DF613A6D-94D1-4467-98A5-29A7D16B8D79}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DF613A6D-94D1-4467-98A5-29A7D16B8D79}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DF613A6D-94D1-4467-98A5-29A7D16B8D79}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DF613A6D-94D1-4467-98A5-29A7D16B8D79}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {3D4B2481-8524-4BB8-9CEB-3208827B0E41} + EndGlobalSection +EndGlobal diff --git a/RBXInjector/App.config b/RBXInjector/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/RBXInjector/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/RBXInjector/App.xaml b/RBXInjector/App.xaml new file mode 100644 index 0000000..68eb0d6 --- /dev/null +++ b/RBXInjector/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/RBXInjector/App.xaml.cs b/RBXInjector/App.xaml.cs new file mode 100644 index 0000000..ae14f72 --- /dev/null +++ b/RBXInjector/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace RBXInjector +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/RBXInjector/MainWindow.xaml b/RBXInjector/MainWindow.xaml new file mode 100644 index 0000000..3cde158 --- /dev/null +++ b/RBXInjector/MainWindow.xaml @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + +