This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
CC-Functions/Misc/HID.cs

108 lines
3.8 KiB
C#
Raw Normal View History

using System;
using System.Diagnostics;
using System.Linq;
2019-11-29 21:27:24 +01:00
using System.Management;
using System.Security.Cryptography;
using System.Text;
namespace Misc
{
public static class HID
{
private static byte[] _fingerPrint;
private static readonly string HIDClasses = @"Win32_Processor:UniqueId
Win32_Processor:ProcessorId
Win32_Processor:Name
Win32_Processor:Manufacturer
Win32_BIOS:Manufacturer
Win32_BIOS:SMBIOSBIOSVersion
Win32_BIOS:IdentificationCode
Win32_BIOS:SerialNumber
Win32_BIOS:ReleaseDate
Win32_BIOS:Version
Win32_BaseBoard:Model
Win32_BaseBoard:Manufacturer
Win32_BaseBoard:Name
Win32_BaseBoard:SerialNumber
Win32_NetworkAdapterConfiguration:MACAddress:IPEnabled";
public static byte[] Value
{
get
{
2019-11-29 21:27:24 +01:00
if (_fingerPrint == null)
{
var fingerprint_tmp = "";
if (Type.GetType("Mono.Runtime") == null)
2019-11-29 21:27:24 +01:00
{
HIDClasses.Split('\r').Select(s =>
{
if (s.StartsWith("\n"))
s = s.Remove(0, 1);
return s.Split(':');
}).ToList().ForEach(s =>
2019-11-29 21:27:24 +01:00
{
using (var mc = new ManagementClass(s[0]))
using (var moc = mc.GetInstances())
2019-11-29 21:27:24 +01:00
{
var array = moc.OfType<ManagementBaseObject>().ToArray();
for (var j = 0; j < array.Length; j++)
2019-11-29 21:27:24 +01:00
{
if (s.Length > 2 && array[j][s[2]].ToString() != "True") continue;
try
{
fingerprint_tmp += array[j][s[1]].ToString();
break;
}
catch
{
}
2019-11-29 21:27:24 +01:00
}
}
});
}
else //Linux implementation. This will not work if you are using Mono on windows or do not have uname and lscpu available
{
var p = new Process
{
StartInfo =
{
UseShellExecute = false,
RedirectStandardOutput = true,
FileName = "uname",
Arguments = "-nmpio"
}
};
p.Start();
fingerprint_tmp = p.StandardOutput.ReadToEnd();
p.WaitForExit();
p.StartInfo.FileName = "lscpu";
p.StartInfo.Arguments = "";
p.Start();
fingerprint_tmp += p.StandardOutput.ReadToEnd();
p.WaitForExit();
}
2019-11-29 21:27:24 +01:00
using (MD5 sec = new MD5CryptoServiceProvider())
{
var bt = Encoding.ASCII.GetBytes(fingerprint_tmp);
2019-11-29 21:27:24 +01:00
_fingerPrint = sec.ComputeHash(bt);
}
}
2019-11-29 21:27:24 +01:00
return _fingerPrint;
}
}
public static byte[] EncryptLocal(byte[] unencrypted)
{
return ProtectedData.Protect(unencrypted, Value, DataProtectionScope.CurrentUser);
}
2019-11-29 21:27:24 +01:00
public static byte[] DecryptLocal(byte[] encrypted)
{
return ProtectedData.Unprotect(encrypted, Value, DataProtectionScope.CurrentUser);
}
2019-11-29 21:27:24 +01:00
}
}