Add files via upload

This commit is contained in:
Bouletmarc 2022-10-31 00:23:04 -04:00 committed by GitHub
parent c034564a85
commit 8ab921ec84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
17 changed files with 318 additions and 0 deletions

15
AssemblyInfo.cs Normal file
View File

@ -0,0 +1,15 @@
// Assembly Service Ranger KG, Version 1.0.0.0
[assembly: System.Reflection.AssemblyConfiguration("")]
[assembly: System.Reflection.AssemblyCompany("Tecnologia Compartida")]
[assembly: System.Reflection.AssemblyProduct("Service Ranger")]
[assembly: System.Runtime.InteropServices.ComVisible(false)]
[assembly: System.Runtime.InteropServices.Guid("c3d82f65-48cc-432d-876f-55748467ce72")]
[assembly: System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows=true)]
[assembly: System.Reflection.AssemblyTitle("Service Ranger")]
[assembly: System.Reflection.AssemblyDescription("")]
[assembly: System.Reflection.AssemblyCopyright("Copyright \x00a9 Tecnologia Compartida 2011")]
[assembly: System.Reflection.AssemblyTrademark("")]
[assembly: System.Reflection.AssemblyFileVersion("1.0.0.0")]
[assembly: System.Runtime.CompilerServices.CompilationRelaxations(8)]

14
Class0.cs Normal file
View File

@ -0,0 +1,14 @@
using System;
using System.Windows.Forms;
internal static class Class0
{
[STAThread]
private static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new SR());
}
}

1
Global.cs Normal file
View File

@ -0,0 +1 @@


149
SR.cs Normal file
View File

@ -0,0 +1,149 @@
using Microsoft.VisualBasic;
using Microsoft.VisualBasic.CompilerServices;
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
public class SR : Form
{
private IContainer icontainer_0;
private TextBox PCIDtextBox;
private TextBox textBox_0;
private Button button1;
private Label label2;
private Label lbl1;
private Label label4;
private TextBox textBox_1;
private Label label1;
public SR()
{
this.InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (this.PCIDtextBox.Text != "")
{
ulong num = Conversions.ToULong("&H" + this.PCIDtextBox.Text);
string str = this.method_0(num, 0);
this.textBox_0.Text = str;
string str2 = this.method_1(num, 0xff);
this.textBox_1.Text = str2;
}
}
protected override void Dispose(bool disposing)
{
if (disposing && (this.icontainer_0 != null))
{
this.icontainer_0.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
ComponentResourceManager manager = new ComponentResourceManager(typeof(SR));
this.PCIDtextBox = new TextBox();
this.textBox_0 = new TextBox();
this.button1 = new Button();
this.label2 = new Label();
this.lbl1 = new Label();
this.label4 = new Label();
this.textBox_1 = new TextBox();
this.label1 = new Label();
base.SuspendLayout();
this.PCIDtextBox.CharacterCasing = CharacterCasing.Upper;
this.PCIDtextBox.Location = new Point(0x33, 0x23);
this.PCIDtextBox.Name = "PCIDtextBox";
this.PCIDtextBox.Size = new Size(150, 20);
this.PCIDtextBox.TabIndex = 0;
this.textBox_0.Location = new Point(0x33, 0x4b);
this.textBox_0.Name = "tb1";
this.textBox_0.ReadOnly = true;
this.textBox_0.Size = new Size(150, 20);
this.textBox_0.TabIndex = 1;
this.textBox_0.TabStop = false;
this.button1.Location = new Point(0x59, 0x91);
this.button1.Name = "button1";
this.button1.Size = new Size(0x4b, 0x17);
this.button1.TabIndex = 2;
this.button1.Text = "Generate";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new EventHandler(this.button1_Click);
this.label2.AutoSize = true;
this.label2.Location = new Point(0x2c, 20);
this.label2.Name = "label2";
this.label2.Size = new Size(0x20, 13);
this.label2.TabIndex = 5;
this.label2.Text = "PCID";
this.lbl1.AutoSize = true;
this.lbl1.Location = new Point(0x2c, 60);
this.lbl1.Name = "lbl1";
this.lbl1.Size = new Size(90, 13);
this.lbl1.TabIndex = 6;
this.lbl1.Text = "Level 0 (Activate)";
this.label4.AutoSize = true;
this.label4.Location = new Point(0x2c, 100);
this.label4.Name = "label4";
this.label4.Size = new Size(0x62, 13);
this.label4.TabIndex = 8;
this.label4.Text = "Level 255 (Update)";
this.textBox_1.Location = new Point(0x33, 0x73);
this.textBox_1.Name = "tb2";
this.textBox_1.ReadOnly = true;
this.textBox_1.Size = new Size(150, 20);
this.textBox_1.TabIndex = 7;
this.textBox_1.TabStop = false;
this.label1.AutoSize = true;
this.label1.ForeColor = Color.Silver;
this.label1.Location = new Point(140, 190);
this.label1.Name = "label1";
this.label1.Size = new Size(0x5d, 13);
this.label1.TabIndex = 9;
this.label1.Text = "Coded by C#4v32";
base.AutoScaleDimensions = new SizeF(6f, 13f);
base.AutoScaleMode = AutoScaleMode.Font;
base.ClientSize = new Size(0xf4, 0xd4);
base.Controls.Add(this.label1);
base.Controls.Add(this.label4);
base.Controls.Add(this.textBox_1);
base.Controls.Add(this.lbl1);
base.Controls.Add(this.label2);
base.Controls.Add(this.button1);
base.Controls.Add(this.textBox_0);
base.Controls.Add(this.PCIDtextBox);
base.FormBorderStyle = FormBorderStyle.FixedSingle;
base.Icon = (Icon) manager.GetObject("$this.Icon");
base.MaximizeBox = false;
base.Name = "SR";
base.StartPosition = FormStartPosition.CenterScreen;
this.Text = "Service Ranger 3.2";
base.Load += new EventHandler(this.SR_Load);
base.ResumeLayout(false);
base.PerformLayout();
}
private string method_0(ulong ulong_0, ushort ushort_0)
{
decimal num2 = new decimal(0xf76 + (ushort_0 << 0x10));
decimal num3 = new decimal(0x1a2b3c4d00000000UL);
ulong num4 = Convert.ToUInt64(decimal.Add(num2, num3));
return Conversion.Hex((ulong) ((ulong_0 ^ num4) + ((ulong) 0x708192a3b4c5L)));
}
private string method_1(ulong ulong_0, ushort ushort_0)
{
decimal num2 = new decimal(0x7ff + (ushort_0 << 0x10));
decimal num3 = new decimal(0x1b2b4c5a00000000UL);
ulong num4 = Convert.ToUInt64(decimal.Add(num2, num3));
return Conversion.Hex((ulong) ((ulong_0 ^ num4) + ((ulong) 0x608493a7b4b5L)));
}
private void SR_Load(object sender, EventArgs e)
{
}
}

BIN
SR.resources Normal file

Binary file not shown.

49
Service Ranger KG.csproj Normal file
View File

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<ProjectType>local</ProjectType>
<ProjectVersion>7.10.377</ProjectVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{C121761C-1CA9-4DC3-80BD-501E323918AC}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<AssemblyName>Service Ranger KG</AssemblyName>
<OutputType>WinExe</OutputType>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Drawing" />
<Reference Include="Microsoft.VisualBasic" />
<Compile Include="AssemblyInfo.cs" />
<Compile Include="Global.cs" />
<Compile Include="Service_Ranger\Properties\Resources.cs" />
<Compile Include="Service_Ranger\Properties\Settings.cs" />
<Compile Include="Class0.cs" />
<Compile Include="SR.cs">
<SubType>Form</SubType>
</Compile>
<EmbeddedResource Include="SR.resources" />
<EmbeddedResource Include="Service_Ranger.Properties.Resources.resources" />
</ItemGroup>
</Project>

25
Service Ranger KG.sln Normal file
View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29418.71
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Service Ranger KG", "Service Ranger KG.csproj", "{C121761C-1CA9-4DC3-80BD-501E323918AC}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x86 = Debug|x86
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C121761C-1CA9-4DC3-80BD-501E323918AC}.Debug|x86.ActiveCfg = Debug|x86
{C121761C-1CA9-4DC3-80BD-501E323918AC}.Debug|x86.Build.0 = Debug|x86
{C121761C-1CA9-4DC3-80BD-501E323918AC}.Release|x86.ActiveCfg = Release|x86
{C121761C-1CA9-4DC3-80BD-501E323918AC}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {9E5458BF-1A75-4D58-A36E-E0D334133912}
EndGlobalSection
EndGlobal

