├── Download ├── Encephalon.exe ├── Icetea.exe ├── Itami.exe ├── Koid.exe ├── Lithium Lite.exe ├── Lux Cleaner.exe ├── Spotify.exe ├── d0ge clicker.rar └── imgui.ini ├── README.md ├── Web Executable Loader.sln ├── Web Executable Loader ├── App.config ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Web Executable Loader.csproj ├── app.manifest ├── bin │ └── Debug │ │ ├── Web Executable Loader.exe │ │ ├── Web Executable Loader.exe.config │ │ └── Web Executable Loader.pdb ├── obj │ ├── Debug │ │ ├── Costura │ │ │ ├── 443AFEDA004A33A44F1EEB33218AEE0622DD9B16.costura.guna.ui2.dll.compressed │ │ │ └── 5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Loader.Form1.resources │ │ ├── Loader.Properties.Resources.resources │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── Web Executable Loader.csproj.CoreCompileInputs.cache │ │ ├── Web Executable Loader.csproj.FileListAbsolute.txt │ │ ├── Web Executable Loader.csproj.Fody.CopyLocal.cache │ │ ├── Web Executable Loader.csproj.GenerateResource.cache │ │ ├── Web Executable Loader.exe │ │ └── Web Executable Loader.pdb │ ├── Release │ │ ├── Costura │ │ │ ├── 443AFEDA004A33A44F1EEB33218AEE0622DD9B16.costura.guna.ui2.dll.compressed │ │ │ └── 5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ └── x64 │ │ └── Release │ │ ├── Costura │ │ ├── 443AFEDA004A33A44F1EEB33218AEE0622DD9B16.costura.guna.ui2.dll.compressed │ │ └── 5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── packages.config └── yes.ico └── packages ├── Costura.Fody.4.1.0 ├── Costura.Fody.4.1.0.nupkg ├── build │ └── Costura.Fody.props ├── lib │ └── net40 │ │ ├── Costura.dll │ │ └── Costura.xml └── weaver │ ├── Costura.Fody.dll │ └── Costura.Fody.xcf ├── Fody.6.0.0 ├── Fody.6.0.0.nupkg ├── build │ └── Fody.targets ├── netclassictask │ ├── Fody.dll │ ├── FodyCommon.dll │ ├── FodyHelpers.dll │ ├── FodyIsolated.dll │ ├── Mono.Cecil.Pdb.dll │ ├── Mono.Cecil.Pdb.pdb │ ├── Mono.Cecil.Rocks.dll │ ├── Mono.Cecil.Rocks.pdb │ ├── Mono.Cecil.dll │ └── Mono.Cecil.pdb └── netstandardtask │ ├── Fody.dll │ ├── FodyCommon.dll │ ├── FodyHelpers.dll │ ├── FodyIsolated.dll │ ├── Mono.Cecil.Pdb.dll │ ├── Mono.Cecil.Pdb.pdb │ ├── Mono.Cecil.Rocks.dll │ ├── Mono.Cecil.Rocks.pdb │ ├── Mono.Cecil.dll │ └── Mono.Cecil.pdb └── Guna.UI2.WinForms.2.0.1.4 ├── Guna.UI2.WinForms.2.0.1.4.nupkg ├── LICENSE.txt ├── icon.png └── lib └── net40 └── Guna.UI2.dll /Download/Encephalon.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Download/Encephalon.exe -------------------------------------------------------------------------------- /Download/Icetea.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Download/Icetea.exe -------------------------------------------------------------------------------- /Download/Itami.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Download/Itami.exe -------------------------------------------------------------------------------- /Download/Koid.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Download/Koid.exe -------------------------------------------------------------------------------- /Download/Lithium Lite.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Download/Lithium Lite.exe -------------------------------------------------------------------------------- /Download/Lux Cleaner.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Download/Lux Cleaner.exe -------------------------------------------------------------------------------- /Download/Spotify.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Download/Spotify.exe -------------------------------------------------------------------------------- /Download/d0ge clicker.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Download/d0ge clicker.rar -------------------------------------------------------------------------------- /Download/imgui.ini: -------------------------------------------------------------------------------- 1 | [Window][Debug##Default] 2 | Pos=60,60 3 | Size=400,400 4 | Collapsed=0 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Web-Executable-Loader 2 | 3 | This is a basic "loader", which simply decodes Base64 encoded strings that are the download links for executables, that are then placed into a file path as .scr (screen saver file) extension and then opened. This repository contains the downloads of each executable, the source code of the project and the website which was hosted via GitHub Pages. 4 | 5 | ![ScreenShot](https://media.discordapp.net/attachments/980144521650245652/1007274079516102726/no.png) 6 | -------------------------------------------------------------------------------- /Web Executable Loader.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30804.86 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Client Loader Cheatgq", "Web Executable Loader\Web Executable Loader.csproj", "{6D851657-7B7A-4622-8FF4-432DA72D3233}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Debug|x64 = Debug|x64 12 | Release|Any CPU = Release|Any CPU 13 | Release|x64 = Release|x64 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {6D851657-7B7A-4622-8FF4-432DA72D3233}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 17 | {6D851657-7B7A-4622-8FF4-432DA72D3233}.Debug|Any CPU.Build.0 = Debug|Any CPU 18 | {6D851657-7B7A-4622-8FF4-432DA72D3233}.Debug|x64.ActiveCfg = Debug|x64 19 | {6D851657-7B7A-4622-8FF4-432DA72D3233}.Debug|x64.Build.0 = Debug|x64 20 | {6D851657-7B7A-4622-8FF4-432DA72D3233}.Release|Any CPU.ActiveCfg = Release|Any CPU 21 | {6D851657-7B7A-4622-8FF4-432DA72D3233}.Release|Any CPU.Build.0 = Release|Any CPU 22 | {6D851657-7B7A-4622-8FF4-432DA72D3233}.Release|x64.ActiveCfg = Release|x64 23 | {6D851657-7B7A-4622-8FF4-432DA72D3233}.Release|x64.Build.0 = Release|x64 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {16A5BFCE-C596-475E-9066-FC0535540849} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /Web Executable Loader/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Web Executable Loader/FodyWeavers.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Web Executable Loader/FodyWeavers.xsd: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks 13 | 14 | 15 | 16 | 17 | A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks. 18 | 19 | 20 | 21 | 22 | A list of unmanaged 32 bit assembly names to include, delimited with line breaks. 23 | 24 | 25 | 26 | 27 | A list of unmanaged 64 bit assembly names to include, delimited with line breaks. 28 | 29 | 30 | 31 | 32 | The order of preloaded assemblies, delimited with line breaks. 33 | 34 | 35 | 36 | 37 | 38 | This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file. 39 | 40 | 41 | 42 | 43 | Controls if .pdbs for reference assemblies are also embedded. 44 | 45 | 46 | 47 | 48 | Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option. 49 | 50 | 51 | 52 | 53 | As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off. 54 | 55 | 56 | 57 | 58 | Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code. 59 | 60 | 61 | 62 | 63 | Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior. 64 | 65 | 66 | 67 | 68 | A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with | 69 | 70 | 71 | 72 | 73 | A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |. 74 | 75 | 76 | 77 | 78 | A list of unmanaged 32 bit assembly names to include, delimited with |. 79 | 80 | 81 | 82 | 83 | A list of unmanaged 64 bit assembly names to include, delimited with |. 84 | 85 | 86 | 87 | 88 | The order of preloaded assemblies, delimited with |. 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed. 97 | 98 | 99 | 100 | 101 | A comma-separated list of error codes that can be safely ignored in assembly verification. 102 | 103 | 104 | 105 | 106 | 'false' to turn off automatic generation of the XML Schema file. 107 | 108 | 109 | 110 | 111 | -------------------------------------------------------------------------------- /Web Executable Loader/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 |  2 | using System; 3 | 4 | namespace Loader 5 | { 6 | partial class Form1 7 | { 8 | /// 9 | /// Required designer variable. 10 | /// 11 | private System.ComponentModel.IContainer components = null; 12 | 13 | /// 14 | /// Clean up any resources being used. 15 | /// 16 | /// true if managed resources should be disposed; otherwise, false. 17 | protected override void Dispose(bool disposing) 18 | { 19 | if (disposing && (components != null)) 20 | { 21 | components.Dispose(); 22 | } 23 | base.Dispose(disposing); 24 | } 25 | 26 | #region Windows Form Designer generated code 27 | 28 | /// 29 | /// Required method for Designer support - do not modify 30 | /// the contents of this method with the code editor. 31 | /// 32 | private void InitializeComponent() 33 | { 34 | this.components = new System.ComponentModel.Container(); 35 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 36 | this.guna2DragControl1 = new Guna.UI2.WinForms.Guna2DragControl(this.components); 37 | this.guna2Panel1 = new Guna.UI2.WinForms.Guna2Panel(); 38 | this.guna2GradientButton7 = new Guna.UI2.WinForms.Guna2GradientButton(); 39 | this.pictureBox2 = new System.Windows.Forms.PictureBox(); 40 | this.guna2GradientButton6 = new Guna.UI2.WinForms.Guna2GradientButton(); 41 | this.guna2GradientButton5 = new Guna.UI2.WinForms.Guna2GradientButton(); 42 | this.guna2GradientButton4 = new Guna.UI2.WinForms.Guna2GradientButton(); 43 | this.guna2GradientButton3 = new Guna.UI2.WinForms.Guna2GradientButton(); 44 | this.guna2GradientButton2 = new Guna.UI2.WinForms.Guna2GradientButton(); 45 | this.guna2GradientButton1 = new Guna.UI2.WinForms.Guna2GradientButton(); 46 | this.pictureBox1 = new System.Windows.Forms.PictureBox(); 47 | this.label2 = new System.Windows.Forms.Label(); 48 | this.label1 = new System.Windows.Forms.Label(); 49 | this.guna2DragControl2 = new Guna.UI2.WinForms.Guna2DragControl(this.components); 50 | this.guna2Button4 = new Guna.UI2.WinForms.Guna2Button(); 51 | this.guna2DragControl3 = new Guna.UI2.WinForms.Guna2DragControl(this.components); 52 | this.guna2DragControl4 = new Guna.UI2.WinForms.Guna2DragControl(this.components); 53 | this.guna2Elipse1 = new Guna.UI2.WinForms.Guna2Elipse(this.components); 54 | this.itamicheck = new System.Windows.Forms.Timer(this.components); 55 | this.encpcheck = new System.Windows.Forms.Timer(this.components); 56 | this.koidcheck = new System.Windows.Forms.Timer(this.components); 57 | this.supremacycheck = new System.Windows.Forms.Timer(this.components); 58 | this.digitalpicheck = new System.Windows.Forms.Timer(this.components); 59 | this.luxcheck = new System.Windows.Forms.Timer(this.components); 60 | this.taskcheck = new System.Windows.Forms.Timer(this.components); 61 | this.iceteacheck = new System.Windows.Forms.Timer(this.components); 62 | this.guna2Panel1.SuspendLayout(); 63 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); 64 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); 65 | this.SuspendLayout(); 66 | // 67 | // guna2DragControl1 68 | // 69 | this.guna2DragControl1.ContainerControl = this; 70 | this.guna2DragControl1.TargetControl = this.guna2Panel1; 71 | // 72 | // guna2Panel1 73 | // 74 | this.guna2Panel1.Anchor = System.Windows.Forms.AnchorStyles.None; 75 | this.guna2Panel1.BackColor = System.Drawing.Color.Transparent; 76 | this.guna2Panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("guna2Panel1.BackgroundImage"))); 77 | this.guna2Panel1.Controls.Add(this.guna2GradientButton7); 78 | this.guna2Panel1.Controls.Add(this.pictureBox2); 79 | this.guna2Panel1.Controls.Add(this.guna2GradientButton6); 80 | this.guna2Panel1.Controls.Add(this.guna2GradientButton5); 81 | this.guna2Panel1.Controls.Add(this.guna2GradientButton4); 82 | this.guna2Panel1.Controls.Add(this.guna2GradientButton3); 83 | this.guna2Panel1.Controls.Add(this.guna2GradientButton2); 84 | this.guna2Panel1.Controls.Add(this.guna2GradientButton1); 85 | this.guna2Panel1.Controls.Add(this.pictureBox1); 86 | this.guna2Panel1.Controls.Add(this.label2); 87 | this.guna2Panel1.Controls.Add(this.label1); 88 | this.guna2Panel1.Location = new System.Drawing.Point(0, 0); 89 | this.guna2Panel1.Name = "guna2Panel1"; 90 | this.guna2Panel1.ShadowDecoration.Parent = this.guna2Panel1; 91 | this.guna2Panel1.Size = new System.Drawing.Size(324, 432); 92 | this.guna2Panel1.TabIndex = 0; 93 | // 94 | // guna2GradientButton7 95 | // 96 | this.guna2GradientButton7.Animated = true; 97 | this.guna2GradientButton7.AutoRoundedCorners = true; 98 | this.guna2GradientButton7.BorderColor = System.Drawing.Color.Empty; 99 | this.guna2GradientButton7.BorderRadius = 20; 100 | this.guna2GradientButton7.BorderThickness = 2; 101 | this.guna2GradientButton7.CheckedState.Parent = this.guna2GradientButton7; 102 | this.guna2GradientButton7.CustomImages.Parent = this.guna2GradientButton7; 103 | this.guna2GradientButton7.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(89)))), ((int)(((byte)(78)))), ((int)(((byte)(135))))); 104 | this.guna2GradientButton7.FillColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(47)))), ((int)(((byte)(97))))); 105 | this.guna2GradientButton7.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 106 | this.guna2GradientButton7.ForeColor = System.Drawing.Color.White; 107 | this.guna2GradientButton7.HoverState.BorderColor = System.Drawing.Color.White; 108 | this.guna2GradientButton7.HoverState.Parent = this.guna2GradientButton7; 109 | this.guna2GradientButton7.Location = new System.Drawing.Point(173, 78); 110 | this.guna2GradientButton7.Margin = new System.Windows.Forms.Padding(0); 111 | this.guna2GradientButton7.Name = "guna2GradientButton7"; 112 | this.guna2GradientButton7.Padding = new System.Windows.Forms.Padding(0, 0, 0, 4); 113 | this.guna2GradientButton7.ShadowDecoration.Parent = this.guna2GradientButton7; 114 | this.guna2GradientButton7.Size = new System.Drawing.Size(114, 43); 115 | this.guna2GradientButton7.TabIndex = 13; 116 | this.guna2GradientButton7.Text = "Icetea"; 117 | this.guna2GradientButton7.Click += new System.EventHandler(this.guna2GradientButton7_Click); 118 | // 119 | // pictureBox2 120 | // 121 | this.pictureBox2.BackColor = System.Drawing.Color.Transparent; 122 | this.pictureBox2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox2.BackgroundImage"))); 123 | this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; 124 | this.pictureBox2.Cursor = System.Windows.Forms.Cursors.Hand; 125 | this.pictureBox2.Location = new System.Drawing.Point(264, 11); 126 | this.pictureBox2.Name = "pictureBox2"; 127 | this.pictureBox2.Size = new System.Drawing.Size(17, 17); 128 | this.pictureBox2.TabIndex = 12; 129 | this.pictureBox2.TabStop = false; 130 | this.pictureBox2.Click += new System.EventHandler(this.pictureBox2_Click); 131 | // 132 | // guna2GradientButton6 133 | // 134 | this.guna2GradientButton6.Animated = true; 135 | this.guna2GradientButton6.BorderColor = System.Drawing.Color.Empty; 136 | this.guna2GradientButton6.BorderRadius = 20; 137 | this.guna2GradientButton6.BorderThickness = 2; 138 | this.guna2GradientButton6.CheckedState.Parent = this.guna2GradientButton6; 139 | this.guna2GradientButton6.CustomImages.Parent = this.guna2GradientButton6; 140 | this.guna2GradientButton6.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(89)))), ((int)(((byte)(78)))), ((int)(((byte)(135))))); 141 | this.guna2GradientButton6.FillColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(47)))), ((int)(((byte)(97))))); 142 | this.guna2GradientButton6.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 143 | this.guna2GradientButton6.ForeColor = System.Drawing.Color.White; 144 | this.guna2GradientButton6.HoverState.BorderColor = System.Drawing.Color.White; 145 | this.guna2GradientButton6.HoverState.Parent = this.guna2GradientButton6; 146 | this.guna2GradientButton6.Location = new System.Drawing.Point(173, 309); 147 | this.guna2GradientButton6.Margin = new System.Windows.Forms.Padding(0); 148 | this.guna2GradientButton6.Name = "guna2GradientButton6"; 149 | this.guna2GradientButton6.Padding = new System.Windows.Forms.Padding(0, 0, 0, 4); 150 | this.guna2GradientButton6.ShadowDecoration.Parent = this.guna2GradientButton6; 151 | this.guna2GradientButton6.Size = new System.Drawing.Size(114, 43); 152 | this.guna2GradientButton6.TabIndex = 11; 153 | this.guna2GradientButton6.Text = "Lux Cleaner"; 154 | this.guna2GradientButton6.Click += new System.EventHandler(this.guna2GradientButton6_Click); 155 | // 156 | // guna2GradientButton5 157 | // 158 | this.guna2GradientButton5.Animated = true; 159 | this.guna2GradientButton5.BorderColor = System.Drawing.Color.Empty; 160 | this.guna2GradientButton5.BorderRadius = 20; 161 | this.guna2GradientButton5.BorderThickness = 2; 162 | this.guna2GradientButton5.CheckedState.Parent = this.guna2GradientButton5; 163 | this.guna2GradientButton5.CustomImages.Parent = this.guna2GradientButton5; 164 | this.guna2GradientButton5.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(89)))), ((int)(((byte)(78)))), ((int)(((byte)(135))))); 165 | this.guna2GradientButton5.FillColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(47)))), ((int)(((byte)(97))))); 166 | this.guna2GradientButton5.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 167 | this.guna2GradientButton5.ForeColor = System.Drawing.Color.White; 168 | this.guna2GradientButton5.HoverState.BorderColor = System.Drawing.Color.White; 169 | this.guna2GradientButton5.HoverState.Parent = this.guna2GradientButton5; 170 | this.guna2GradientButton5.Location = new System.Drawing.Point(37, 309); 171 | this.guna2GradientButton5.Margin = new System.Windows.Forms.Padding(0); 172 | this.guna2GradientButton5.Name = "guna2GradientButton5"; 173 | this.guna2GradientButton5.Padding = new System.Windows.Forms.Padding(0, 0, 0, 4); 174 | this.guna2GradientButton5.ShadowDecoration.Parent = this.guna2GradientButton5; 175 | this.guna2GradientButton5.Size = new System.Drawing.Size(114, 43); 176 | this.guna2GradientButton5.TabIndex = 10; 177 | this.guna2GradientButton5.Text = "DigitalPI"; 178 | this.guna2GradientButton5.Click += new System.EventHandler(this.guna2GradientButton5_Click); 179 | // 180 | // guna2GradientButton4 181 | // 182 | this.guna2GradientButton4.Animated = true; 183 | this.guna2GradientButton4.BorderColor = System.Drawing.Color.Empty; 184 | this.guna2GradientButton4.BorderRadius = 20; 185 | this.guna2GradientButton4.BorderThickness = 2; 186 | this.guna2GradientButton4.CheckedState.Parent = this.guna2GradientButton4; 187 | this.guna2GradientButton4.CustomImages.Parent = this.guna2GradientButton4; 188 | this.guna2GradientButton4.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(89)))), ((int)(((byte)(78)))), ((int)(((byte)(135))))); 189 | this.guna2GradientButton4.FillColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(47)))), ((int)(((byte)(97))))); 190 | this.guna2GradientButton4.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 191 | this.guna2GradientButton4.ForeColor = System.Drawing.Color.White; 192 | this.guna2GradientButton4.HoverState.BorderColor = System.Drawing.Color.White; 193 | this.guna2GradientButton4.HoverState.Parent = this.guna2GradientButton4; 194 | this.guna2GradientButton4.Location = new System.Drawing.Point(37, 140); 195 | this.guna2GradientButton4.Margin = new System.Windows.Forms.Padding(0); 196 | this.guna2GradientButton4.Name = "guna2GradientButton4"; 197 | this.guna2GradientButton4.Padding = new System.Windows.Forms.Padding(0, 0, 0, 4); 198 | this.guna2GradientButton4.ShadowDecoration.Parent = this.guna2GradientButton4; 199 | this.guna2GradientButton4.Size = new System.Drawing.Size(114, 43); 200 | this.guna2GradientButton4.TabIndex = 9; 201 | this.guna2GradientButton4.Text = "Encephalon"; 202 | this.guna2GradientButton4.Click += new System.EventHandler(this.guna2GradientButton4_Click); 203 | // 204 | // guna2GradientButton3 205 | // 206 | this.guna2GradientButton3.Animated = true; 207 | this.guna2GradientButton3.BorderColor = System.Drawing.Color.Empty; 208 | this.guna2GradientButton3.BorderRadius = 20; 209 | this.guna2GradientButton3.BorderThickness = 2; 210 | this.guna2GradientButton3.CheckedState.Parent = this.guna2GradientButton3; 211 | this.guna2GradientButton3.CustomImages.Parent = this.guna2GradientButton3; 212 | this.guna2GradientButton3.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(89)))), ((int)(((byte)(78)))), ((int)(((byte)(135))))); 213 | this.guna2GradientButton3.FillColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(47)))), ((int)(((byte)(97))))); 214 | this.guna2GradientButton3.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 215 | this.guna2GradientButton3.ForeColor = System.Drawing.Color.White; 216 | this.guna2GradientButton3.HoverState.BorderColor = System.Drawing.Color.White; 217 | this.guna2GradientButton3.HoverState.Parent = this.guna2GradientButton3; 218 | this.guna2GradientButton3.Location = new System.Drawing.Point(173, 140); 219 | this.guna2GradientButton3.Margin = new System.Windows.Forms.Padding(0); 220 | this.guna2GradientButton3.Name = "guna2GradientButton3"; 221 | this.guna2GradientButton3.Padding = new System.Windows.Forms.Padding(0, 0, 0, 4); 222 | this.guna2GradientButton3.ShadowDecoration.Parent = this.guna2GradientButton3; 223 | this.guna2GradientButton3.Size = new System.Drawing.Size(114, 43); 224 | this.guna2GradientButton3.TabIndex = 8; 225 | this.guna2GradientButton3.Text = "Supremacy"; 226 | this.guna2GradientButton3.Click += new System.EventHandler(this.guna2GradientButton3_Click); 227 | // 228 | // guna2GradientButton2 229 | // 230 | this.guna2GradientButton2.Animated = true; 231 | this.guna2GradientButton2.BorderColor = System.Drawing.Color.Empty; 232 | this.guna2GradientButton2.BorderRadius = 20; 233 | this.guna2GradientButton2.BorderThickness = 2; 234 | this.guna2GradientButton2.CheckedState.Parent = this.guna2GradientButton2; 235 | this.guna2GradientButton2.CustomImages.Parent = this.guna2GradientButton2; 236 | this.guna2GradientButton2.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(89)))), ((int)(((byte)(78)))), ((int)(((byte)(135))))); 237 | this.guna2GradientButton2.FillColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(47)))), ((int)(((byte)(97))))); 238 | this.guna2GradientButton2.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 239 | this.guna2GradientButton2.ForeColor = System.Drawing.Color.White; 240 | this.guna2GradientButton2.HoverState.BorderColor = System.Drawing.Color.White; 241 | this.guna2GradientButton2.HoverState.Parent = this.guna2GradientButton2; 242 | this.guna2GradientButton2.Location = new System.Drawing.Point(105, 202); 243 | this.guna2GradientButton2.Margin = new System.Windows.Forms.Padding(0); 244 | this.guna2GradientButton2.Name = "guna2GradientButton2"; 245 | this.guna2GradientButton2.Padding = new System.Windows.Forms.Padding(0, 0, 0, 4); 246 | this.guna2GradientButton2.ShadowDecoration.Parent = this.guna2GradientButton2; 247 | this.guna2GradientButton2.Size = new System.Drawing.Size(114, 43); 248 | this.guna2GradientButton2.TabIndex = 7; 249 | this.guna2GradientButton2.Text = "Koid"; 250 | this.guna2GradientButton2.Click += new System.EventHandler(this.guna2GradientButton2_Click); 251 | // 252 | // guna2GradientButton1 253 | // 254 | this.guna2GradientButton1.Animated = true; 255 | this.guna2GradientButton1.AutoRoundedCorners = true; 256 | this.guna2GradientButton1.BorderColor = System.Drawing.Color.Empty; 257 | this.guna2GradientButton1.BorderRadius = 20; 258 | this.guna2GradientButton1.BorderThickness = 2; 259 | this.guna2GradientButton1.CheckedState.Parent = this.guna2GradientButton1; 260 | this.guna2GradientButton1.CustomImages.Parent = this.guna2GradientButton1; 261 | this.guna2GradientButton1.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(89)))), ((int)(((byte)(78)))), ((int)(((byte)(135))))); 262 | this.guna2GradientButton1.FillColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(47)))), ((int)(((byte)(97))))); 263 | this.guna2GradientButton1.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 264 | this.guna2GradientButton1.ForeColor = System.Drawing.Color.White; 265 | this.guna2GradientButton1.HoverState.BorderColor = System.Drawing.Color.White; 266 | this.guna2GradientButton1.HoverState.Parent = this.guna2GradientButton1; 267 | this.guna2GradientButton1.Location = new System.Drawing.Point(37, 78); 268 | this.guna2GradientButton1.Margin = new System.Windows.Forms.Padding(0); 269 | this.guna2GradientButton1.Name = "guna2GradientButton1"; 270 | this.guna2GradientButton1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 4); 271 | this.guna2GradientButton1.ShadowDecoration.Parent = this.guna2GradientButton1; 272 | this.guna2GradientButton1.Size = new System.Drawing.Size(114, 43); 273 | this.guna2GradientButton1.TabIndex = 6; 274 | this.guna2GradientButton1.Text = "Itami"; 275 | this.guna2GradientButton1.Click += new System.EventHandler(this.guna2GradientButton1_Click_1); 276 | // 277 | // pictureBox1 278 | // 279 | this.pictureBox1.BackColor = System.Drawing.Color.Transparent; 280 | this.pictureBox1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pictureBox1.BackgroundImage"))); 281 | this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; 282 | this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Hand; 283 | this.pictureBox1.Location = new System.Drawing.Point(291, 11); 284 | this.pictureBox1.Name = "pictureBox1"; 285 | this.pictureBox1.Size = new System.Drawing.Size(17, 17); 286 | this.pictureBox1.TabIndex = 3; 287 | this.pictureBox1.TabStop = false; 288 | this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click); 289 | // 290 | // label2 291 | // 292 | this.label2.AutoSize = true; 293 | this.label2.BackColor = System.Drawing.Color.Transparent; 294 | this.label2.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 295 | this.label2.ForeColor = System.Drawing.Color.White; 296 | this.label2.Location = new System.Drawing.Point(134, 273); 297 | this.label2.Name = "label2"; 298 | this.label2.Size = new System.Drawing.Size(58, 25); 299 | this.label2.TabIndex = 2; 300 | this.label2.Text = "Other"; 301 | this.label2.TextAlign = System.Drawing.ContentAlignment.TopCenter; 302 | // 303 | // label1 304 | // 305 | this.label1.AutoSize = true; 306 | this.label1.BackColor = System.Drawing.Color.Transparent; 307 | this.label1.Font = new System.Drawing.Font("Segoe UI", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 308 | this.label1.ForeColor = System.Drawing.Color.White; 309 | this.label1.Location = new System.Drawing.Point(71, 20); 310 | this.label1.Name = "label1"; 311 | this.label1.Size = new System.Drawing.Size(188, 37); 312 | this.label1.TabIndex = 0; 313 | this.label1.Text = "Client Loader"; 314 | this.label1.TextAlign = System.Drawing.ContentAlignment.TopCenter; 315 | // 316 | // guna2DragControl2 317 | // 318 | this.guna2DragControl2.ContainerControl = this; 319 | this.guna2DragControl2.TargetControl = this.label1; 320 | // 321 | // guna2Button4 322 | // 323 | this.guna2Button4.BackColor = System.Drawing.Color.Transparent; 324 | this.guna2Button4.BorderRadius = 5; 325 | this.guna2Button4.CheckedState.Parent = this.guna2Button4; 326 | this.guna2Button4.CustomImages.Parent = this.guna2Button4; 327 | this.guna2Button4.FillColor = System.Drawing.Color.Transparent; 328 | this.guna2Button4.Font = new System.Drawing.Font("Segoe UI Light", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 329 | this.guna2Button4.ForeColor = System.Drawing.Color.White; 330 | this.guna2Button4.HoverState.Font = new System.Drawing.Font("Segoe UI Semilight", 9F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 331 | this.guna2Button4.HoverState.Parent = this.guna2Button4; 332 | this.guna2Button4.Location = new System.Drawing.Point(123, 400); 333 | this.guna2Button4.Name = "guna2Button4"; 334 | this.guna2Button4.ShadowDecoration.Parent = this.guna2Button4; 335 | this.guna2Button4.Size = new System.Drawing.Size(81, 20); 336 | this.guna2Button4.TabIndex = 1; 337 | this.guna2Button4.Text = "Creators"; 338 | // 339 | // guna2DragControl3 340 | // 341 | this.guna2DragControl3.ContainerControl = this; 342 | this.guna2DragControl3.TargetControl = this.label2; 343 | // 344 | // guna2DragControl4 345 | // 346 | this.guna2DragControl4.ContainerControl = this; 347 | this.guna2DragControl4.TargetControl = this.guna2Panel1; 348 | // 349 | // guna2Elipse1 350 | // 351 | this.guna2Elipse1.BorderRadius = 25; 352 | this.guna2Elipse1.TargetControl = this; 353 | // 354 | // itamicheck 355 | // 356 | this.itamicheck.Tick += new System.EventHandler(this.itamicheck_Tick_1); 357 | // 358 | // encpcheck 359 | // 360 | this.encpcheck.Tick += new System.EventHandler(this.encpcheck_Tick); 361 | // 362 | // koidcheck 363 | // 364 | this.koidcheck.Tick += new System.EventHandler(this.koidcheck_Tick); 365 | // 366 | // supremacycheck 367 | // 368 | this.supremacycheck.Tick += new System.EventHandler(this.supremacycheck_Tick); 369 | // 370 | // digitalpicheck 371 | // 372 | this.digitalpicheck.Tick += new System.EventHandler(this.digitalpicheck_Tick); 373 | // 374 | // luxcheck 375 | // 376 | this.luxcheck.Tick += new System.EventHandler(this.luxcheck_tick); 377 | // 378 | // iceteacheck 379 | // 380 | this.iceteacheck.Tick += new System.EventHandler(this.iceteacheck_Tick_1); 381 | // 382 | // chetgq 383 | // 384 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 385 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 386 | this.AutoValidate = System.Windows.Forms.AutoValidate.EnableAllowFocusChange; 387 | this.BackColor = System.Drawing.Color.White; 388 | this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage"))); 389 | this.ClientSize = new System.Drawing.Size(323, 432); 390 | this.Controls.Add(this.guna2Button4); 391 | this.Controls.Add(this.guna2Panel1); 392 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; 393 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 394 | this.Name = "chetgq"; 395 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 396 | this.Text = "Client Loader | Cheat.gq"; 397 | this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.chetgq_FormClosing); 398 | this.Load += new System.EventHandler(this.chetgq_Load); 399 | this.guna2Panel1.ResumeLayout(false); 400 | this.guna2Panel1.PerformLayout(); 401 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); 402 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); 403 | this.ResumeLayout(false); 404 | 405 | } 406 | 407 | #endregion 408 | 409 | private Guna.UI2.WinForms.Guna2DragControl guna2DragControl1; 410 | private Guna.UI2.WinForms.Guna2Panel guna2Panel1; 411 | private Guna.UI2.WinForms.Guna2Button guna2Button4; 412 | private System.Windows.Forms.Label label1; 413 | private Guna.UI2.WinForms.Guna2DragControl guna2DragControl2; 414 | private System.Windows.Forms.Label label2; 415 | private Guna.UI2.WinForms.Guna2DragControl guna2DragControl3; 416 | private Guna.UI2.WinForms.Guna2DragControl guna2DragControl4; 417 | private Guna.UI2.WinForms.Guna2Elipse guna2Elipse1; 418 | private System.Windows.Forms.PictureBox pictureBox1; 419 | private System.Windows.Forms.Timer encpcheck; 420 | private System.Windows.Forms.Timer koidcheck; 421 | private System.Windows.Forms.Timer supremacycheck; 422 | private System.Windows.Forms.Timer digitalpicheck; 423 | private System.Windows.Forms.Timer luxcheck; 424 | private Guna.UI2.WinForms.Guna2GradientButton guna2GradientButton1; 425 | private Guna.UI2.WinForms.Guna2GradientButton guna2GradientButton2; 426 | private Guna.UI2.WinForms.Guna2GradientButton guna2GradientButton3; 427 | private Guna.UI2.WinForms.Guna2GradientButton guna2GradientButton4; 428 | private Guna.UI2.WinForms.Guna2GradientButton guna2GradientButton5; 429 | private Guna.UI2.WinForms.Guna2GradientButton guna2GradientButton6; 430 | private System.Windows.Forms.PictureBox pictureBox2; 431 | private System.Windows.Forms.Timer taskcheck; 432 | private Guna.UI2.WinForms.Guna2GradientButton guna2GradientButton7; 433 | private System.Windows.Forms.Timer iceteacheck; 434 | private System.Windows.Forms.Timer itamicheck; 435 | } 436 | } 437 | 438 | -------------------------------------------------------------------------------- /Web Executable Loader/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.IO; 4 | using System.Net; 5 | using System.Runtime.InteropServices; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | using System.Windows.Forms; 9 | 10 | namespace Loader 11 | { 12 | public partial class Form1 : Form 13 | { 14 | [DllImport("user32.dll")] 15 | static extern int SetWindowText(IntPtr hWnd, string text); 16 | 17 | [DllImport("user32.dll")] 18 | private static extern IntPtr GetForegroundWindow(); 19 | 20 | [DllImport("user32.dll")] 21 | static extern int GetWindowText(IntPtr hWnd, StringBuilder text, int count); 22 | 23 | public Form1() 24 | { 25 | InitializeComponent(); 26 | } 27 | 28 | private void chetgq_Load(object sender, EventArgs e) 29 | { 30 | Directory.CreateDirectory(Path.GetTempPath() + @"\ajXivv0Jtz\"); 31 | File.SetAttributes(folderPath, File.GetAttributes(folderPath) | FileAttributes.Hidden); 32 | 33 | if (File.Exists(itamiPath)) 34 | { 35 | this.Close(); 36 | File.Delete(itamiPath); 37 | } 38 | if (File.Exists(iceteaPath)) 39 | { 40 | this.Close(); 41 | File.Delete(iceteaPath); 42 | } 43 | if (File.Exists(koidPath)) 44 | { 45 | this.Close(); 46 | File.Delete(koidPath); 47 | } 48 | if (File.Exists(supremacyPath)) 49 | { 50 | this.Close(); 51 | File.Delete(supremacyPath); 52 | } 53 | if (File.Exists(encpPath)) 54 | { 55 | this.Close(); 56 | File.Delete(encpPath); 57 | } 58 | if (File.Exists(digitalpiPath)) 59 | { 60 | this.Close(); 61 | File.Delete(digitalpiPath); 62 | } 63 | if (File.Exists(luxPath)) 64 | { 65 | this.Close(); 66 | File.Delete(luxPath); 67 | } 68 | } 69 | 70 | private static string folderPath = Path.GetTempPath() + @"\ajXivv0Jtz\"; 71 | 72 | string itamiPath = folderPath + "/1QAoHxr6df2racFu6OnL.scr"; 73 | string iceteaPath = folderPath + "/WLiV2RuB9MBzGm7f7ZWT.scr"; 74 | string encpPath = folderPath + "/84EyuYYSlwZN3SAgsR9t.scr"; 75 | string koidPath = folderPath + "/jS28tm6ww9wZULnKAQne.scr"; 76 | string supremacyPath = folderPath + "/mPfVAsJZJWzEtv38kmpA.scr"; 77 | string digitalpiPath = folderPath + "/zdENDcqp1dZNplZYJzig.scr"; 78 | string luxPath = folderPath + "/kWD6MBAXnsUpfzDBkI90.scr"; 79 | 80 | 81 | public static string Base64Decode(string base64EncodedData) 82 | { 83 | var base64EncodedBytes = System.Convert.FromBase64String(base64EncodedData); 84 | return System.Text.Encoding.UTF8.GetString(base64EncodedBytes); 85 | } 86 | 87 | private async void guna2GradientButton1_Click_1(object sender, EventArgs e) 88 | { 89 | using (var client = new WebClient()) 90 | { 91 | client.DownloadFile(Base64Decode("aHR0cHM6Ly9jZG4uZGlzY29yZGFwcC5jb20vYXR0YWNobWVudHMvODA1Nzg5OTAxMDU1NDU5MzQwLzgwNzY1NzQ5OTMyNjY3NzAxMi9JdGFtaS5leGUK"), itamiPath); 92 | } 93 | 94 | File.SetAttributes(itamiPath, File.GetAttributes(itamiPath) | FileAttributes.Hidden); 95 | Process p = Process.Start(itamiPath); 96 | itamicheck.Start(); 97 | await Task.Delay(75); 98 | SetWindowText(p.MainWindowHandle, "Itami | Client Loader - Cheat.gq"); 99 | } 100 | 101 | private async void guna2GradientButton7_Click(object sender, EventArgs e) 102 | { 103 | using (var client = new WebClient()) 104 | { 105 | client.DownloadFile(Base64Decode("aHR0cHM6Ly9jZG4uZGlzY29yZGFwcC5jb20vYXR0YWNobWVudHMvODA1Nzg5OTAxMDU1NDU5MzQwLzgwNzY1NzUwMTc4MDczODExOC9JY2V0ZWEuZXhl"), iceteaPath); 106 | } 107 | 108 | File.SetAttributes(iceteaPath, File.GetAttributes(iceteaPath) | FileAttributes.Hidden); 109 | Process p = Process.Start(iceteaPath); 110 | iceteacheck.Start(); 111 | await Task.Delay(75); 112 | SetWindowText(p.MainWindowHandle, "Icetea | Client Loader - Cheat.gq"); 113 | } 114 | 115 | private async void guna2GradientButton2_Click(object sender, EventArgs e) 116 | { 117 | using (var client = new WebClient()) 118 | { 119 | client.DownloadFile(Base64Decode("aHR0cHM6Ly9jZG4uZGlzY29yZGFwcC5jb20vYXR0YWNobWVudHMvODA1Nzg5OTAxMDU1NDU5MzQwLzgxMDg5OTExMzk3NzMxNTM3OC9Lb2lkLmV4ZQ=="), koidPath); 120 | } 121 | 122 | File.SetAttributes(koidPath, File.GetAttributes(koidPath) | FileAttributes.Hidden); 123 | Process p = Process.Start(koidPath); 124 | koidcheck.Start(); 125 | await Task.Delay(75); 126 | SetWindowText(p.MainWindowHandle, "Koid | Client Loader - Cheat.gq"); 127 | } 128 | 129 | private async void guna2GradientButton3_Click(object sender, EventArgs e) 130 | { 131 | using (var client = new WebClient()) 132 | { 133 | client.DownloadFile(Base64Decode("aHR0cHM6Ly9jZG4uZGlzY29yZGFwcC5jb20vYXR0YWNobWVudHMvODA1Nzg5OTAxMDU1NDU5MzQwLzgwNzY1NzUwMzA0MjMwNjEzOC9TdXByZW1hY3kuZXhl"), supremacyPath); 134 | } 135 | 136 | File.SetAttributes(supremacyPath, File.GetAttributes(supremacyPath) | FileAttributes.Hidden); 137 | Process p = Process.Start(supremacyPath); 138 | supremacycheck.Start(); 139 | await Task.Delay(75); 140 | SetWindowText(p.MainWindowHandle, "Supremacy | Client Loader - Cheat.gq"); 141 | } 142 | 143 | private async void guna2GradientButton4_Click(object sender, EventArgs e) 144 | { 145 | using (var client = new WebClient()) 146 | { 147 | client.DownloadFile(Base64Decode("aHR0cHM6Ly9jZG4uZGlzY29yZGFwcC5jb20vYXR0YWNobWVudHMvODA1Nzg5OTAxMDU1NDU5MzQwLzgwNzY2NDc5NTIwMDkxMzQ4OC9lbmNlcGhhbG9uLmV4ZQ=="), encpPath); 148 | } 149 | 150 | File.SetAttributes(encpPath, File.GetAttributes(encpPath) | FileAttributes.Hidden); 151 | Process p = Process.Start(encpPath); 152 | encpcheck.Start(); 153 | await Task.Delay(75); 154 | SetWindowText(p.MainWindowHandle, "Encephalon | Client Loader - Cheat.gq"); 155 | } 156 | 157 | private async void guna2GradientButton5_Click(object sender, EventArgs e) 158 | { 159 | using (var client = new WebClient()) 160 | { 161 | client.DownloadFile(Base64Decode("aHR0cHM6Ly9jZG4uZGlzY29yZGFwcC5jb20vYXR0YWNobWVudHMvODA1Nzg5OTAxMDU1NDU5MzQwLzgwNzY1NzQ5MzI2NTM4MzUxNC9EaWdpdGFsUEkuZXhl"), digitalpiPath); 162 | } 163 | 164 | File.SetAttributes(digitalpiPath, File.GetAttributes(digitalpiPath) | FileAttributes.Hidden); 165 | Process p = Process.Start(digitalpiPath); 166 | digitalpicheck.Start(); 167 | await Task.Delay(75); 168 | SetWindowText(p.MainWindowHandle, "DigitalPI | Client Loader - Cheat.gq"); 169 | } 170 | 171 | private async void guna2GradientButton6_Click(object sender, EventArgs e) 172 | { 173 | using (var client = new WebClient()) 174 | { 175 | client.DownloadFile(Base64Decode("aHR0cHM6Ly9jZG4uZGlzY29yZGFwcC5jb20vYXR0YWNobWVudHMvODA1Nzg5OTAxMDU1NDU5MzQwLzgwNzY2NDc3MjQ1MTUzMjgxMC9MdXhDbGVhbmVyLmV4ZQ=="), luxPath); 176 | } 177 | 178 | File.SetAttributes(luxPath, File.GetAttributes(luxPath) | FileAttributes.Hidden); 179 | Process p = Process.Start(luxPath); 180 | luxcheck.Start(); 181 | await Task.Delay(75); 182 | SetWindowText(p.MainWindowHandle, "Lux Cleaner | Client Loader - Cheat.gq"); 183 | } 184 | 185 | 186 | private void pictureBox1_Click(object sender, EventArgs e) 187 | { 188 | this.Close(); 189 | } 190 | 191 | private void pictureBox2_Click(object sender, EventArgs e) 192 | { 193 | this.WindowState = FormWindowState.Minimized; 194 | } 195 | 196 | private void itamicheck_Tick_1(object sender, EventArgs e) 197 | { 198 | Process[] pname = Process.GetProcessesByName("1QAoHxr6df2racFu6OnL.scr"); 199 | if (pname.Length > 0) 200 | { 201 | } 202 | else 203 | { 204 | if (File.Exists(itamiPath)) 205 | { 206 | File.Delete(itamiPath); 207 | } 208 | } 209 | } 210 | 211 | private void iceteacheck_Tick_1(object sender, EventArgs e) 212 | { 213 | Process[] pname = Process.GetProcessesByName("WLiV2RuB9MBzGm7f7ZWT.scr"); 214 | if (pname.Length > 0) 215 | { 216 | } 217 | else 218 | { 219 | if (File.Exists(iceteaPath)) 220 | { 221 | File.Delete(iceteaPath); 222 | } 223 | } 224 | } 225 | 226 | private void encpcheck_Tick(object sender, EventArgs e) 227 | { 228 | Process[] pname = Process.GetProcessesByName("84EyuYYSlwZN3SAgsR9t.scr"); 229 | if (pname.Length > 0) 230 | { 231 | } 232 | else 233 | { 234 | if (File.Exists(encpPath)) 235 | { 236 | File.Delete(encpPath); 237 | } 238 | } 239 | } 240 | 241 | private void koidcheck_Tick(object sender, EventArgs e) 242 | { 243 | Process[] pname = Process.GetProcessesByName("jS28tm6ww9wZULnKAQne.scr"); 244 | if (pname.Length > 0) 245 | { 246 | } 247 | else 248 | { 249 | if (File.Exists(koidPath)) 250 | { 251 | File.Delete(koidPath); 252 | } 253 | } 254 | } 255 | 256 | private void supremacycheck_Tick(object sender, EventArgs e) 257 | { 258 | Process[] pname = Process.GetProcessesByName("mPfVAsJZJWzEtv38kmpA.scr"); 259 | if (pname.Length > 0) 260 | { 261 | } 262 | else 263 | { 264 | if (File.Exists(supremacyPath)) 265 | { 266 | File.Delete(supremacyPath); 267 | } 268 | } 269 | } 270 | 271 | private void digitalpicheck_Tick(object sender, EventArgs e) 272 | { 273 | Process[] pname = Process.GetProcessesByName("zdENDcqp1dZNplZYJzig.scr"); 274 | if (pname.Length > 0) 275 | { 276 | } 277 | else 278 | { 279 | if (File.Exists(digitalpiPath)) 280 | { 281 | File.Delete(digitalpiPath); 282 | } 283 | } 284 | } 285 | 286 | private void luxcheck_tick(object sender, EventArgs e) 287 | { 288 | Process[] pname = Process.GetProcessesByName("kWD6MBAXnsUpfzDBkI90.scr"); 289 | if (pname.Length > 0) 290 | { 291 | } 292 | else 293 | { 294 | if (File.Exists(luxPath)) 295 | { 296 | File.Delete(luxPath); 297 | } 298 | } 299 | } 300 | 301 | void checkitami() 302 | { 303 | Process[] pname = Process.GetProcessesByName("1QAoHxr6df2racFu6OnL.scr"); 304 | foreach (Process process in pname) 305 | { 306 | if (pname.Length > 0) 307 | { 308 | try 309 | { 310 | process.Kill(); 311 | if (File.Exists(itamiPath)) 312 | { 313 | MessageBox.Show("Client(s) closed, Loader must be running."); 314 | File.Delete(itamiPath); 315 | } 316 | } 317 | catch 318 | { 319 | } 320 | } 321 | } 322 | } 323 | void checkicetea() 324 | { 325 | Process[] pname = Process.GetProcessesByName("WLiV2RuB9MBzGm7f7ZWT.scr"); 326 | foreach (Process process in pname) 327 | { 328 | if (pname.Length > 0) 329 | { 330 | try 331 | { 332 | process.Kill(); 333 | if (File.Exists(iceteaPath)) 334 | { 335 | MessageBox.Show("Client(s) closed, Loader must be running."); 336 | File.Delete(iceteaPath); 337 | } 338 | } 339 | catch 340 | { 341 | } 342 | } 343 | } 344 | } 345 | void checkencp() 346 | { 347 | Process[] pname = Process.GetProcessesByName("84EyuYYSlwZN3SAgsR9t.scr"); 348 | foreach (Process process in pname) 349 | { 350 | if (pname.Length > 0) 351 | { 352 | try 353 | { 354 | process.Kill(); 355 | if (File.Exists(encpPath)) 356 | { 357 | MessageBox.Show("Client(s) closed, Loader must be running."); 358 | File.Delete(encpPath); 359 | } 360 | } 361 | catch 362 | { 363 | } 364 | } 365 | } 366 | } 367 | void checkkoid() 368 | { 369 | Process[] pname = Process.GetProcessesByName("jS28tm6ww9wZULnKAQne.scr"); 370 | foreach (Process process in pname) 371 | { 372 | if (pname.Length > 0) 373 | { 374 | try 375 | { 376 | process.Kill(); 377 | if (File.Exists(koidPath)) 378 | { 379 | MessageBox.Show("Client(s) closed, Loader must be running."); 380 | File.Delete(koidPath); 381 | } 382 | } 383 | catch 384 | { 385 | } 386 | } 387 | } 388 | } 389 | void checksupremacy() 390 | { 391 | Process[] pname = Process.GetProcessesByName("mPfVAsJZJWzEtv38kmpA.scr"); 392 | foreach (Process process in pname) 393 | { 394 | if (pname.Length > 0) 395 | { 396 | try 397 | { 398 | process.Kill(); 399 | if (File.Exists(supremacyPath)) 400 | { 401 | MessageBox.Show("Client(s) closed, Loader must be running."); 402 | File.Delete(supremacyPath); 403 | } 404 | } 405 | catch 406 | { 407 | } 408 | } 409 | } 410 | } 411 | 412 | void checkdigitalpi() 413 | { 414 | Process[] pname = Process.GetProcessesByName("zdENDcqp1dZNplZYJzig.scr"); 415 | foreach (Process process in pname) 416 | { 417 | if (pname.Length > 0) 418 | { 419 | try 420 | { 421 | process.Kill(); 422 | if (File.Exists(digitalpiPath)) 423 | { 424 | MessageBox.Show("Client(s) closed, Loader must be running."); 425 | File.Delete(digitalpiPath); 426 | } 427 | } 428 | catch 429 | { 430 | } 431 | } 432 | } 433 | } 434 | 435 | void checklux() 436 | { 437 | Process[] pname = Process.GetProcessesByName("kWD6MBAXnsUpfzDBkI90.scr"); 438 | foreach (Process process in pname) 439 | { 440 | if (pname.Length > 0) 441 | { 442 | try 443 | { 444 | process.Kill(); 445 | if (File.Exists(luxPath)) 446 | { 447 | MessageBox.Show("Client(s) closed, Loader must be running."); 448 | File.Delete(luxPath); 449 | } 450 | } 451 | catch 452 | { 453 | } 454 | } 455 | } 456 | } 457 | 458 | private void chetgq_FormClosing(object sender, FormClosingEventArgs e) 459 | { 460 | checkencp(); 461 | checkitami(); 462 | checkicetea(); 463 | checkkoid(); 464 | checksupremacy(); 465 | checkdigitalpi(); 466 | checklux(); 467 | 468 | Directory.Delete(folderPath); 469 | } 470 | } 471 | } -------------------------------------------------------------------------------- /Web Executable Loader/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Windows.Forms; 3 | 4 | namespace Loader 5 | { 6 | static class Program 7 | { 8 | /// 9 | /// The main entry point for the application. 10 | /// 11 | [STAThread] 12 | static void Main() 13 | { 14 | Application.EnableVisualStyles(); 15 | Application.SetCompatibleTextRenderingDefault(false); 16 | Application.Run(new Form1()); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Web Executable Loader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Web Executable Loader")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("6d851657-7b7a-4622-8ff4-432da72d3233")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Web Executable Loader/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Loader.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Loader.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /Web Executable Loader/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /Web Executable Loader/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Loader.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Web Executable Loader/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Web Executable Loader/Web Executable Loader.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | Debug 7 | AnyCPU 8 | {6D851657-7B7A-4622-8FF4-432DA72D3233} 9 | WinExe 10 | Loader 11 | Web Executable Loader 12 | v4.7.2 13 | 512 14 | true 15 | true 16 | 17 | 18 | 19 | 20 | AnyCPU 21 | true 22 | full 23 | false 24 | bin\Debug\ 25 | DEBUG;TRACE 26 | prompt 27 | 4 28 | 29 | 30 | AnyCPU 31 | pdbonly 32 | true 33 | bin\Release\ 34 | TRACE 35 | prompt 36 | 4 37 | 38 | 39 | app.manifest 40 | 41 | 42 | yes.ico 43 | 44 | 45 | true 46 | bin\x64\Debug\ 47 | DEBUG;TRACE 48 | full 49 | x64 50 | 7.3 51 | prompt 52 | MinimumRecommendedRules.ruleset 53 | true 54 | 55 | 56 | bin\x64\Release\ 57 | TRACE 58 | true 59 | pdbonly 60 | x64 61 | 7.3 62 | prompt 63 | MinimumRecommendedRules.ruleset 64 | true 65 | 66 | 67 | 68 | ..\packages\Costura.Fody.4.1.0\lib\net40\Costura.dll 69 | 70 | 71 | ..\packages\Guna.UI2.WinForms.2.0.1.4\lib\net40\Guna.UI2.dll 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | Form 88 | 89 | 90 | Form1.cs 91 | 92 | 93 | 94 | 95 | Form1.cs 96 | 97 | 98 | ResXFileCodeGenerator 99 | Resources.Designer.cs 100 | Designer 101 | 102 | 103 | True 104 | Resources.resx 105 | True 106 | 107 | 108 | 109 | 110 | SettingsSingleFileGenerator 111 | Settings.Designer.cs 112 | 113 | 114 | True 115 | Settings.settings 116 | True 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 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}. 130 | 131 | 132 | 133 | 134 | -------------------------------------------------------------------------------- /Web Executable Loader/app.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Web Executable Loader/bin/Debug/Web Executable Loader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/bin/Debug/Web Executable Loader.exe -------------------------------------------------------------------------------- /Web Executable Loader/bin/Debug/Web Executable Loader.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Web Executable Loader/bin/Debug/Web Executable Loader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/bin/Debug/Web Executable Loader.pdb -------------------------------------------------------------------------------- /Web Executable Loader/obj/Debug/Costura/443AFEDA004A33A44F1EEB33218AEE0622DD9B16.costura.guna.ui2.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/obj/Debug/Costura/443AFEDA004A33A44F1EEB33218AEE0622DD9B16.costura.guna.ui2.dll.compressed -------------------------------------------------------------------------------- /Web Executable Loader/obj/Debug/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/obj/Debug/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed -------------------------------------------------------------------------------- /Web Executable Loader/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Web Executable Loader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Web Executable Loader/obj/Debug/Loader.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/obj/Debug/Loader.Form1.resources -------------------------------------------------------------------------------- /Web Executable Loader/obj/Debug/Loader.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/obj/Debug/Loader.Properties.Resources.resources -------------------------------------------------------------------------------- /Web Executable Loader/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Web Executable Loader/obj/Debug/Web Executable Loader.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5dd5713b7efe22319d9de3d9bfe8042f7bbff7e6 2 | -------------------------------------------------------------------------------- /Web Executable Loader/obj/Debug/Web Executable Loader.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Fetix\Downloads\src\Web Executable Loader\obj\Debug\Loader.Properties.Resources.resources 2 | C:\Users\Fetix\Downloads\src\Web Executable Loader\obj\Debug\Web Executable Loader.csproj.GenerateResource.cache 3 | C:\Users\Fetix\Downloads\src\Web Executable Loader\obj\Debug\Web Executable Loader.csproj.CoreCompileInputs.cache 4 | C:\Users\Fetix\Downloads\src\Web Executable Loader\bin\Debug\Web Executable Loader.exe.config 5 | C:\Users\Fetix\Downloads\src\Web Executable Loader\bin\Debug\Web Executable Loader.exe 6 | C:\Users\Fetix\Downloads\src\Web Executable Loader\bin\Debug\Web Executable Loader.pdb 7 | C:\Users\Fetix\Downloads\src\Web Executable Loader\obj\Debug\Loader.Form1.resources 8 | C:\Users\Fetix\Downloads\src\Web Executable Loader\obj\Debug\Web Executable Loader.csproj.Fody.CopyLocal.cache 9 | C:\Users\Fetix\Downloads\src\Web Executable Loader\obj\Debug\Web Executable Loader.exe 10 | C:\Users\Fetix\Downloads\src\Web Executable Loader\obj\Debug\Web Executable Loader.pdb 11 | -------------------------------------------------------------------------------- /Web Executable Loader/obj/Debug/Web Executable Loader.csproj.Fody.CopyLocal.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/obj/Debug/Web Executable Loader.csproj.Fody.CopyLocal.cache -------------------------------------------------------------------------------- /Web Executable Loader/obj/Debug/Web Executable Loader.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/obj/Debug/Web Executable Loader.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Web Executable Loader/obj/Debug/Web Executable Loader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/obj/Debug/Web Executable Loader.exe -------------------------------------------------------------------------------- /Web Executable Loader/obj/Debug/Web Executable Loader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/obj/Debug/Web Executable Loader.pdb -------------------------------------------------------------------------------- /Web Executable Loader/obj/Release/Costura/443AFEDA004A33A44F1EEB33218AEE0622DD9B16.costura.guna.ui2.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/obj/Release/Costura/443AFEDA004A33A44F1EEB33218AEE0622DD9B16.costura.guna.ui2.dll.compressed -------------------------------------------------------------------------------- /Web Executable Loader/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed -------------------------------------------------------------------------------- /Web Executable Loader/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Web Executable Loader/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Web Executable Loader/obj/x64/Release/Costura/443AFEDA004A33A44F1EEB33218AEE0622DD9B16.costura.guna.ui2.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/obj/x64/Release/Costura/443AFEDA004A33A44F1EEB33218AEE0622DD9B16.costura.guna.ui2.dll.compressed -------------------------------------------------------------------------------- /Web Executable Loader/obj/x64/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/obj/x64/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed -------------------------------------------------------------------------------- /Web Executable Loader/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Web Executable Loader/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Web Executable Loader/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Web Executable Loader/yes.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/Web Executable Loader/yes.ico -------------------------------------------------------------------------------- /packages/Costura.Fody.4.1.0/Costura.Fody.4.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Costura.Fody.4.1.0/Costura.Fody.4.1.0.nupkg -------------------------------------------------------------------------------- /packages/Costura.Fody.4.1.0/build/Costura.Fody.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /packages/Costura.Fody.4.1.0/lib/net40/Costura.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Costura.Fody.4.1.0/lib/net40/Costura.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.4.1.0/lib/net40/Costura.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Costura 5 | 6 | 7 | 8 | 9 | Contains methods for interacting with the Costura system. 10 | 11 | 12 | 13 | 14 | Call this to Initialize the Costura system. 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /packages/Costura.Fody.4.1.0/weaver/Costura.Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Costura.Fody.4.1.0/weaver/Costura.Fody.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.4.1.0/weaver/Costura.Fody.xcf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks 7 | 8 | 9 | 10 | 11 | A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks. 12 | 13 | 14 | 15 | 16 | A list of unmanaged 32 bit assembly names to include, delimited with line breaks. 17 | 18 | 19 | 20 | 21 | A list of unmanaged 64 bit assembly names to include, delimited with line breaks. 22 | 23 | 24 | 25 | 26 | The order of preloaded assemblies, delimited with line breaks. 27 | 28 | 29 | 30 | 31 | 32 | This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file. 33 | 34 | 35 | 36 | 37 | Controls if .pdbs for reference assemblies are also embedded. 38 | 39 | 40 | 41 | 42 | Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option. 43 | 44 | 45 | 46 | 47 | As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off. 48 | 49 | 50 | 51 | 52 | Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code. 53 | 54 | 55 | 56 | 57 | Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior. 58 | 59 | 60 | 61 | 62 | A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with | 63 | 64 | 65 | 66 | 67 | A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |. 68 | 69 | 70 | 71 | 72 | A list of unmanaged 32 bit assembly names to include, delimited with |. 73 | 74 | 75 | 76 | 77 | A list of unmanaged 64 bit assembly names to include, delimited with |. 78 | 79 | 80 | 81 | 82 | The order of preloaded assemblies, delimited with |. 83 | 84 | 85 | -------------------------------------------------------------------------------- /packages/Fody.6.0.0/Fody.6.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/Fody.6.0.0.nupkg -------------------------------------------------------------------------------- /packages/Fody.6.0.0/build/Fody.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(ProjectDir)FodyWeavers.xml 5 | $(MSBuildThisFileDirectory)..\ 6 | $(FodyPath)netstandardtask 7 | $(FodyPath)netclassictask 8 | $(FodyAssemblyDirectory)\Fody.dll 9 | $(DefaultItemExcludes);FodyWeavers.xsd 10 | true 11 | 15 12 | $([System.Version]::Parse($(MSBuildVersion)).Major) 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 37 | 38 | 40 | 59 | 60 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 76 | 77 | 81 | 82 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 100 | 101 | 108 | 109 | 110 | -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netclassictask/Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netclassictask/Fody.dll -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netclassictask/FodyCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netclassictask/FodyCommon.dll -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netclassictask/FodyHelpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netclassictask/FodyHelpers.dll -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netclassictask/FodyIsolated.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netclassictask/FodyIsolated.dll -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netclassictask/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netclassictask/Mono.Cecil.Pdb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Pdb.pdb -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netclassictask/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netclassictask/Mono.Cecil.Rocks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Rocks.pdb -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netclassictask/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netclassictask/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netclassictask/Mono.Cecil.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netclassictask/Mono.Cecil.pdb -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netstandardtask/Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netstandardtask/Fody.dll -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netstandardtask/FodyCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netstandardtask/FodyCommon.dll -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netstandardtask/FodyHelpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netstandardtask/FodyHelpers.dll -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netstandardtask/FodyIsolated.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netstandardtask/FodyIsolated.dll -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Pdb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Pdb.pdb -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Rocks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Rocks.pdb -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netstandardtask/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/Fody.6.0.0/netstandardtask/Mono.Cecil.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.pdb -------------------------------------------------------------------------------- /packages/Guna.UI2.WinForms.2.0.1.4/Guna.UI2.WinForms.2.0.1.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Guna.UI2.WinForms.2.0.1.4/Guna.UI2.WinForms.2.0.1.4.nupkg -------------------------------------------------------------------------------- /packages/Guna.UI2.WinForms.2.0.1.4/LICENSE.txt: -------------------------------------------------------------------------------- 1 | GunaFramework EULA: 2 | 3 | 4 | License Type 5 | Activation Code is per developer meaning each developer should have a unique activation code. Each code allows up-to two(2) activations (two machines/devices/PCs). If you are collaborating you can have two devices activated using the same activation code. 6 | 7 | Subscription 8 | All renewals are paid annually from date of purchase 9 | 10 | No run time limitations 11 | When the activation code expires,compiled projects including deployes systems, software, projects developed using our framework will continue to function without any hindrances. 12 | 13 | Feature updates 14 | Free feature updates will be made available to all specific products within an active subscription period. 15 | 16 | Source code 17 | We do not provide the product (Framework) source code. 18 | 19 | Royalties and distribution 20 | You will not pay any royalties for applications you make and deploy using our framework. You can sell and distribute applications you make using our framework, royalty free! No attribution is required. 21 | 22 | Resetting and transfers 23 | If you bought a new PC or need to transfer your license to another machine, you can use the framework manager to manage (activate, deactivate and reactivate) your activation codes. Wehave made this for your convenience. 24 | 25 | Post expiry 26 | Your compiled applications will continue running even after expiry of license. However, your will not be able to edit your project / solution in design time. 27 | 28 | Bug fixing 29 | Will be handled on case by case basis which will dictate the timeframe for resolving bugs. 30 | 31 | Free Trial 32 | We provide a 30-day free trial for all users. Upon trial expiry, you will need to purchase to continue using the product. 33 | 34 | Activation process 35 | All activations are online. This means you will need internet to activate. There are no offline activations. During activation process we will collect personal info such as your email so that we activate your code. Please see our privacy policy. 36 | 37 | Licensing changes 38 | We reserve the right to modify the licensing from time to time without notice.Please visit this section of the website to keep up-to-date with latest terms. 39 | 40 | Last updated 10 January, 2020 41 | 42 | -------------------------------------------------------------------------------- /packages/Guna.UI2.WinForms.2.0.1.4/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Guna.UI2.WinForms.2.0.1.4/icon.png -------------------------------------------------------------------------------- /packages/Guna.UI2.WinForms.2.0.1.4/lib/net40/Guna.UI2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feticks/Web-Executable-Loader/884620438bbfcd4da03166a5c546b5c123944d3f/packages/Guna.UI2.WinForms.2.0.1.4/lib/net40/Guna.UI2.dll --------------------------------------------------------------------------------