c#获取机器唯一识别码的方法记忆

2024-01-07 13:48

本文主要是介绍c#获取机器唯一识别码的方法记忆,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

来源:


http://www.cnblogs.com/leestar54/p/4375173.html

前言

在客户端认证的过程中,我们总要获取客户机的唯一识别信息,曾经以为MAC地址是不会变的,但是现在各种改,特别是使用无线上网卡,MAC地址插一次变一次,所以这样使用MAC就没有什么意义了,怎么办,又开始求助Google,最后找到一个折中的方案

原理

通过获取主板、处理器、BIOS、mac、显卡、硬盘等的ID生成唯一识别码

建议

1、使用那些不经常更换的模块来生成识别码。

2、如果经常更换MAC,显卡,硬盘,则不要使用这些ID。

3、确保使用static变量在整个应用来保存唯一识别码。

实现

复制代码
using System;
using System.Management;
using System.Security.Cryptography;
using System.Security;
using System.Collections;
using System.Text;
namespace Security
{/// <summary>/// Generates a 16 byte Unique Identification code of a computer/// Example: 4876-8DB5-EE85-69D3-FE52-8CF7-395D-2EA9/// </summary>public class FingerPrint  {private static string fingerPrint = string.Empty;public static string Value(){if (string.IsNullOrEmpty(fingerPrint)){fingerPrint = GetHash("CPU >> " + cpuId() + "\nBIOS >> " + biosId() + "\nBASE >> " + baseId()//+"\nDISK >> "+ diskId() + "\nVIDEO >> " + videoId() +"\nMAC >> "+ macId());}return fingerPrint;}private static string GetHash(string s){MD5 sec = new MD5CryptoServiceProvider();ASCIIEncoding enc = new ASCIIEncoding();byte[] bt = enc.GetBytes(s);return GetHexString(sec.ComputeHash(bt));}private static string GetHexString(byte[] bt){string s = string.Empty;for (int i = 0; i < bt.Length; i++){byte b = bt[i];int n, n1, n2;n = (int)b;n1 = n & 15;n2 = (n >> 4) & 15;if (n2 > 9)s += ((char)(n2 - 10 + (int)'A')).ToString();elses += n2.ToString();if (n1 > 9)s += ((char)(n1 - 10 + (int)'A')).ToString();elses += n1.ToString();if ((i + 1) != bt.Length && (i + 1) % 2 == 0) s += "-";}return s;}#region Original Device ID Getting Code//Return a hardware identifierprivate static string identifier(string wmiClass, string wmiProperty, string wmiMustBeTrue){string result = "";System.Management.ManagementClass mc = new System.Management.ManagementClass(wmiClass);System.Management.ManagementObjectCollection moc = mc.GetInstances();foreach (System.Management.ManagementObject mo in moc){if (mo[wmiMustBeTrue].ToString() == "True"){//Only get the first oneif (result == ""){try{result = mo[wmiProperty].ToString();break;}catch{}}}}return result;}//Return a hardware identifierprivate static string identifier(string wmiClass, string wmiProperty){string result = "";System.Management.ManagementClass mc = new System.Management.ManagementClass(wmiClass);System.Management.ManagementObjectCollection moc = mc.GetInstances();foreach (System.Management.ManagementObject mo in moc){//Only get the first oneif (result == ""){try{result = mo[wmiProperty].ToString();break;}catch{}}}return result;}private static string cpuId(){//Uses first CPU identifier available in order of preference//Don't get all identifiers, as it is very time consumingstring retVal = identifier("Win32_Processor", "UniqueId");if (retVal == "") //If no UniqueID, use ProcessorID
            {retVal = identifier("Win32_Processor", "ProcessorId");if (retVal == "") //If no ProcessorId, use Name
                {retVal = identifier("Win32_Processor", "Name");if (retVal == "") //If no Name, use Manufacturer
                    {retVal = identifier("Win32_Processor", "Manufacturer");}//Add clock speed for extra securityretVal += identifier("Win32_Processor", "MaxClockSpeed");}}return retVal;}//BIOS Identifierprivate static string biosId(){return identifier("Win32_BIOS", "Manufacturer")+ identifier("Win32_BIOS", "SMBIOSBIOSVersion")+ identifier("Win32_BIOS", "IdentificationCode")+ identifier("Win32_BIOS", "SerialNumber")+ identifier("Win32_BIOS", "ReleaseDate")+ identifier("Win32_BIOS", "Version");}//Main physical hard drive IDprivate static string diskId(){return identifier("Win32_DiskDrive", "Model")+ identifier("Win32_DiskDrive", "Manufacturer")+ identifier("Win32_DiskDrive", "Signature")+ identifier("Win32_DiskDrive", "TotalHeads");}//Motherboard IDprivate static string baseId(){return identifier("Win32_BaseBoard", "Model")+ identifier("Win32_BaseBoard", "Manufacturer")+ identifier("Win32_BaseBoard", "Name")+ identifier("Win32_BaseBoard", "SerialNumber");}//Primary video controller IDprivate static string videoId(){return identifier("Win32_VideoController", "DriverVersion")+ identifier("Win32_VideoController", "Name");}//First enabled network card IDprivate static string macId(){return identifier("Win32_NetworkAdapterConfiguration", "MACAddress", "IPEnabled");}#endregion}
}
复制代码

 

参考

http://www.codeproject.com/Articles/28678/Generating-Unique-Key-Finger-Print-for-a-Computer

 

补充

现在遇到一些平板等简陋的机型,竟然获取到的所有设备标识都一样(除了mac),最后只好在本地再生成一个软件自身的标识,然后每次在计算标识的时候附带上,这样不会再重复了吧。

代码如下:

复制代码
        private static string localkey(){string path=Environment.CurrentDirectory + "client.key";if (File.Exists(path)){StreamReader sr = new StreamReader(path);string key= sr.ReadToEnd();sr.Close();return key;}else{StreamWriter sw = File.CreateText(path);string key = Guid.NewGuid().ToString();sw.WriteLine(key);sw.Close();return key;}}
复制代码

可以再把该文件设为隐藏等手段,防止用户误操作。

这篇关于c#获取机器唯一识别码的方法记忆的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/580119

相关文章

2. c#从不同cs的文件调用函数

1.文件目录如下: 2. Program.cs文件的主函数如下 using System;using System.Collections.Generic;using System.Linq;using System.Threading.Tasks;using System.Windows.Forms;namespace datasAnalysis{internal static

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount

浅谈主机加固,六种有效的主机加固方法

在数字化时代,数据的价值不言而喻,但随之而来的安全威胁也日益严峻。从勒索病毒到内部泄露,企业的数据安全面临着前所未有的挑战。为了应对这些挑战,一种全新的主机加固解决方案应运而生。 MCK主机加固解决方案,采用先进的安全容器中间件技术,构建起一套内核级的纵深立体防护体系。这一体系突破了传统安全防护的局限,即使在管理员权限被恶意利用的情况下,也能确保服务器的安全稳定运行。 普适主机加固措施:

webm怎么转换成mp4?这几种方法超多人在用!

webm怎么转换成mp4?WebM作为一种新兴的视频编码格式,近年来逐渐进入大众视野,其背后承载着诸多优势,但同时也伴随着不容忽视的局限性,首要挑战在于其兼容性边界,尽管WebM已广泛适应于众多网站与软件平台,但在特定应用环境或老旧设备上,其兼容难题依旧凸显,为用户体验带来不便,再者,WebM格式的非普适性也体现在编辑流程上,由于它并非行业内的通用标准,编辑过程中可能会遭遇格式不兼容的障碍,导致操

【机器学习】高斯过程的基本概念和应用领域以及在python中的实例

引言 高斯过程(Gaussian Process,简称GP)是一种概率模型,用于描述一组随机变量的联合概率分布,其中任何一个有限维度的子集都具有高斯分布 文章目录 引言一、高斯过程1.1 基本定义1.1.1 随机过程1.1.2 高斯分布 1.2 高斯过程的特性1.2.1 联合高斯性1.2.2 均值函数1.2.3 协方差函数(或核函数) 1.3 核函数1.4 高斯过程回归(Gauss

透彻!驯服大型语言模型(LLMs)的五种方法,及具体方法选择思路

引言 随着时间的发展,大型语言模型不再停留在演示阶段而是逐步面向生产系统的应用,随着人们期望的不断增加,目标也发生了巨大的变化。在短短的几个月的时间里,人们对大模型的认识已经从对其zero-shot能力感到惊讶,转变为考虑改进模型质量、提高模型可用性。 「大语言模型(LLMs)其实就是利用高容量的模型架构(例如Transformer)对海量的、多种多样的数据分布进行建模得到,它包含了大量的先验

【学习笔记】 陈强-机器学习-Python-Ch15 人工神经网络(1)sklearn

系列文章目录 监督学习:参数方法 【学习笔记】 陈强-机器学习-Python-Ch4 线性回归 【学习笔记】 陈强-机器学习-Python-Ch5 逻辑回归 【课后题练习】 陈强-机器学习-Python-Ch5 逻辑回归(SAheart.csv) 【学习笔记】 陈强-机器学习-Python-Ch6 多项逻辑回归 【学习笔记 及 课后题练习】 陈强-机器学习-Python-Ch7 判别分析 【学

【北交大信息所AI-Max2】使用方法

BJTU信息所集群AI_MAX2使用方法 使用的前提是预约到相应的算力卡,拥有登录权限的账号密码,一般为导师组共用一个。 有浏览器、ssh工具就可以。 1.新建集群Terminal 浏览器登陆10.126.62.75 (如果是1集群把75改成66) 交互式开发 执行器选Terminal 密码随便设一个(需记住) 工作空间:私有数据、全部文件 加速器选GeForce_RTX_2080_Ti

用命令行的方式启动.netcore webapi

用命令行的方式启动.netcore web项目 进入指定的项目文件夹,比如我发布后的代码放在下面文件夹中 在此地址栏中输入“cmd”,打开命令提示符,进入到发布代码目录 命令行启动.netcore项目的命令为:  dotnet 项目启动文件.dll --urls="http://*:对外端口" --ip="本机ip" --port=项目内部端口 例: dotnet Imagine.M