Binary file not shown.

View File

@ -0,0 +1,44 @@
namespace Service_Ranger.Properties
{
using System;
using System.CodeDom.Compiler;
using System.ComponentModel;
using System.Diagnostics;
using System.Globalization;
using System.Resources;
using System.Runtime.CompilerServices;
[DebuggerNonUserCode, GeneratedCode("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), CompilerGenerated]
internal class Resources
{
private static System.Resources.ResourceManager resourceManager_0;
private static CultureInfo cultureInfo_0;
internal Resources()
{
}
[EditorBrowsable(EditorBrowsableState.Advanced)]
internal static System.Resources.ResourceManager ResourceManager
{
get
{
if (resourceManager_0 == null)
{
resourceManager_0 = new System.Resources.ResourceManager("Service_Ranger.Properties.Resources", typeof(Resources).Assembly);
}
return resourceManager_0;
}
}
[EditorBrowsable(EditorBrowsableState.Advanced)]
internal static CultureInfo Culture
{
get =>
cultureInfo_0;
set =>
cultureInfo_0 = value;
}
}
}

View File

@ -0,0 +1,16 @@
namespace Service_Ranger.Properties
{
using System.CodeDom.Compiler;
using System.Configuration;
using System.Runtime.CompilerServices;
[GeneratedCode("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0"), CompilerGenerated]
internal sealed class Settings : ApplicationSettingsBase
{
private static Settings settings_0 = ((Settings) Synchronized(new Settings()));
public static Settings Default =>
settings_0;
}
}

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,5 @@
C:\Users\boule\Desktop\TUNING\Eaton 3.2\KeyGen\Nouveau dossier\obj\x86\Debug\Service Ranger KG.csprojAssemblyReference.cache
C:\Users\boule\Desktop\TUNING\Eaton 3.2\KeyGen\Nouveau dossier\bin\Debug\Service Ranger KG.exe
C:\Users\boule\Desktop\TUNING\Eaton 3.2\KeyGen\Nouveau dossier\bin\Debug\Service Ranger KG.pdb
C:\Users\boule\Desktop\TUNING\Eaton 3.2\KeyGen\Nouveau dossier\obj\x86\Debug\Service Ranger KG.exe
C:\Users\boule\Desktop\TUNING\Eaton 3.2\KeyGen\Nouveau dossier\obj\x86\Debug\Service Ranger KG.pdb

Binary file not shown.

Binary file not shown.