Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
443
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. network={
  2. ssid="Some name"
  3. scan_ssid=1
  4. key_mgmt=WPA-EAP
  5. eap=PEAP
  6. identity="my-user-id"
  7. password="(clear text password here)"
  8. ca_cert="/usr/share/ca-certificates/mozilla/GeoTrust_Global_CA.crt"
  9. phase2="auth=MSCHAPV2"
  10. }
  11.  
  12. * added support for storing EAP user password as NtPasswordHash instead
  13. of plaintext password when using MSCHAP or MSCHAPv2 for
  14. authentication (hash:<16-octet hex value>); added nt_password_hash
  15. tool for hashing password to generate NtPasswordHash
  16.  
  17. echo -n plaintext_password_here | iconv -t utf16le | openssl md4
  18.  
  19. password=hash:6602f435f01b9173889a8d3b9bdcfd0b
  20.  
  21. echo -n plaintext_password_here | iconv -t UTF-16LE | openssl md4
  22.  
  23. wpa_passphrase YOUR_SSID YOUR_PASSWORD
  24.  
  25. network={
  26. ssid="YOUR_SSID"
  27. #psk="YOUR_PASSWORD"
  28. psk=6a24edf1592aec4465271b7dcd204601b6e78df3186ce1a62a31f40ae9630702
  29. }
  30.  
  31. psk=6a24edf1592aec4465271b7dcd204601b6e78df3186ce1a62a31f40ae9630702
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement