vanhoefm / krackattacks-scripts

Other
3.3k stars 768 forks source link

FT-PSK Question #8

Closed envoys closed 6 years ago

envoys commented 6 years ago

So I have the TPLINK WN722N and Kali Linux. Putting the key_mgmt=FT-PSK and running wpa_supplicant, it does nothing, all it says is Successfully initialized wpa_supplicant. Running wpa_cli and it just keeps scanning. Is this because the AP isn't broadcasting using FT?

ABAC95 commented 6 years ago

Try with key_mgmt=WPA-PSK. It worked out for me.

f3d0x0 commented 6 years ago

Yes I can confirm it. This is my conf file used for a WPA2-PSK (I'm using a Kali box for this demostration)

_ctrl_interface=/var/run/wpa_supplicant update_config=1 network={ ssid="your-ssid" keymgmt=WPA-PSK psk="your-password" }

Bonus I've also made a version for WPA2-PSK with hidden SSID:

_ctrl_interface=/var/run/wpa_supplicant update_config=1 ap_scan=1 update_config=1 network={ scan_ssid=1 ssid="your-ssid" keymgmt=WPA-PSK psk="your-password" }

vanhoefm commented 6 years ago

This means your AP isn't using 802.11r meaning it cannot be vulnerable. Using key_mgmt=WPA-PSK has no point.