正在获取Wi-Fi配置文件信息

本文关键字:配置文件 信息 Wi-Fi 获取 | 更新日期: 2023-09-27 18:00:02

我使用的是Windows 8.1,它没有管理wifi网络配置文件的工具(带有GUI)。所以我正在写一个对我有帮助的。我在谷歌上搜索了一下,找到了Managed Wifi API,在教程的帮助下,我成功地把这个代码放在了一起:

foreach (WlanClient.WlanInterface wlanIface in client.Interfaces)
{
    foreach (Wlan.WlanProfileInfo profileInfo in wlanIface.GetProfiles())
    {
        string profileName = profileInfo.profileName;
        ListViewItem item = new ListViewItem(profileName);
        string profileXML = wlanIface.GetProfileXml(profileInfo.profileName);
        XmlDocument doc = new XmlDocument();
        doc.LoadXml(profileXML);
        var NSManager = new XmlNamespaceManager(doc.NameTable);
        NSManager.AddNamespace("d", "http://www.microsoft.com/networking/WLAN/profile/v1");
        XmlNode node = doc.DocumentElement.SelectSingleNode("//d:WLANProfile/d:MSM/d:security/d:authEncryption/d:authentication", NSManager);
        item.SubItems.Add(node.InnerText);
        Profiles.Items.Add(item);
    }
}

获取已保存的网络配置文件的列表并将其打印在ListView上。我有两个问题。一个是如何使用管理Wifi API获取完整的配置文件信息?因为我唯一能得到的就是个人资料的名字。网站中没有任何文档。

第二个问题是,由于我无法使用API获得完整的网络信息,我使用API以XML格式打印配置文件信息,然后解析XML并读取它

<?xml version="1.0"?>
<WLANProfile xmlns="http://www.microsoft.com/networking/WLAN/profile/v1">
    <name>MEDO PUB</name>
    <SSIDConfig>
        <SSID>
            <hex>4D45444F20505542</hex>
            <name>MEDO PUB</name>
        </SSID>
    </SSIDConfig>
    <connectionType>ESS</connectionType>
    <connectionMode>manual</connectionMode>
    <MSM>
        <security>
            <authEncryption>
                <authentication>WPA2PSK</authentication>
                <encryption>AES</encryption>
                <useOneX>false</useOneX>
            </authEncryption>
            <sharedKey>
                <keyType>passPhrase</keyType>
                <protected>true</protected>
                <keyMaterial>someReallyLongStringLike500+chars</keyMaterial>
            </sharedKey>
        </security>
    </MSM>
</WLANProfile>

我需要获取wifi密码,但我认为它是加密的。如何获取实际密码或解码加密密码?


更新:我发现了两个链接:暴露WiFi密码秘密和[C++]转储无线密码,但我不确定它们是否有效,或者如何在C#中实现它们。

正在获取Wi-Fi配置文件信息

正如我在评论中提到的,您可以使用

netsh wlan show profiles

然后

netsh wlan show profile "<a profile from the last step>" key=clear

如果你仍然想在代码中做到这一点,请继续阅读:

您正在使用的托管WiFi API没有此功能,但您可以轻松添加。

将Interop.cs中的WlanProfileFlags枚举修改为:

[Flags]
public enum WlanProfileFlags
{
    /// <remarks>
    /// The only option available on Windows XP SP2.
    /// </remarks>
    AllUser = 0,
    GroupPolicy = 1,
    User = 2,
    GetPlaintextKey = 4
}

将此函数添加到WlanApi.cs文件中,可能靠近GetProfileXml函数(出于组织的考虑)。

/// <summary>
/// Gets the profile's XML specification. Key is unencrypted.
/// </summary>
/// <param name="profileName">The name of the profile.</param>
/// <returns>The XML document.</returns>
public string GetProfileXmlUnencrypted(string profileName)
{
    IntPtr profileXmlPtr;
    Wlan.WlanProfileFlags flags = Wlan.WlanProfileFlags.GetPlaintextKey;
    Wlan.WlanAccess access;
    Wlan.ThrowIfError(
        Wlan.WlanGetProfile(client.clientHandle, info.interfaceGuid, profileName, IntPtr.Zero, out profileXmlPtr, out flags, out access));
    try
    {
        return Marshal.PtrToStringUni(profileXmlPtr);
    }
    finally
    {
        Wlan.WlanFreeMemory(profileXmlPtr);
    }
}

您可以调用此函数来获取未加密的密钥。

我还没有对此进行测试,但它应该会起作用。如果你有任何问题,请告诉我。