- Katılım
- 25 May 2023
- Mesajlar
- 5,665
- Beğeniler
- 7,711
- İletişim
Bu kullanıcıyla herhangi bir iş veya ticaret yapmak istiyorsanız, forumdan uzaklaştırıldığını sakın unutmayın.
Basic HWID Spoofer | emre aydın - Fırtınam
NOTE
VS22 C++/NET Masaustu gelıstırmelerınızı + winsdk kurarsanız sorunsuz buıld alabılırsınız
Kodları
boş console uygulamasına koyun oluşturulması gerekenler aşağıda
Main.cs
Program.cs
GORSEL
NOTE
VS22 C++/NET Masaustu gelıstırmelerınızı + winsdk kurarsanız sorunsuz buıld alabılırsınız
Kodları
boş console uygulamasına koyun oluşturulması gerekenler aşağıda
Main.cs
Program.cs
GORSEL
C#:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Win32;
namespace DenemeSpoofer
{
class Main
{
public static void AsciiText()
{
Console.WriteLine();
Console.ForegroundColor = ConsoleColor.Green;
}
public static void CheckHWID()
{
try
{
Console.Clear();
string key = "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\IDConfigDB\\Hardware Profiles\\0001";
string guid = (string)Registry.GetValue(key, "GUID", (object)"default");
Console.WriteLine("[Deneme Spoofer] Current HWID: " + guid);
Console.ReadKey();
}
catch (Exception)
{
Console.Clear();
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("[Deneme Spoofer] There was an error while getting your HWID");
Console.ReadKey();
}
}
public static void SpoofHWID()
{
try
{
Console.Clear();
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("[Deneme Spoofer] Yours custom HWID should looks like this");
Console.WriteLine("CustomName-12345-12345-1234-123456789");
Console.WriteLine("");
Console.ForegroundColor = ConsoleColor.Red;
Console.Write("WRONG HWID CAN DESTROY YOUR REGISTRY");
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("\n Type your custom HWID: ");
var CustomHWID = Console.ReadLine();
string key = "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\IDConfigDB\\Hardware Profiles\\0001";
string oldHwid = (string)Registry.GetValue(key, "HwProfileGuid", (object)"default");
string newHwid = "{" + CustomHWID + "}";
Registry.SetValue(key, "GUID", (object)newHwid);
Registry.SetValue(key, "HwProfileGuid", (object)newHwid);
Console.WriteLine("[Deneme Spoofer] Successfully Changed Your HWID!");
Console.WriteLine("\n[Deneme Spoofer] Old HWID: " + oldHwid);
Console.WriteLine("\n[Deneme Spoofer] New HWID: " + newHwid);
Console.ReadKey();
}
catch (Exception)
{
Console.Clear();
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("[Deneme Spoofer] - Failed to change HWID, try to run this as administrator");
Console.ReadKey();
}
}
public static void RandomSpoofHWID()
{
try
{
Console.Clear();
string key = "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\IDConfigDB\\Hardware Profiles\\0001";
string oldHwid = (string)Registry.GetValue(key, "HwProfileGuid", (object)"default");
string newHwid = "{TryAgain-" + GenID(5) + "-" + GenID(5) + "-" + GenID(4) + "-" + GenID(9) + "}";
Registry.SetValue(key, "GUID", (object)newHwid);
Registry.SetValue(key, "HwProfileGuid", (object)newHwid);
Console.WriteLine("[Deneme Spoofer] Successfully Changed Your HWID!");
Console.WriteLine("\n[Deneme Spoofer] Old HWID: " + oldHwid);
Console.WriteLine("\n[Deneme Spoofer] New HWID: " + newHwid);
Console.ReadKey();
}
catch (Exception)
{
Console.Clear();
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("[Deneme Spoofer] - Failed to change HWID, try to run this as administrator");
Console.ReadKey();
}
}
private static Random random = new Random();
public static string GenID(int length)
{
string chars = "126345879";
return new string(Enumerable.Repeat(chars, length).Select(s => s[random.Next(s.Length)]).ToArray());
}
}
}
C#:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DenemeSpoofer
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("");
Console.WriteLine("");
Console.Title = " Deneme Spoofer";
DenemeSpoofer.Main.AsciiText();
Console.WriteLine();
Console.WriteLine();
Console.WriteLine();
Console.WriteLine("[ 1 ] Spoof HWID");
Console.WriteLine("[ 2 ] Own Spoof HWID");
Console.WriteLine("[ 3 ] Check HWID");
Console.WriteLine();
Console.Write("Selection : ");
var SpooferOptions = Console.ReadLine();
if (SpooferOptions == "1")
{
DenemeSpoofer.Main.RandomSpoofHWID();
}
if (SpooferOptions == "2")
{
DenemeSpoofer.Main.SpoofHWID();
}
if (SpooferOptions == "3")
{
DenemeSpoofer.Main.CheckHWID();
}
else
{
Console.WriteLine("Maybe actually select one thats valid.");
}
}
}
}