Windows PCのアクティブなMACアドレスを取得するために、次のコードを使用しています。詐称された元のMACアドレスを検出するにはどうすればよいですか?
private static string macId()
{
return identifier("Win32_NetworkAdapterConfiguration", "MACAddress", "IPEnabled");
}
private 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 one
if (result == "")
{
try
{
result = mo[wmiProperty].ToString();
break;
}
catch
{
}
}
}
}
return result;
}
//Return a hardware identifier
private 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 one
if (result == "")
{
try
{
result = mo[wmiProperty].ToString();
break;
}
catch
{
}
}
}
return result;
}
MACアドレスの取得には問題ありません。問題は、MACアドレスが偽装され、偽装されたMACアドレスを返す場合です。工場で一意で割り当てられた元のMACアドレスを何らかの形で取得したいと考えています。そうする方法はありますか?
MACをスプーフィングの全体のポイントがあるように、コンピュータ(およびソフトウェアそれは正しいMACであると信じています)。 – Joe
@Joe、はい。私の最初の質問は「本当にすべてのコンピュータを一意に識別する方法はありますか」でした。 MACアドレスを一意の識別子として使用できるという提案があります。それはこの疑問につながります。 –
いくつかの他のアイデアはここにあります:http://stackoverflow.com/questions/671876/whats-a-good-way-to-uniquely-identify-a-computer – Joe