我正在尝试通过命令提示符连接到受保护的Wifi。我使用netsh wlan show profile
命令可以看到该配置文件。问题是我可以运行netsh wlan connect ssid="MYSSID" name="PROFILENAME"
并获得响应Connection request was completed successfully.
,但是,当我检查Wifi配置文件时,计算机要求输入网络密钥。任何搜索(对我而言)都会导致使用密码添加配置文件,而不连接到所述配置文件。连接时是否可以绕过手动输入Wifi密码的方法?
.xml文件(使用netsh wlan export profile
创建):
<?xml version="1.0"?>
<WLANProfile xmlns="http://www.microsoft.com/networking/WLAN/profile/v1">
<name>ssid_name</name>
<SSIDConfig>
<SSID>
<hex>some_hex_string</hex>
<name>ssid_name</name>
</SSID>
<nonBroadcast>true</nonBroadcast>
</SSIDConfig>
<connectionType>connection_type</connectionType>
<connectionMode>auto</connectionMode>
<MSM>
<security>
<authEncryption>
<authentication>auth_type</authentication>
<encryption>encryp_type</encryption>
<useOneX>false</useOneX>
</authEncryption>
<sharedKey>
<keyType>passPhrase</keyType>
<protected>true</protected>
<keyMaterial>really_long_hex_string</keyMaterial>
</sharedKey>
</security>
</MSM>
答案 0 :(得分:0)
def h(x):
return pd.Series(x.str.replace(">", ""))
df = df.apply(h)
中的值大多数是由同一用户在同一台计算机上生成的,如果经过编码,则不能使用它。另一个选项是在<keyMaterial>
<protected>false</protected>
和密码。