├── attacks.h ├── src ├── tls │ ├── .gitignore │ ├── pkcs5.h │ ├── pkcs8.h │ ├── Makefile │ ├── rsa.h │ └── pkcs1.h ├── crypto │ ├── .gitignore │ ├── tls_openssl.h │ ├── crypto_none.c │ ├── md5.h │ ├── md5_i.h │ ├── aes.h │ ├── dh_group5.h │ ├── aes_siv.h │ ├── sha384_i.h │ ├── sha1_i.h │ ├── sha256_i.h │ ├── sha512_i.h │ ├── des_i.h │ ├── dh_groups.h │ ├── aes-encblock.c │ ├── random.h │ ├── dh_group5.c │ ├── sha384.h │ ├── sha512.h │ ├── milenage.h │ └── sha1.h ├── radius │ ├── .gitignore │ └── Makefile ├── utils │ ├── .gitignore │ ├── crc32.h │ ├── uuid.h │ ├── module_tests.h │ ├── browser.h │ ├── platform.h │ ├── bitfield.h │ ├── edit.h │ ├── ip_addr.h │ ├── base64.h │ ├── Makefile │ ├── ext_password_i.h │ └── ext_password.h ├── drivers │ ├── .gitignore │ ├── Makefile │ ├── rfkill.h │ ├── netlink.h │ ├── linux_ioctl.h │ └── linux_wext.h ├── fst │ └── Makefile ├── pae │ ├── Makefile │ └── ieee802_1x_key.h ├── l2_packet │ └── Makefile ├── eapol_auth │ └── Makefile ├── lib.rules ├── eapol_supp │ └── Makefile ├── common │ ├── version.h │ ├── attacks.h │ ├── Makefile │ ├── linux_bridge.h │ └── qca-vendor-attr.h ├── ap │ ├── authsrv.h │ ├── bss_load.h │ ├── wpa_auth_glue.h │ ├── tkip_countermeasures.h │ ├── fils_hlp.h │ ├── dhcp_snoop.h │ ├── hs20.h │ ├── wmm.h │ ├── vlan.h │ ├── taxonomy.h │ ├── acs.h │ ├── vlan.c │ ├── neighbor_db.h │ ├── iapp.h │ ├── ndisc_snoop.h │ ├── p2p_hostapd.h │ ├── eth_p_oui.h │ ├── wnm_ap.h │ ├── vlan_util.h │ └── ap_mlme.h ├── eap_server │ └── Makefile ├── Makefile ├── eap_common │ ├── chap.h │ ├── eap_peap_common.h │ ├── Makefile │ ├── chap.c │ ├── eap_wsc_common.h │ ├── eap_wsc_common.c │ ├── eap_ikev2_common.h │ └── eap_common.h ├── eap_peer │ ├── Makefile │ ├── mschapv2.h │ └── tncc.h ├── p2p │ └── Makefile ├── rsn_supp │ └── Makefile └── wps │ ├── http.h │ ├── Makefile │ └── upnp_xml.h ├── wpa_supplicant ├── eap_proxy_dummy.mk ├── eap_proxy_dummy.mak ├── .gitignore ├── dbus │ ├── .gitignore │ ├── fi.w1.wpa_supplicant1.service.in │ ├── fi.epitest.hostap.WPASupplicant.service.in │ ├── dbus_common.h │ └── dbus_common_i.h ├── wpa_gui-qt4 │ ├── lang │ │ └── .gitignore │ ├── .gitignore │ ├── wpa_gui.desktop │ ├── icons.qrc │ ├── icons_png.qrc │ ├── scanresultsitem.cpp │ ├── scanresultsitem.h │ ├── stringquery.h │ ├── signalbar.h │ ├── stringquery.cpp │ ├── wpamsg.h │ ├── icons │ │ └── Makefile │ ├── addinterface.h │ ├── userdatarequest.h │ └── scanresults.h ├── doc │ └── docbook │ │ ├── .gitignore │ │ └── Makefile ├── examples │ ├── plaintext.conf │ ├── wep.conf │ ├── wpa-psk-tkip.conf │ ├── ieee8021x.conf │ ├── wpa2-eap-ccmp.conf │ └── 60_wpa_supplicant ├── wpa_supplicant_template.conf ├── binder │ ├── .clang-format │ ├── iface.cpp │ ├── fi │ │ └── w1 │ │ │ └── wpa_supplicant │ │ │ ├── IIface.aidl │ │ │ └── ISupplicantCallbacks.aidl │ ├── binder_constants.cpp │ ├── binder_i.h │ └── binder_constants.h ├── systemd │ ├── wpa_supplicant.service.in │ ├── wpa_supplicant.service.arg.in │ ├── wpa_supplicant-wired.service.arg.in │ └── wpa_supplicant-nl80211.service.arg.in ├── wpa_supplicant_conf.sh ├── libwpa_test.c ├── blacklist.h ├── wifi_display.h ├── wpas_glue.h └── main_none.c ├── krackattack ├── wpaspy.py ├── hostapd.conf ├── libwifi │ ├── .gitignore │ └── __init__.py ├── debug-ft-hwsim │ ├── hostap0.sh │ ├── hostap1.sh │ ├── vtund.client.conf │ ├── supplicant.sh │ ├── vtund.server.conf │ ├── supplicant.conf │ ├── gen-traffic.py │ ├── README.md │ ├── initradios.sh │ ├── hostap1.conf │ └── hostap0.conf ├── requirements.txt ├── build.sh ├── example-captures │ ├── example-ft.pcapng │ └── example-tptk-attack.pcapng ├── pysetup.sh ├── debug-scripts │ └── dhcp-request.py └── reenable-hwcrypto.sh ├── tests ├── hwsim │ ├── vm │ │ ├── .gitignore │ │ ├── uevent.sh │ │ ├── parallel-vm.sh │ │ └── bisect-run.sh │ ├── auth_serv │ │ ├── iCA-user │ │ │ ├── serial │ │ │ ├── index.txt.attr │ │ │ ├── index.txt │ │ │ ├── user.req │ │ │ └── careq.pem │ │ ├── rootCA │ │ │ ├── serial │ │ │ ├── index.txt.attr │ │ │ └── index.txt │ │ ├── test-ca │ │ │ ├── serial │ │ │ ├── index.txt.attr │ │ │ └── private │ │ │ │ └── cakey.pem │ │ ├── iCA-server │ │ │ ├── serial │ │ │ ├── index.txt.attr │ │ │ ├── index.txt │ │ │ ├── server.req │ │ │ ├── careq.pem │ │ │ └── server-revoked.req │ │ ├── radius_clients.conf │ │ ├── radius_clients_ipv6.conf │ │ ├── radius_clients_none.conf │ │ ├── index-unknown.txt │ │ ├── ca.der │ │ ├── ocsp-req.der │ │ ├── user.pkcs12 │ │ ├── user2.pkcs12 │ │ ├── user3.pkcs12 │ │ ├── server.pkcs12 │ │ ├── server-extra.pkcs12 │ │ ├── ocsp-server-cache.der │ │ ├── ocsp-multi-server-cache.der │ │ ├── ocsp-server-cache.der-invalid │ │ ├── eap_user_vlan.conf │ │ ├── dh.conf │ │ ├── ec-ca.key │ │ ├── ec-user.key │ │ ├── ec-server.key │ │ ├── ec2-user-p256.key │ │ ├── ec2-ca.key │ │ ├── ec2-server.key │ │ ├── ec2-user.key │ │ ├── dh2.conf │ │ ├── index.txt │ │ ├── index-revoked.txt │ │ ├── user.csr │ │ ├── dh_param_3072.pem │ │ ├── server.csr │ │ ├── server-eku-client.csr │ │ ├── server-no-dnsname.csr │ │ ├── server-eku-client-server.csr │ │ ├── dsaparam.pem │ │ ├── as.conf │ │ ├── ec-ca.pem │ │ ├── as2.conf │ │ ├── hlr_auc_gw.gsm │ │ ├── ec2-ca.pem │ │ ├── ca-key.pem │ │ ├── user.rsa-key │ │ ├── user.key │ │ ├── hlr_auc_gw.milenage_db │ │ ├── server.key │ │ ├── ocsp-responder.key │ │ ├── server-expired.key │ │ ├── server-eku-client.key │ │ ├── server-no-dnsname.key │ │ ├── server-eku-client-server.key │ │ ├── user.key.pkcs8.pkcs5v15 │ │ └── user.key.pkcs8 │ ├── hostapd.vlan │ ├── hostapd.wlan3.vlan │ ├── hostapd.wlan4.vlan │ ├── hostapd.accept │ ├── wps-wep-cred │ ├── wps-ctrl-cred2 │ ├── wps-ctrl-cred │ ├── tnc │ │ ├── .gitignore │ │ ├── tnc_config │ │ └── Makefile │ ├── w1fi_logo.png │ ├── p2p0.conf │ ├── p2p1.conf │ ├── p2p2.conf │ ├── wps-mixed-cred │ ├── hostapd.macaddr │ ├── bss-1.conf │ ├── bss-2-dup.conf │ ├── bss-2.conf │ ├── bss-3.conf │ ├── bss-4.conf │ ├── bss-5.conf │ ├── bss-6.conf │ ├── bss-ht40-1.conf │ ├── bss-ht40-2.conf │ ├── owe-bss-1.conf │ ├── hostapd.wpa_psk │ ├── owe-bss-2.conf │ ├── multi-bss.conf │ ├── multi-bss-acs.conf │ ├── dictionary.radius │ ├── multi-bss-iface.conf │ ├── multi-bss-iface-per_sta_vif.conf │ ├── test_module_tests.py │ └── check_kernel.py ├── eapol-fuzzer │ ├── eap-req-identity.dat │ ├── eap-req-sim.dat │ └── eapol-key-m1.dat ├── ap-mgmt-fuzzer │ ├── .gitignore │ ├── auth.dat │ ├── multi.dat │ └── probe-req.dat ├── p2p-fuzzer │ ├── go-neg-req.dat │ ├── proberesp.dat │ ├── p2ps-pd-req.dat │ ├── proberesp-go.dat │ ├── invitation-req.dat │ └── Makefile ├── wnm-fuzzer │ ├── bss-tm-req.dat │ └── wnm-notif.dat ├── .gitignore ├── test-x509.c └── test-base64.c ├── radius_example ├── .gitignore └── Makefile ├── eap_example ├── .gitignore ├── server.key ├── dh.conf ├── server-key.pem └── server.pem ├── wpadebug ├── project.properties ├── res │ ├── raw │ │ ├── shell_commands.txt │ │ └── wpa_commands.txt │ └── layout │ │ ├── qrcode.xml │ │ └── input_uri.xml ├── .gitignore └── build.xml ├── hs20 ├── server │ ├── ca │ │ ├── w1fi_logo.png │ │ ├── ocsp-responder.sh │ │ ├── est-csrattrs.sh │ │ ├── ocsp-responder-ica.sh │ │ ├── ocsp-update-cache.sh │ │ ├── hs20.oid │ │ ├── clean.sh │ │ ├── est-csrattrs.cnf │ │ └── ocsp-req.sh │ ├── www │ │ ├── config.php │ │ ├── remediation.php │ │ ├── free-remediation.php │ │ ├── free.php │ │ ├── redirect.php │ │ └── cert-enroll.php │ ├── spp_server.h │ └── Makefile └── client │ └── devinfo.xml ├── hostapd ├── hostapd.deny ├── hostapd.radius_clients ├── dnsmasq.conf ├── hostapd.accept ├── hostapd.vlan ├── eap_register.h ├── logwatch │ ├── hostapd.conf │ └── README ├── hostapd.sim_db ├── hapd_module_tests.c ├── hostapd.android.rc ├── hostapd.wpa_psk ├── hostapd.eap_user_sqlite ├── config_file.h ├── hlr_auc_gw.milenage_db └── nt_password_hash.c ├── wpaspy ├── Makefile └── setup.py ├── mac80211_hwsim └── tools │ └── Makefile ├── doc └── .gitignore ├── Android.mk ├── .gitignore └── COPYING /attacks.h: -------------------------------------------------------------------------------- 1 | src/common/attacks.h -------------------------------------------------------------------------------- /src/tls/.gitignore: -------------------------------------------------------------------------------- 1 | libtls.a 2 | -------------------------------------------------------------------------------- /wpa_supplicant/eap_proxy_dummy.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/crypto/.gitignore: -------------------------------------------------------------------------------- 1 | libcrypto.a 2 | -------------------------------------------------------------------------------- /src/radius/.gitignore: -------------------------------------------------------------------------------- 1 | libradius.a 2 | -------------------------------------------------------------------------------- /src/utils/.gitignore: -------------------------------------------------------------------------------- 1 | libutils.a 2 | -------------------------------------------------------------------------------- /wpa_supplicant/eap_proxy_dummy.mak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /krackattack/wpaspy.py: -------------------------------------------------------------------------------- 1 | ../wpaspy/wpaspy.py -------------------------------------------------------------------------------- /tests/hwsim/vm/.gitignore: -------------------------------------------------------------------------------- 1 | vm-config 2 | -------------------------------------------------------------------------------- /wpa_supplicant/.gitignore: -------------------------------------------------------------------------------- 1 | *.service 2 | -------------------------------------------------------------------------------- /krackattack/hostapd.conf: -------------------------------------------------------------------------------- 1 | ../hostapd/hostapd.conf -------------------------------------------------------------------------------- /krackattack/libwifi/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /tests/eapol-fuzzer/eap-req-identity.dat: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /wpa_supplicant/dbus/.gitignore: -------------------------------------------------------------------------------- 1 | libwpadbus.a 2 | -------------------------------------------------------------------------------- /radius_example/.gitignore: -------------------------------------------------------------------------------- 1 | *.d 2 | radius_example 3 | -------------------------------------------------------------------------------- /tests/ap-mgmt-fuzzer/.gitignore: -------------------------------------------------------------------------------- 1 | ap-mgmt-fuzzer 2 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_gui-qt4/lang/.gitignore: -------------------------------------------------------------------------------- 1 | *.qm 2 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/iCA-user/serial: -------------------------------------------------------------------------------- 1 | E153BA3A7605DA1F 2 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/rootCA/serial: -------------------------------------------------------------------------------- 1 | D8D3E3A6CBE3CCF5 2 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/test-ca/serial: -------------------------------------------------------------------------------- 1 | D8D3E3A6CBE3CD17 2 | -------------------------------------------------------------------------------- /tests/hwsim/hostapd.vlan: -------------------------------------------------------------------------------- 1 | 1 hwsimvlan1 2 | * testvlan# 3 | -------------------------------------------------------------------------------- /tests/hwsim/hostapd.wlan3.vlan: -------------------------------------------------------------------------------- 1 | 1 wlan3.1 2 | * wlan3.# 3 | -------------------------------------------------------------------------------- /tests/hwsim/hostapd.wlan4.vlan: -------------------------------------------------------------------------------- 1 | 1 wlan4.1 2 | * wlan4.# 3 | -------------------------------------------------------------------------------- /tests/eapol-fuzzer/eap-req-sim.dat: -------------------------------------------------------------------------------- 1 | 2 2 |  -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/iCA-server/serial: -------------------------------------------------------------------------------- 1 | 8020A0407F798ABA 2 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/radius_clients.conf: -------------------------------------------------------------------------------- 1 | 0.0.0.0/0 radius 2 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/radius_clients_ipv6.conf: -------------------------------------------------------------------------------- 1 | ::1 radius 2 | -------------------------------------------------------------------------------- /src/drivers/.gitignore: -------------------------------------------------------------------------------- 1 | build.wpa_supplicant 2 | build.hostapd 3 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/rootCA/index.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = no 2 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/test-ca/index.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = no 2 | -------------------------------------------------------------------------------- /eap_example/.gitignore: -------------------------------------------------------------------------------- 1 | *.d 2 | eap_example 3 | libeap.so 4 | libeap.a 5 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/iCA-server/index.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/iCA-user/index.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /wpadebug/project.properties: -------------------------------------------------------------------------------- 1 | # Project target. 2 | target=android-22 3 | -------------------------------------------------------------------------------- /tests/hwsim/hostapd.accept: -------------------------------------------------------------------------------- 1 | 02:00:00:00:00:00 1 2 | 02:00:00:00:01:00 2 3 | -------------------------------------------------------------------------------- /tests/hwsim/wps-wep-cred: -------------------------------------------------------------------------------- 1 | 1&ETest('hello  -------------------------------------------------------------------------------- /wpadebug/res/raw/shell_commands.txt: -------------------------------------------------------------------------------- 1 | id@id 2 | version@cat /proc/version 3 | -------------------------------------------------------------------------------- /krackattack/debug-ft-hwsim/hostap0.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | hostapd hostap0.conf $@ 3 | -------------------------------------------------------------------------------- /krackattack/debug-ft-hwsim/hostap1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | hostapd hostap1.conf $@ 3 | -------------------------------------------------------------------------------- /krackattack/libwifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .wifi import * 2 | from .crypto import * 3 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_gui-qt4/.gitignore: -------------------------------------------------------------------------------- 1 | .moc 2 | .obj 3 | .ui 4 | qrc_icons.cpp 5 | -------------------------------------------------------------------------------- /wpadebug/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | gen 3 | local.properties 4 | proguard-project.txt 5 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/radius_clients_none.conf: -------------------------------------------------------------------------------- 1 | 1.2.3.4 foo 2 | # 3 | 4 | 2.3.4.5/32 bar 5 | -------------------------------------------------------------------------------- /tests/hwsim/wps-ctrl-cred2: -------------------------------------------------------------------------------- 1 | 7&EA 2 | B CD ('12345678  -------------------------------------------------------------------------------- /krackattack/debug-ft-hwsim/vtund.client.conf: -------------------------------------------------------------------------------- 1 | conn1 { 2 | passwd XXXX; 3 | device tap1; 4 | } 5 | -------------------------------------------------------------------------------- /krackattack/requirements.txt: -------------------------------------------------------------------------------- 1 | pycryptodome==3.9.9 2 | scapy==2.6.1 3 | six==1.13.0 4 | wheel==0.45.1 5 | -------------------------------------------------------------------------------- /tests/hwsim/wps-ctrl-cred: -------------------------------------------------------------------------------- 1 | ?&EA 2 | B CD ('12345678-a 3 | b cd  -------------------------------------------------------------------------------- /eap_example/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/eap_example/server.key -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/index-unknown.txt: -------------------------------------------------------------------------------- 1 | V 230627164122Z D8D3E3A6CBE3CCC1 unknown /C=FI/O=w1.fi/CN=Root CA 2 | -------------------------------------------------------------------------------- /tests/hwsim/tnc/.gitignore: -------------------------------------------------------------------------------- 1 | libhostap2_imc.so 2 | libhostap2_imv.so 3 | libhostap_imc.so 4 | libhostap_imv.so 5 | -------------------------------------------------------------------------------- /wpa_supplicant/doc/docbook/.gitignore: -------------------------------------------------------------------------------- 1 | manpage.links 2 | manpage.refs 3 | *.8 4 | *.5 5 | *.html 6 | *.pdf 7 | -------------------------------------------------------------------------------- /krackattack/debug-ft-hwsim/supplicant.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | wpa_supplicant -D nl80211 -i wlan2 -c supplicant.conf $@ 3 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/iCA-user/index.txt: -------------------------------------------------------------------------------- 1 | V 251220193736Z E153BA3A7605DA1E unknown /C=FI/O=w1.fi/CN=user.w1.fi 2 | -------------------------------------------------------------------------------- /tests/hwsim/w1fi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/hwsim/w1fi_logo.png -------------------------------------------------------------------------------- /hs20/server/ca/w1fi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/hs20/server/ca/w1fi_logo.png -------------------------------------------------------------------------------- /krackattack/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd ../hostapd/ 4 | make clean 5 | 6 | cp defconfig .config 7 | make -j 2 8 | -------------------------------------------------------------------------------- /tests/ap-mgmt-fuzzer/auth.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/ap-mgmt-fuzzer/auth.dat -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/ca.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/hwsim/auth_serv/ca.der -------------------------------------------------------------------------------- /tests/ap-mgmt-fuzzer/multi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/ap-mgmt-fuzzer/multi.dat -------------------------------------------------------------------------------- /tests/p2p-fuzzer/go-neg-req.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/p2p-fuzzer/go-neg-req.dat -------------------------------------------------------------------------------- /tests/p2p-fuzzer/proberesp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/p2p-fuzzer/proberesp.dat -------------------------------------------------------------------------------- /tests/wnm-fuzzer/bss-tm-req.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/wnm-fuzzer/bss-tm-req.dat -------------------------------------------------------------------------------- /tests/wnm-fuzzer/wnm-notif.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/wnm-fuzzer/wnm-notif.dat -------------------------------------------------------------------------------- /tests/ap-mgmt-fuzzer/probe-req.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/ap-mgmt-fuzzer/probe-req.dat -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/ocsp-req.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/hwsim/auth_serv/ocsp-req.der -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/user.pkcs12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/hwsim/auth_serv/user.pkcs12 -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/user2.pkcs12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/hwsim/auth_serv/user2.pkcs12 -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/user3.pkcs12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/hwsim/auth_serv/user3.pkcs12 -------------------------------------------------------------------------------- /tests/hwsim/p2p0.conf: -------------------------------------------------------------------------------- 1 | ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=admin 2 | device_name=Device A 3 | p2p_no_group_iface=1 4 | -------------------------------------------------------------------------------- /tests/hwsim/p2p1.conf: -------------------------------------------------------------------------------- 1 | ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=admin 2 | device_name=Device B 3 | p2p_no_group_iface=1 4 | -------------------------------------------------------------------------------- /tests/hwsim/p2p2.conf: -------------------------------------------------------------------------------- 1 | ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=admin 2 | device_name=Device C 3 | p2p_no_group_iface=1 4 | -------------------------------------------------------------------------------- /tests/p2p-fuzzer/p2ps-pd-req.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/p2p-fuzzer/p2ps-pd-req.dat -------------------------------------------------------------------------------- /tests/p2p-fuzzer/proberesp-go.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/p2p-fuzzer/proberesp-go.dat -------------------------------------------------------------------------------- /hs20/server/www/config.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /tests/eapol-fuzzer/eapol-key-m1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/eapol-fuzzer/eapol-key-m1.dat -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/server.pkcs12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/hwsim/auth_serv/server.pkcs12 -------------------------------------------------------------------------------- /tests/hwsim/wps-mixed-cred: -------------------------------------------------------------------------------- 1 | 4&ETest('12345678 4&ETest ('12345678  -------------------------------------------------------------------------------- /tests/p2p-fuzzer/invitation-req.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/p2p-fuzzer/invitation-req.dat -------------------------------------------------------------------------------- /src/fst/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | @echo Nothing to be made. 3 | 4 | clean: 5 | rm -f *~ *.o *.d 6 | 7 | install: 8 | @echo Nothing to be made. 9 | -------------------------------------------------------------------------------- /src/pae/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | @echo Nothing to be made. 3 | 4 | clean: 5 | rm -f *~ *.o *.d 6 | 7 | install: 8 | @echo Nothing to be made. 9 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/server-extra.pkcs12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/hwsim/auth_serv/server-extra.pkcs12 -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/ocsp-server-cache.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/hwsim/auth_serv/ocsp-server-cache.der -------------------------------------------------------------------------------- /krackattack/example-captures/example-ft.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/krackattack/example-captures/example-ft.pcapng -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/ocsp-multi-server-cache.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/hwsim/auth_serv/ocsp-multi-server-cache.der -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/ocsp-server-cache.der-invalid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/tests/hwsim/auth_serv/ocsp-server-cache.der-invalid -------------------------------------------------------------------------------- /hs20/server/ca/ocsp-responder.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | openssl ocsp -index demoCA/index.txt -port 8888 -nmin 5 -rsigner ocsp.pem -rkey ocsp.key -CA demoCA/cacert.pem -text 4 | -------------------------------------------------------------------------------- /hs20/server/ca/est-csrattrs.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | openssl asn1parse -genconf est-csrattrs.cnf -out est-csrattrs.der -oid hs20.oid 4 | base64 est-csrattrs.der > est-attrs.b64 5 | -------------------------------------------------------------------------------- /krackattack/example-captures/example-tptk-attack.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/krackattacks-scripts/HEAD/krackattack/example-captures/example-tptk-attack.pcapng -------------------------------------------------------------------------------- /tests/hwsim/hostapd.macaddr: -------------------------------------------------------------------------------- 1 | 02:00:00:00:00:00 2 | 02:00:00:00:00:12 3 | 02:00:00:00:00:34 4 | -02:00:00:00:00:12 5 | -02:00:00:00:00:34 6 | 01:01:01:01:01:01 7 | 03:01:01:01:01:03 8 | -------------------------------------------------------------------------------- /hostapd/hostapd.deny: -------------------------------------------------------------------------------- 1 | # List of MAC addresses that are not allowed to authenticate (IEEE 802.11) 2 | # with the AP. 3 | 00:20:30:40:50:60 4 | 00:ab:cd:ef:12:34 5 | 00:00:30:40:50:60 6 | -------------------------------------------------------------------------------- /hostapd/hostapd.radius_clients: -------------------------------------------------------------------------------- 1 | # RADIUS client configuration for the RADIUS server 2 | 10.1.2.3 secret passphrase 3 | 192.168.1.0/24 another very secret passphrase 4 | 0.0.0.0/0 radius 5 | -------------------------------------------------------------------------------- /tests/hwsim/tnc/tnc_config: -------------------------------------------------------------------------------- 1 | IMC "hostap IMC" tnc/libhostap_imc.so 2 | IMV "hostap IMV" tnc/libhostap_imv.so 3 | IMC "hostap2 IMC" tnc/libhostap2_imc.so 4 | IMV "hostap2 IMV" tnc/libhostap2_imv.so 5 | -------------------------------------------------------------------------------- /wpa_supplicant/dbus/fi.w1.wpa_supplicant1.service.in: -------------------------------------------------------------------------------- 1 | [D-BUS Service] 2 | Name=fi.w1.wpa_supplicant1 3 | Exec=@BINDIR@/wpa_supplicant -u 4 | User=root 5 | SystemdService=wpa_supplicant.service 6 | -------------------------------------------------------------------------------- /hostapd/dnsmasq.conf: -------------------------------------------------------------------------------- 1 | interface=wlan0 2 | dhcp-range=192.168.100.10,192.168.100.200,8h 3 | dhcp-option=3,192.168.100.1 4 | dhcp-option=6,192.168.100.1 5 | server=8.8.8.8 6 | log-queries 7 | log-dhcp 8 | -------------------------------------------------------------------------------- /wpa_supplicant/examples/plaintext.conf: -------------------------------------------------------------------------------- 1 | # Plaintext (no encryption) network 2 | 3 | ctrl_interface=/var/run/wpa_supplicant 4 | 5 | network={ 6 | ssid="example open network" 7 | key_mgmt=NONE 8 | } 9 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/rootCA/index.txt: -------------------------------------------------------------------------------- 1 | V 251222193736Z D8D3E3A6CBE3CCF3 unknown /C=FI/O=w1.fi/CN=Server Intermediate CA 2 | V 251222193736Z D8D3E3A6CBE3CCF4 unknown /C=FI/O=w1.fi/CN=User Intermediate CA 3 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant_template.conf: -------------------------------------------------------------------------------- 1 | ##### wpa_supplicant configuration file template ##### 2 | update_config=1 3 | eapol_version=1 4 | ap_scan=1 5 | fast_reauth=1 6 | pmf=1 7 | p2p_add_cli_chan=1 8 | -------------------------------------------------------------------------------- /krackattack/debug-ft-hwsim/vtund.server.conf: -------------------------------------------------------------------------------- 1 | default { 2 | type ether; 3 | proto udp; 4 | keepalive yes; 5 | encrypt no; 6 | } 7 | 8 | conn1 { 9 | passwd XXXX; 10 | device tap0; 11 | } 12 | -------------------------------------------------------------------------------- /tests/hwsim/bss-1.conf: -------------------------------------------------------------------------------- 1 | driver=nl80211 2 | 3 | hw_mode=g 4 | channel=1 5 | ieee80211n=1 6 | 7 | interface=wlan3 8 | bssid=02:00:00:00:03:00 9 | ctrl_interface=/var/run/hostapd 10 | 11 | ssid=bss-1 12 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/iCA-server/index.txt: -------------------------------------------------------------------------------- 1 | V 251220193736Z 8020A0407F798AB8 unknown /C=FI/O=w1.fi/CN=server.w1.fi 2 | R 251220193736Z 151223193736Z 8020A0407F798AB9 unknown /C=FI/O=w1.fi/CN=server-revoked.w1.fi 3 | -------------------------------------------------------------------------------- /tests/hwsim/bss-2-dup.conf: -------------------------------------------------------------------------------- 1 | driver=nl80211 2 | 3 | hw_mode=g 4 | channel=1 5 | ieee80211n=1 6 | 7 | interface=wlan3-2 8 | bssid=02:00:00:00:03:00 9 | ctrl_interface=/var/run/hostapd 10 | 11 | ssid=bss-2 12 | -------------------------------------------------------------------------------- /tests/hwsim/bss-2.conf: -------------------------------------------------------------------------------- 1 | driver=nl80211 2 | 3 | hw_mode=g 4 | channel=1 5 | ieee80211n=1 6 | 7 | interface=wlan3-2 8 | bssid=02:00:00:00:03:01 9 | ctrl_interface=/var/run/hostapd 10 | 11 | ssid=bss-2 12 | -------------------------------------------------------------------------------- /tests/hwsim/bss-3.conf: -------------------------------------------------------------------------------- 1 | driver=nl80211 2 | 3 | hw_mode=g 4 | channel=1 5 | ieee80211n=1 6 | 7 | interface=wlan3-3 8 | bssid=02:00:00:00:03:02 9 | ctrl_interface=/var/run/hostapd 10 | 11 | ssid=bss-3 12 | -------------------------------------------------------------------------------- /tests/hwsim/bss-4.conf: -------------------------------------------------------------------------------- 1 | driver=nl80211 2 | 3 | hw_mode=g 4 | channel=1 5 | ieee80211n=1 6 | 7 | interface=wlan3-4 8 | bssid=02:00:00:00:03:03 9 | ctrl_interface=/var/run/hostapd 10 | 11 | ssid=bss-4 12 | -------------------------------------------------------------------------------- /tests/hwsim/bss-5.conf: -------------------------------------------------------------------------------- 1 | driver=nl80211 2 | 3 | hw_mode=g 4 | channel=1 5 | ieee80211n=1 6 | 7 | interface=wlan3-5 8 | bssid=02:00:00:00:03:04 9 | ctrl_interface=/var/run/hostapd 10 | 11 | ssid=bss-5 12 | -------------------------------------------------------------------------------- /tests/hwsim/bss-6.conf: -------------------------------------------------------------------------------- 1 | driver=nl80211 2 | 3 | hw_mode=g 4 | channel=1 5 | ieee80211n=1 6 | 7 | interface=wlan3-6 8 | bssid=02:00:00:00:03:05 9 | ctrl_interface=/var/run/hostapd 10 | 11 | ssid=bss-6 12 | -------------------------------------------------------------------------------- /wpa_supplicant/dbus/fi.epitest.hostap.WPASupplicant.service.in: -------------------------------------------------------------------------------- 1 | [D-BUS Service] 2 | Name=fi.epitest.hostap.WPASupplicant 3 | Exec=@BINDIR@/wpa_supplicant -u 4 | User=root 5 | SystemdService=wpa_supplicant.service 6 | -------------------------------------------------------------------------------- /hs20/server/ca/ocsp-responder-ica.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | openssl ocsp -index demoCA/index.txt -port 8888 -nmin 5 -rsigner demoCA/cacert.pem -rkey demoCA/private/cakey-plain.pem -CA demoCA/cacert.pem -resp_no_certs -text 4 | -------------------------------------------------------------------------------- /src/drivers/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | @echo Nothing to be made. 3 | 4 | clean: 5 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov 6 | rm -f build.wpa_supplicant build.hostapd 7 | 8 | install: 9 | @echo Nothing to be made. 10 | -------------------------------------------------------------------------------- /hs20/client/devinfo.xml: -------------------------------------------------------------------------------- 1 | 2 | urn:Example:HS20-station:123456 3 | Manufacturer 4 | HS20-station 5 | 1.2 6 | en 7 | 8 | -------------------------------------------------------------------------------- /tests/hwsim/bss-ht40-1.conf: -------------------------------------------------------------------------------- 1 | driver=nl80211 2 | 3 | hw_mode=g 4 | channel=1 5 | ieee80211n=1 6 | ht_capab=[HT40+] 7 | 8 | interface=wlan3 9 | bssid=02:00:00:00:03:00 10 | ctrl_interface=/var/run/hostapd 11 | 12 | ssid=bss-1 13 | -------------------------------------------------------------------------------- /tests/hwsim/bss-ht40-2.conf: -------------------------------------------------------------------------------- 1 | driver=nl80211 2 | 3 | hw_mode=g 4 | channel=1 5 | ieee80211n=1 6 | ht_capab=[HT40+] 7 | 8 | interface=wlan3-2 9 | bssid=02:00:00:00:03:01 10 | ctrl_interface=/var/run/hostapd 11 | 12 | ssid=bss-2 13 | -------------------------------------------------------------------------------- /wpaspy/Makefile: -------------------------------------------------------------------------------- 1 | all: build 2 | 3 | SRC=wpaspy.c 4 | 5 | build: $(SRC) setup.py 6 | python setup.py build 7 | 8 | install: 9 | python setup.py install 10 | 11 | clean: 12 | python setup.py clean 13 | rm -f *~ 14 | rm -rf build 15 | -------------------------------------------------------------------------------- /mac80211_hwsim/tools/Makefile: -------------------------------------------------------------------------------- 1 | all: hwsim_test 2 | 3 | ifndef CC 4 | CC=gcc 5 | endif 6 | 7 | ifndef CFLAGS 8 | CFLAGS = -O2 -Wall -g 9 | endif 10 | 11 | hwsim_test: hwsim_test.o 12 | 13 | clean: 14 | rm -rf *.o 15 | rm -rf hwsim_test 16 | -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | test-aes 2 | test-asn1 3 | test-base64 4 | test-https 5 | test-list 6 | test-md4 7 | test-md5 8 | test-milenage 9 | test-ms_funcs 10 | test-printf 11 | test-rc4 12 | test-sha1 13 | test-sha256 14 | test-x509 15 | test-x509v3 16 | -------------------------------------------------------------------------------- /wpa_supplicant/examples/wep.conf: -------------------------------------------------------------------------------- 1 | # Static WEP keys 2 | 3 | ctrl_interface=/var/run/wpa_supplicant 4 | 5 | network={ 6 | ssid="example wep network" 7 | key_mgmt=NONE 8 | wep_key0="abcde" 9 | wep_key1=0102030405 10 | wep_tx_keyidx=0 11 | } 12 | -------------------------------------------------------------------------------- /krackattack/debug-ft-hwsim/supplicant.conf: -------------------------------------------------------------------------------- 1 | ctrl_interface=/var/run/wpa_supplicant 2 | 3 | network={ 4 | # Network config 5 | ssid="simulnet" 6 | scan_ssid=1 7 | key_mgmt=FT-PSK 8 | 9 | psk="password" 10 | #psk="WRONG PASSWORD" 11 | } 12 | 13 | -------------------------------------------------------------------------------- /tests/hwsim/owe-bss-1.conf: -------------------------------------------------------------------------------- 1 | driver=nl80211 2 | 3 | hw_mode=g 4 | channel=1 5 | ieee80211n=1 6 | 7 | interface=wlan3 8 | bssid=02:00:00:00:03:00 9 | ctrl_interface=/var/run/hostapd 10 | 11 | ssid=transition-mode-open 12 | owe_transition_ifname=wlan3-2 13 | -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | doxygen.warnings 2 | hostapd.eps 3 | hostapd.png 4 | html 5 | latex 6 | p2p_arch.eps 7 | p2p_arch.png 8 | p2p_arch2.eps 9 | p2p_arch2.png 10 | p2p_sm.eps 11 | p2p_sm.png 12 | wpa_supplicant.eps 13 | wpa_supplicant.png 14 | wpa_supplicant-devel.pdf 15 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/eap_user_vlan.conf: -------------------------------------------------------------------------------- 1 | "vlan1" PAX 0123456789abcdef0123456789abcdef 2 | radius_accept_attr=64:d:13 3 | radius_accept_attr=65:d:6 4 | radius_accept_attr=81:s:2 5 | 6 | "vlan1tagged" PAX 0123456789abcdef0123456789abcdef 7 | radius_accept_attr=56:x:31000002 8 | -------------------------------------------------------------------------------- /tests/hwsim/hostapd.wpa_psk: -------------------------------------------------------------------------------- 1 | 00:00:00:00:00:00 secret passphrase 2 | 02:00:00:00:00:00 very secret 3 | 00:11:22:33:44:55 another passphrase 4 | 00:22:33:44:55:66 0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef 5 | 00:00:00:00:00:00 another passphrase for all STAs 6 | -------------------------------------------------------------------------------- /tests/hwsim/vm/uevent.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | EPATH=$(sed 's/.*EPATH=\([^ ]*\) .*/\1/' /proc/cmdline) 4 | PATH=/tmp/bin:$EPATH:$PATH 5 | 6 | # assume this was a call for CRDA, 7 | # if not then it won't find a COUNTRY 8 | # environment variable and exit 9 | exec crda 10 | -------------------------------------------------------------------------------- /wpa_supplicant/examples/wpa-psk-tkip.conf: -------------------------------------------------------------------------------- 1 | # WPA-PSK/TKIP 2 | 3 | ctrl_interface=/var/run/wpa_supplicant 4 | 5 | network={ 6 | ssid="example wpa-psk network" 7 | key_mgmt=WPA-PSK 8 | proto=WPA 9 | pairwise=TKIP 10 | group=TKIP 11 | psk="secret passphrase" 12 | } 13 | -------------------------------------------------------------------------------- /wpadebug/res/raw/wpa_commands.txt: -------------------------------------------------------------------------------- 1 | Status@STATUS 2 | PMKSA cache@PMKSA 3 | Networks@LIST_NETWORKS 4 | Interworking connect@INTERWORKING_SELECT auto 5 | Creds@LIST_CREDS 6 | Scan results@SCAN_RESULTS 7 | Flush@FLUSH 8 | Disconnect@DISCONNECT 9 | Reassociate@REASSOCIATE 10 | -------------------------------------------------------------------------------- /eap_example/dh.conf: -------------------------------------------------------------------------------- 1 | -----BEGIN DH PARAMETERS----- 2 | MIGHAoGBAP3V8IHq3H2DUlYywsvjYNuS17eCdt0mJo6/os6PHqdhgkMrPxF9u4Gr 3 | qKXq9e6GqmZYdjta30N3FkXaV924BJ0xOqb2TntiKg4u50/l6hSUneWt6UFBaizd 4 | XrqjNFIme/5RXMZ7RglXliBpCepAaFLMcKhOS4ulUyYYHSy+oqRjAgEC 5 | -----END DH PARAMETERS----- 6 | -------------------------------------------------------------------------------- /hs20/server/ca/ocsp-update-cache.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | openssl ocsp \ 4 | -no_nonce \ 5 | -CAfile ca.pem \ 6 | -verify_other demoCA/cacert.pem \ 7 | -issuer demoCA/cacert.pem \ 8 | -cert server.pem \ 9 | -url http://localhost:8888/ \ 10 | -respout ocsp-server-cache.der 11 | -------------------------------------------------------------------------------- /hs20/server/ca/hs20.oid: -------------------------------------------------------------------------------- 1 | 1.3.6.1.1.1.1.22 macAddress 2 | 1.2.840.113549.1.9.14 extensionRequest 3 | 1.3.6.1.4.1.40808.1.1.1 id-wfa-hotspot-friendlyName 4 | 1.3.6.1.4.1.40808.1.1.2 id-kp-HS2.0Auth 5 | 1.3.6.1.4.1.40808.1.1.3 imei 6 | 1.3.6.1.4.1.40808.1.1.4 meid 7 | 1.3.6.1.4.1.40808.1.1.5 DevId 8 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/dh.conf: -------------------------------------------------------------------------------- 1 | -----BEGIN DH PARAMETERS----- 2 | MIGHAoGBAP3V8IHq3H2DUlYywsvjYNuS17eCdt0mJo6/os6PHqdhgkMrPxF9u4Gr 3 | qKXq9e6GqmZYdjta30N3FkXaV924BJ0xOqb2TntiKg4u50/l6hSUneWt6UFBaizd 4 | XrqjNFIme/5RXMZ7RglXliBpCepAaFLMcKhOS4ulUyYYHSy+oqRjAgEC 5 | -----END DH PARAMETERS----- 6 | -------------------------------------------------------------------------------- /wpa_supplicant/binder/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 8 3 | UseTab: Always 4 | BreakBeforeBraces: Mozilla 5 | AllowShortIfStatementsOnASingleLine: false 6 | IndentCaseLabels: false 7 | AccessModifierOffset: -8 8 | AlignAfterOpenBracket: AlwaysBreak 9 | SortIncludes: false 10 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_gui-qt4/wpa_gui.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=1.0 3 | Name=wpa_gui 4 | Comment=Graphical user interface for wpa_supplicant 5 | Exec=wpa_gui 6 | Icon=wpa_gui 7 | GenericName=wpa_supplicant user interface 8 | Terminal=false 9 | Type=Application 10 | Categories=Qt;Network; 11 | -------------------------------------------------------------------------------- /hostapd/hostapd.accept: -------------------------------------------------------------------------------- 1 | # List of MAC addresses that are allowed to authenticate (IEEE 802.11) 2 | # with the AP. Optional VLAN ID can be assigned for clients based on the 3 | # MAC address if dynamic VLANs (hostapd.conf dynamic_vlan option) are used. 4 | 00:11:22:33:44:55 5 | 00:66:77:88:99:aa 6 | 00:00:22:33:44:55 1 7 | -------------------------------------------------------------------------------- /hostapd/hostapd.vlan: -------------------------------------------------------------------------------- 1 | # VLAN ID to network interface mapping 2 | 1 vlan1 3 | 2 vlan2 4 | 3 vlan3 5 | 100 guest 6 | # Optional wildcard entry matching all VLAN IDs. The first # in the interface 7 | # name will be replaced with the VLAN ID. The network interfaces are created 8 | # (and removed) dynamically based on the use. 9 | * vlan# 10 | -------------------------------------------------------------------------------- /src/l2_packet/Makefile: -------------------------------------------------------------------------------- 1 | all: libl2_packet.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libl2_packet.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | LIB_OBJS = l2_packet_linux.o 12 | 13 | libl2_packet.a: $(LIB_OBJS) 14 | $(AR) crT $@ $? 15 | 16 | -include $(OBJS:%.o=%.d) 17 | -------------------------------------------------------------------------------- /wpa_supplicant/systemd/wpa_supplicant.service.in: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=WPA supplicant 3 | Before=network.target 4 | Wants=network.target 5 | 6 | [Service] 7 | Type=dbus 8 | BusName=@DBUS_INTERFACE@ 9 | ExecStart=@BINDIR@/wpa_supplicant -u 10 | 11 | [Install] 12 | WantedBy=multi-user.target 13 | Alias=dbus-@DBUS_INTERFACE@.service 14 | -------------------------------------------------------------------------------- /tests/hwsim/owe-bss-2.conf: -------------------------------------------------------------------------------- 1 | driver=nl80211 2 | 3 | hw_mode=g 4 | channel=1 5 | ieee80211n=1 6 | 7 | interface=wlan3-2 8 | bssid=02:00:00:00:03:01 9 | ctrl_interface=/var/run/hostapd 10 | 11 | ssid=transition-mode-owe 12 | wpa=2 13 | wpa_key_mgmt=OWE 14 | rsn_pairwise=CCMP 15 | owe_transition_ifname=wlan3 16 | ignore_broadcast_ssid=1 17 | -------------------------------------------------------------------------------- /src/eapol_auth/Makefile: -------------------------------------------------------------------------------- 1 | all: libeapol_auth.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libeapol_auth.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | LIB_OBJS = eapol_auth_sm.o eapol_auth_dump.o 12 | 13 | libeapol_auth.a: $(LIB_OBJS) 14 | $(AR) crT $@ $? 15 | 16 | -include $(OBJS:%.o=%.d) 17 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/ec-ca.key: -------------------------------------------------------------------------------- 1 | -----BEGIN EC PARAMETERS----- 2 | BggqhkjOPQMBBw== 3 | -----END EC PARAMETERS----- 4 | -----BEGIN EC PRIVATE KEY----- 5 | MHcCAQEEIFOOw/NwKqjhaX2da7e7SYrgsMLmr6wX3c1SuR2AsxaUoAoGCCqGSM49 6 | AwEHoUQDQgAEcLjqwWO1Eg+FfjDonVsEpGN0vPuJV1lGd/mKkQHFYxDzLaJHNM8i 7 | QKH1dAT4M/8reNYF5rzkwC6V33R6T5Hqjg== 8 | -----END EC PRIVATE KEY----- 9 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/ec-user.key: -------------------------------------------------------------------------------- 1 | -----BEGIN EC PARAMETERS----- 2 | BggqhkjOPQMBBw== 3 | -----END EC PARAMETERS----- 4 | -----BEGIN EC PRIVATE KEY----- 5 | MHcCAQEEINKa/lt6n2rVp/6cLl65e8GR0vY0WKDfpBGltnggadz3oAoGCCqGSM49 6 | AwEHoUQDQgAEDbAoh2fby/hkxmF9Hm8fyzBHCpaDzFuAyG+SYmTBqpccxTXXfSNJ 7 | eYQXMoPTm14BXWgiTf7U9/C3FHolI5oBNQ== 8 | -----END EC PRIVATE KEY----- 9 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/ec-server.key: -------------------------------------------------------------------------------- 1 | -----BEGIN EC PARAMETERS----- 2 | BggqhkjOPQMBBw== 3 | -----END EC PARAMETERS----- 4 | -----BEGIN EC PRIVATE KEY----- 5 | MHcCAQEEIEoiI2GTM68G6vG2zpbM/a5j7e2yBCCWxaNe+nKPT47+oAoGCCqGSM49 6 | AwEHoUQDQgAEJu1Mahit1ZcoiSaYwew1ugckxpSGVvbrZUVf/IF13kiW+JBMcgrX 7 | oukSJOw2LVtLLJEf24YHRST8Dw7Kpzr+bQ== 8 | -----END EC PRIVATE KEY----- 9 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/ec2-user-p256.key: -------------------------------------------------------------------------------- 1 | -----BEGIN EC PARAMETERS----- 2 | BggqhkjOPQMBBw== 3 | -----END EC PARAMETERS----- 4 | -----BEGIN EC PRIVATE KEY----- 5 | MHcCAQEEIPrr8f6NDa+p9BbWuyoFWfshi7pBwZVSltEoE3JoKMfEoAoGCCqGSM49 6 | AwEHoUQDQgAEt4F55Q020CgCdvgNzw3I+K/eZiDJIODExC0Qti5YJWD/Ah5KG3lh 7 | qmRWRLRLn+giBMgUEJeWDjWcHdzWBYhwEQ== 8 | -----END EC PRIVATE KEY----- 9 | -------------------------------------------------------------------------------- /wpa_supplicant/examples/ieee8021x.conf: -------------------------------------------------------------------------------- 1 | # IEEE 802.1X with dynamic WEP keys using EAP-PEAP/MSCHAPv2 2 | 3 | ctrl_interface=/var/run/wpa_supplicant 4 | 5 | network={ 6 | ssid="example 802.1x network" 7 | key_mgmt=IEEE8021X 8 | eap=PEAP 9 | phase2="auth=MSCHAPV2" 10 | identity="user name" 11 | password="password" 12 | ca_cert="/etc/cert/ca.pem" 13 | } 14 | -------------------------------------------------------------------------------- /src/lib.rules: -------------------------------------------------------------------------------- 1 | ifndef CC 2 | CC=gcc 3 | endif 4 | 5 | ifndef CFLAGS 6 | CFLAGS = -MMD -O2 -Wall -g 7 | endif 8 | 9 | CFLAGS += -I.. -I../utils 10 | 11 | 12 | Q=@ 13 | E=echo 14 | ifeq ($(V), 1) 15 | Q= 16 | E=true 17 | endif 18 | ifeq ($(QUIET), 1) 19 | Q=@ 20 | E=true 21 | endif 22 | 23 | %.o: %.c 24 | $(Q)$(CC) -c -o $@ $(CFLAGS) $< 25 | @$(E) " CC " $< 26 | -------------------------------------------------------------------------------- /hs20/server/ca/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | for i in server-client server server-revoked user ocsp; do 4 | rm -f $i.csr $i.key $i.pem 5 | done 6 | 7 | rm -f openssl.cnf.tmp 8 | if [ -d demoCA ]; then 9 | rm -r demoCA 10 | fi 11 | rm -f ca.pem logo.asn1 logo.der server.der ocsp-server-cache.der 12 | rm -f my-openssl.cnf my-openssl-root.cnf 13 | #rm -r rootCA 14 | -------------------------------------------------------------------------------- /hs20/server/ca/est-csrattrs.cnf: -------------------------------------------------------------------------------- 1 | asn1 = SEQUENCE:attrs 2 | 3 | [attrs] 4 | #oid1 = OID:challengePassword 5 | attr1 = SEQUENCE:extreq 6 | oid2 = OID:sha256WithRSAEncryption 7 | 8 | [extreq] 9 | oid = OID:extensionRequest 10 | vals = SET:extreqvals 11 | 12 | [extreqvals] 13 | 14 | oid1 = OID:macAddress 15 | #oid2 = OID:imei 16 | #oid3 = OID:meid 17 | #oid4 = OID:DevId 18 | -------------------------------------------------------------------------------- /src/eapol_supp/Makefile: -------------------------------------------------------------------------------- 1 | all: libeapol_supp.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libeapol_supp.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | CFLAGS += -DIEEE8021X_EAPOL 12 | 13 | LIB_OBJS = eapol_supp_sm.o 14 | 15 | libeapol_supp.a: $(LIB_OBJS) 16 | $(AR) crT $@ $? 17 | 18 | -include $(OBJS:%.o=%.d) 19 | -------------------------------------------------------------------------------- /src/utils/crc32.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 32-bit CRC for FCS calculation 3 | * Copyright (c) 2010, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef CRC32_H 10 | #define CRC32_H 11 | 12 | u32 crc32(const u8 *frame, size_t frame_len); 13 | 14 | #endif /* CRC32_H */ 15 | -------------------------------------------------------------------------------- /krackattack/debug-ft-hwsim/gen-traffic.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | import logging, time 3 | logging.getLogger("scapy.runtime").setLevel(logging.ERROR) 4 | from scapy.all import * 5 | 6 | p = Ether(dst="02:00:00:00:02:00")/ARP(op=2, pdst="192.168.100.12", hwdst="02:00:00:00:02:00") 7 | 8 | while True: 9 | sendp(p, iface="wlan0") 10 | sendp(p, iface="wlan1") 11 | time.sleep(1) 12 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_gui-qt4/icons.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | icons/wpa_gui.svg 4 | icons/ap.svg 5 | icons/laptop.svg 6 | icons/group.svg 7 | icons/invitation.svg 8 | 9 | 10 | -------------------------------------------------------------------------------- /hostapd/eap_register.h: -------------------------------------------------------------------------------- 1 | /* 2 | * EAP method registration 3 | * Copyright (c) 2004-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EAP_REGISTER_H 10 | #define EAP_REGISTER_H 11 | 12 | int eap_server_register_methods(void); 13 | 14 | #endif /* EAP_REGISTER_H */ 15 | -------------------------------------------------------------------------------- /hostapd/logwatch/hostapd.conf: -------------------------------------------------------------------------------- 1 | # Logwatch configuration for hostapd 2 | # 3 | # Copyright 2005 Henrik Brix Andersen 4 | # Distributed under the terms of the GNU General Public License v2 5 | # Alternatively, this file may be distributed under the terms of the BSD License 6 | 7 | Title = "hostapd" 8 | LogFile = messages 9 | *OnlyService = hostapd 10 | *RemoveHeaders 11 | -------------------------------------------------------------------------------- /tests/hwsim/multi-bss.conf: -------------------------------------------------------------------------------- 1 | driver=nl80211 2 | 3 | hw_mode=g 4 | channel=1 5 | ieee80211n=1 6 | 7 | interface=wlan3 8 | ctrl_interface=/var/run/hostapd 9 | 10 | ssid=bss-1 11 | 12 | 13 | bss=wlan3-2 14 | bssid=02:00:00:00:03:01 15 | ctrl_interface=/var/run/hostapd 16 | ssid=bss-2 17 | 18 | bss=wlan3-3 19 | bssid=02:00:00:00:03:02 20 | ctrl_interface=/var/run/hostapd 21 | ssid=bss-3 22 | -------------------------------------------------------------------------------- /wpa_supplicant/examples/wpa2-eap-ccmp.conf: -------------------------------------------------------------------------------- 1 | # WPA2-EAP/CCMP using EAP-TLS 2 | 3 | ctrl_interface=/var/run/wpa_supplicant 4 | 5 | network={ 6 | ssid="example wpa2-eap network" 7 | key_mgmt=WPA-EAP 8 | proto=WPA2 9 | pairwise=CCMP 10 | group=CCMP 11 | eap=TLS 12 | ca_cert="/etc/cert/ca.pem" 13 | private_key="/etc/cert/user.p12" 14 | private_key_passwd="PKCS#12 passhrase" 15 | } 16 | -------------------------------------------------------------------------------- /wpa_supplicant/examples/60_wpa_supplicant: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # /etc/pm/sleep.d/60_wpa_supplicant 4 | # Action script to notify wpa_supplicant of pm-action events. 5 | 6 | PATH=/sbin:/usr/sbin:/bin:/usr/bin 7 | 8 | WPACLI=wpa_cli 9 | 10 | case "$1" in 11 | suspend|hibernate) 12 | $WPACLI suspend 13 | ;; 14 | resume|thaw) 15 | $WPACLI resume 16 | ;; 17 | esac 18 | 19 | exit 0 20 | -------------------------------------------------------------------------------- /src/common/version.h: -------------------------------------------------------------------------------- 1 | #ifndef VERSION_H 2 | #define VERSION_H 3 | 4 | #ifndef VERSION_STR_POSTFIX 5 | #define VERSION_STR_POSTFIX "" 6 | #endif /* VERSION_STR_POSTFIX */ 7 | 8 | #ifndef GIT_VERSION_STR_POSTFIX 9 | #define GIT_VERSION_STR_POSTFIX "" 10 | #endif /* GIT_VERSION_STR_POSTFIX */ 11 | 12 | #define VERSION_STR "2.7-devel" VERSION_STR_POSTFIX GIT_VERSION_STR_POSTFIX 13 | 14 | #endif /* VERSION_H */ 15 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/ec2-ca.key: -------------------------------------------------------------------------------- 1 | -----BEGIN EC PARAMETERS----- 2 | BgUrgQQAIg== 3 | -----END EC PARAMETERS----- 4 | -----BEGIN EC PRIVATE KEY----- 5 | MIGkAgEBBDA7pLB5W+c/cHKznKIRC3UH3qvF2gdij3svRR+zYaNf427Z/I0H4Xki 6 | HOFgPZ9ded2gBwYFK4EEACKhZANiAARWEuSpvRL6glbrbPMhDEcvHpQCirI4GtFD 7 | FYUEYIDqRObNZkeM4A9ygH3HUUmdm3SLHVxb+2nIVfPY3jyxwfOZGiL6ASomy1Ww 8 | GY0AAaXU61MCiJBny1VTsjR7Dw+VcRc= 9 | -----END EC PRIVATE KEY----- 10 | -------------------------------------------------------------------------------- /src/radius/Makefile: -------------------------------------------------------------------------------- 1 | all: libradius.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libradius.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | 10 | include ../lib.rules 11 | 12 | CFLAGS += -DCONFIG_IPV6 13 | 14 | LIB_OBJS= \ 15 | radius.o \ 16 | radius_client.o \ 17 | radius_das.o \ 18 | radius_server.o 19 | 20 | libradius.a: $(LIB_OBJS) 21 | $(AR) crT $@ $? 22 | 23 | -include $(OBJS:%.o=%.d) 24 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/ec2-server.key: -------------------------------------------------------------------------------- 1 | -----BEGIN EC PARAMETERS----- 2 | BgUrgQQAIg== 3 | -----END EC PARAMETERS----- 4 | -----BEGIN EC PRIVATE KEY----- 5 | MIGkAgEBBDAgwG8tK5eYT4AX09cjhztI1oSnO7iEVf8n6UdbY41gmuU+ce+HPfpt 6 | mRFxdKSU29CgBwYFK4EEACKhZANiAAS4CCNfatEOzJswkLMlEn+bPMUEYQEYQwad 7 | uiJ3hJHkHxKnjjamvn+OCHxZwX0I2ci19y+cxgCIAKHRI2C/iijvr12ZcOkVEysf 8 | PODhGzHDloYyEfLcPSJ9hTk1ZIvyRSU= 9 | -----END EC PRIVATE KEY----- 10 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/ec2-user.key: -------------------------------------------------------------------------------- 1 | -----BEGIN EC PARAMETERS----- 2 | BgUrgQQAIg== 3 | -----END EC PARAMETERS----- 4 | -----BEGIN EC PRIVATE KEY----- 5 | MIGkAgEBBDCkY69v8ff6oUI3wxJYeJdT500cYU9SE7LOLByjFyW5kKh0wfNI+PTj 6 | QCboPDTNgy6gBwYFK4EEACKhZANiAATuB6iYrTnzUXstmwJhnMBpU3SB6Hwa92ne 7 | S3VaDG2HGjdfBCV5JUHXt4o4JTtknjum/cKR/99xQ6pvBemWQjEcyeAyK18zIQrP 8 | Kce5MCGEcJ8c5GwKVwVYlBPzr85IcBg= 9 | -----END EC PRIVATE KEY----- 10 | -------------------------------------------------------------------------------- /src/ap/authsrv.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Authentication server setup 3 | * Copyright (c) 2002-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef AUTHSRV_H 10 | #define AUTHSRV_H 11 | 12 | int authsrv_init(struct hostapd_data *hapd); 13 | void authsrv_deinit(struct hostapd_data *hapd); 14 | 15 | #endif /* AUTHSRV_H */ 16 | -------------------------------------------------------------------------------- /src/eap_server/Makefile: -------------------------------------------------------------------------------- 1 | all: libeap_server.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libeap_server.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | CFLAGS += -DCONFIG_HS20 12 | 13 | LIB_OBJS= \ 14 | eap_server.o \ 15 | eap_server_identity.o \ 16 | eap_server_methods.o 17 | 18 | libeap_server.a: $(LIB_OBJS) 19 | $(AR) crT $@ $? 20 | 21 | -include $(OBJS:%.o=%.d) 22 | -------------------------------------------------------------------------------- /hs20/server/www/remediation.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hotspot 2.0 subscription remediation 4 | 5 | 6 | 7 | \n"; 10 | 11 | echo "Complete user subscription remediation
\n"; 12 | 13 | ?> 14 | 15 | This will provide a new machine-generated password. 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- 1 | SUBDIRS=ap common crypto drivers eapol_auth eapol_supp eap_common eap_peer eap_server l2_packet p2p pae radius rsn_supp tls utils wps 2 | SUBDIRS += fst 3 | 4 | all: 5 | for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d; done 6 | 7 | clean: 8 | for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d clean; done 9 | rm -f *~ 10 | 11 | install: 12 | for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d install; done 13 | -------------------------------------------------------------------------------- /hostapd/hostapd.sim_db: -------------------------------------------------------------------------------- 1 | # Example GSM authentication triplet file for EAP-SIM authenticator 2 | # IMSI:Kc:SRES:RAND 3 | # IMSI: ASCII string (numbers) 4 | # Kc: hex, 8 octets 5 | # SRES: hex, 4 octets 6 | # RAND: hex, 16 octets 7 | 234567898765432:A0A1A2A3A4A5A6A7:D1D2D3D4:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 8 | 234567898765432:B0B1B2B3B4B5B6B7:E1E2E3E4:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB 9 | 234567898765432:C0C1C2C3C4C5C6C7:F1F2F3F4:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC 10 | -------------------------------------------------------------------------------- /hostapd/hapd_module_tests.c: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd module tests 3 | * Copyright (c) 2014, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "utils/includes.h" 10 | 11 | #include "utils/common.h" 12 | #include "utils/module_tests.h" 13 | 14 | int hapd_module_tests(void) 15 | { 16 | wpa_printf(MSG_INFO, "hostapd module tests"); 17 | return 0; 18 | } 19 | -------------------------------------------------------------------------------- /src/ap/bss_load.h: -------------------------------------------------------------------------------- 1 | /* 2 | * BSS load update 3 | * Copyright (c) 2014, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef BSS_LOAD_UPDATE_H 10 | #define BSS_LOAD_UPDATE_H 11 | 12 | 13 | int bss_load_update_init(struct hostapd_data *hapd); 14 | void bss_load_update_deinit(struct hostapd_data *hapd); 15 | 16 | 17 | #endif /* BSS_LOAD_UPDATE_H */ 18 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH:= $(call my-dir) 2 | 3 | ifneq ($(filter VER_0_8_X VER_2_1_DEVEL,$(WPA_SUPPLICANT_VERSION)),) 4 | # The order of the 2 Android.mks does matter! 5 | # TODO: Clean up the Android.mks, reset all the temporary variables at the 6 | # end of each Android.mk, so that one Android.mk doesn't depend on variables 7 | # set up in the other Android.mk. 8 | include $(LOCAL_PATH)/hostapd/Android.mk \ 9 | $(LOCAL_PATH)/wpa_supplicant/Android.mk 10 | endif 11 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/dh2.conf: -------------------------------------------------------------------------------- 1 | -----BEGIN DH PARAMETERS----- 2 | MIIBCAKCAQEAnMarPft+gvX8Ul5WKDn3rSa67dCNNhIivHnHBTn7I6LFE4pf3NY6 3 | KCUcVgJtOl55+58GxkpFsTZEmcykrbTjtJIyNfXFx6n/JKZTNYT0Vv7xmpSN3v53 4 | 208v8rY91OiqO3T8L1PAsENMwuvMZL65IdLiMmVpAktgLGCafektBkaHj29bYCGS 5 | oGwz65iypzZGKGZmzET168lbh1SIuZkq3JOFEvE0ZJS5XhLrVUw14uZV/7lPRE+E 6 | dtza3kVlJXbkgnkrBsiuBlmWiga7EjPtD2o18WhPThI8zX/FoAyQUem4DkhfSpS8 7 | FrJUrODwQQycS5AaexDmZqHJ/L4GdlHcAwIBAg== 8 | -----END DH PARAMETERS----- 9 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_gui-qt4/icons_png.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | icons/hicolor/16x16/apps/wpa_gui.png 4 | icons/hicolor/32x32/apps/ap.png 5 | icons/hicolor/32x32/apps/laptop.png 6 | icons/hicolor/32x32/apps/group.png 7 | icons/hicolor/32x32/apps/invitation.png 8 | 9 | 10 | -------------------------------------------------------------------------------- /hostapd/logwatch/README: -------------------------------------------------------------------------------- 1 | Logwatch is a utility for analyzing system logs and provide a human 2 | readable summary. This directory has a configuration file and a log 3 | analyzer script for parsing hostapd system log entries for logwatch. 4 | These files can be installed by copying them to following locations: 5 | 6 | /etc/log.d/conf/services/hostapd.conf 7 | /etc/log.d/scripts/services/hostapd 8 | 9 | More information about logwatch is available from http://www.logwatch.org/ 10 | -------------------------------------------------------------------------------- /src/eap_common/chap.h: -------------------------------------------------------------------------------- 1 | /* 2 | * CHAP-MD5 (RFC 1994) 3 | * Copyright (c) 2007-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef CHAP_H 10 | #define CHAP_H 11 | 12 | #define CHAP_MD5_LEN 16 13 | 14 | int chap_md5(u8 id, const u8 *secret, size_t secret_len, const u8 *challenge, 15 | size_t challenge_len, u8 *response); 16 | 17 | #endif /* CHAP_H */ 18 | -------------------------------------------------------------------------------- /src/tls/pkcs5.h: -------------------------------------------------------------------------------- 1 | /* 2 | * PKCS #5 (Password-based Encryption) 3 | * Copyright (c) 2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef PKCS5_H 10 | #define PKCS5_H 11 | 12 | u8 * pkcs5_decrypt(const u8 *enc_alg, size_t enc_alg_len, 13 | const u8 *enc_data, size_t enc_data_len, 14 | const char *passwd, size_t *data_len); 15 | 16 | #endif /* PKCS5_H */ 17 | -------------------------------------------------------------------------------- /tests/hwsim/tnc/Makefile: -------------------------------------------------------------------------------- 1 | CFLAGS += -I$(abspath ../../../src) 2 | CFLAGS += -I$(abspath ../../../src/utils) 3 | 4 | ALL=libhostap_imc.so libhostap_imv.so libhostap2_imc.so libhostap2_imv.so 5 | all: $(ALL) 6 | 7 | Q=@ 8 | E=echo 9 | ifeq ($(V), 1) 10 | Q= 11 | E=true 12 | endif 13 | ifeq ($(QUIET), 1) 14 | Q=@ 15 | E=true 16 | endif 17 | 18 | lib%.so: %.c 19 | $(Q)$(CC) $(LDFLAGS) -o $@ $(CFLAGS) -shared -rdynamic -fPIC $< 20 | @$(E) " CC " $@ 21 | 22 | clean: 23 | rm -f $(ALL) 24 | -------------------------------------------------------------------------------- /wpadebug/res/layout/qrcode.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 13 | -------------------------------------------------------------------------------- /hs20/server/www/free-remediation.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hotspot 2.0 - public and free hotspot - remediation 4 | 5 | 6 | 7 |

Hotspot 2.0 - public and free hotspot

8 | 9 |

Terms and conditions have changed. You need to accept the new terms 10 | to continue using this network.

11 | 12 |

Terms and conditions..

13 | 14 | Accept
\n"; 16 | ?> 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /hs20/server/www/free.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hotspot 2.0 - public and free hotspot 4 | 5 | 6 | 7 | Hotspot 2.0 - public and free hotspot\n"; 12 | 13 | echo "
\n"; 14 | echo "\n"; 15 | 16 | ?> 17 | 18 |

Terms and conditions..

19 | 20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/eap_peer/Makefile: -------------------------------------------------------------------------------- 1 | all: libeap_peer.a 2 | 3 | clean: 4 | rm -f *~ *.o *.so *.d *.gcno *.gcda *.gcov libeap_peer.a 5 | 6 | install: 7 | if ls *.so >/dev/null 2>&1; then \ 8 | install -d $(DESTDIR)$(LIBDIR)/wpa_supplicant && \ 9 | cp *.so $(DESTDIR)$(LIBDIR)/wpa_supplicant \ 10 | ; fi 11 | 12 | include ../lib.rules 13 | 14 | CFLAGS += -DIEEE8021X_EAPOL 15 | 16 | LIB_OBJS= \ 17 | eap.o \ 18 | eap_methods.o 19 | 20 | libeap_peer.a: $(LIB_OBJS) 21 | $(AR) crT $@ $? 22 | 23 | -include $(OBJS:%.o=%.d) 24 | -------------------------------------------------------------------------------- /src/tls/pkcs8.h: -------------------------------------------------------------------------------- 1 | /* 2 | * PKCS #8 (Private-key information syntax) 3 | * Copyright (c) 2006-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef PKCS8_H 10 | #define PKCS8_H 11 | 12 | struct crypto_private_key * pkcs8_key_import(const u8 *buf, size_t len); 13 | struct crypto_private_key * 14 | pkcs8_enc_key_import(const u8 *buf, size_t len, const char *passwd); 15 | 16 | #endif /* PKCS8_H */ 17 | -------------------------------------------------------------------------------- /src/eap_common/eap_peap_common.h: -------------------------------------------------------------------------------- 1 | /* 2 | * EAP-PEAP common routines 3 | * Copyright (c) 2008-2011, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EAP_PEAP_COMMON_H 10 | #define EAP_PEAP_COMMON_H 11 | 12 | int peap_prfplus(int version, const u8 *key, size_t key_len, 13 | const char *label, const u8 *seed, size_t seed_len, 14 | u8 *buf, size_t buf_len); 15 | 16 | #endif /* EAP_PEAP_COMMON_H */ 17 | -------------------------------------------------------------------------------- /wpa_supplicant/binder/iface.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * binder interface for wpa_supplicant daemon 3 | * Copyright (c) 2004-2016, Jouni Malinen 4 | * Copyright (c) 2004-2016, Roshan Pius 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #include "iface.h" 11 | 12 | namespace wpa_supplicant_binder { 13 | 14 | Iface::Iface(struct wpa_supplicant *wpa_s) : wpa_s_(wpa_s) {} 15 | 16 | } /* namespace wpa_supplicant_binder */ 17 | -------------------------------------------------------------------------------- /src/ap/wpa_auth_glue.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / WPA authenticator glue code 3 | * Copyright (c) 2002-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef WPA_AUTH_GLUE_H 10 | #define WPA_AUTH_GLUE_H 11 | 12 | int hostapd_setup_wpa(struct hostapd_data *hapd); 13 | void hostapd_reconfig_wpa(struct hostapd_data *hapd); 14 | void hostapd_deinit_wpa(struct hostapd_data *hapd); 15 | 16 | #endif /* WPA_AUTH_GLUE_H */ 17 | -------------------------------------------------------------------------------- /wpa_supplicant/binder/fi/w1/wpa_supplicant/IIface.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * binder interface for wpa_supplicant daemon 3 | * Copyright (c) 2004-2016, Jouni Malinen 4 | * Copyright (c) 2004-2016, Roshan Pius 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | package fi.w1.wpa_supplicant; 11 | 12 | /** 13 | * Interface exposed by wpa_supplicant for each network interface it controls. 14 | */ 15 | interface IIface { 16 | } 17 | -------------------------------------------------------------------------------- /src/utils/uuid.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Universally Unique IDentifier (UUID) 3 | * Copyright (c) 2008, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef UUID_H 10 | #define UUID_H 11 | 12 | #define UUID_LEN 16 13 | 14 | int uuid_str2bin(const char *str, u8 *bin); 15 | int uuid_bin2str(const u8 *bin, char *str, size_t max_len); 16 | int is_nil_uuid(const u8 *uuid); 17 | int uuid_random(u8 *uuid); 18 | 19 | #endif /* UUID_H */ 20 | -------------------------------------------------------------------------------- /src/ap/tkip_countermeasures.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / TKIP countermeasures 3 | * Copyright (c) 2002-2012, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef TKIP_COUNTERMEASURES_H 10 | #define TKIP_COUNTERMEASURES_H 11 | 12 | int michael_mic_failure(struct hostapd_data *hapd, const u8 *addr, int local); 13 | void ieee80211_tkip_countermeasures_deinit(struct hostapd_data *hapd); 14 | 15 | #endif /* TKIP_COUNTERMEASURES_H */ 16 | -------------------------------------------------------------------------------- /src/utils/module_tests.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Module tests 3 | * Copyright (c) 2014-2015, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef MODULE_TESTS_H 10 | #define MODULE_TESTS_H 11 | 12 | int wpas_module_tests(void); 13 | int hapd_module_tests(void); 14 | 15 | int utils_module_tests(void); 16 | int wps_module_tests(void); 17 | int common_module_tests(void); 18 | int crypto_module_tests(void); 19 | 20 | #endif /* MODULE_TESTS_H */ 21 | -------------------------------------------------------------------------------- /krackattack/pysetup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | # Start from a clean environment 5 | rm -rf venv/ 6 | 7 | # Basic python3 virtual environment 8 | python3 -m venv venv 9 | source venv/bin/activate 10 | pip install wheel 11 | pip install -r requirements.txt 12 | 13 | # Fix a bug in scapy that isn't fixed in the PyPI version yet. For background see 14 | # https://github.com/secdev/scapy/commit/46fa40fde4049ad7770481f8806c59640df24059 15 | sed -i 's/find_library("libc")/find_library("c")/g' venv/lib/python*/site-packages/scapy/arch/bpf/core.py 16 | -------------------------------------------------------------------------------- /wpa_supplicant/systemd/wpa_supplicant.service.arg.in: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=WPA supplicant daemon (interface-specific version) 3 | Requires=sys-subsystem-net-devices-%i.device 4 | After=sys-subsystem-net-devices-%i.device 5 | Before=network.target 6 | Wants=network.target 7 | 8 | # NetworkManager users will probably want the dbus version instead. 9 | 10 | [Service] 11 | Type=simple 12 | ExecStart=@BINDIR@/wpa_supplicant -c/etc/wpa_supplicant/wpa_supplicant-%I.conf -i%I 13 | 14 | [Install] 15 | Alias=multi-user.target.wants/wpa_supplicant@%i.service 16 | -------------------------------------------------------------------------------- /hostapd/hostapd.android.rc: -------------------------------------------------------------------------------- 1 | # 2 | # init.rc fragment for hostapd on Android 3 | # Copyright (c) 2002-2016, Jouni Malinen 4 | # 5 | # This software may be distributed under the terms of the BSD license. 6 | # See README for more details. 7 | # 8 | 9 | on post-fs-data 10 | mkdir /data/misc/wifi/hostapd 0770 wifi wifi 11 | 12 | service hostapd /vendor/bin/hostapd \ 13 | /data/misc/wifi/hostapd.conf 14 | class main 15 | user wifi 16 | writepid /data/misc/wifi/hostapd.pid 17 | group wifi 18 | disabled 19 | oneshot 20 | -------------------------------------------------------------------------------- /src/p2p/Makefile: -------------------------------------------------------------------------------- 1 | all: libp2p.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libp2p.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | CFLAGS += -DCONFIG_WIFI_DISPLAY 12 | CFLAGS += -DCONFIG_WPS_NFC 13 | 14 | LIB_OBJS= \ 15 | p2p_build.o \ 16 | p2p.o \ 17 | p2p_dev_disc.o \ 18 | p2p_go_neg.o \ 19 | p2p_group.o \ 20 | p2p_invitation.o \ 21 | p2p_parse.o \ 22 | p2p_pd.o \ 23 | p2p_sd.o \ 24 | p2p_utils.o 25 | 26 | libp2p.a: $(LIB_OBJS) 27 | $(AR) crT $@ $? 28 | 29 | -include $(OBJS:%.o=%.d) 30 | -------------------------------------------------------------------------------- /src/utils/browser.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Hotspot 2.0 client - Web browser 3 | * Copyright (c) 2013, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef BROWSER_H 10 | #define BROWSER_H 11 | 12 | #ifdef CONFIG_NO_BROWSER 13 | static inline int hs20_web_browser(const char *url) 14 | { 15 | return -1; 16 | } 17 | #else /* CONFIG_NO_BROWSER */ 18 | int hs20_web_browser(const char *url); 19 | #endif /* CONFIG_NO_BROWSER */ 20 | 21 | #endif /* BROWSER_H */ 22 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant_conf.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # Copyright (C) 2010 The Android Open Source Project 4 | # 5 | # This software may be distributed under the terms of the BSD license. 6 | # See README for more details. 7 | # 8 | 9 | # Generate a wpa_supplicant.conf from the template. 10 | # $1: the template file name 11 | if [ -n "$WIFI_DRIVER_SOCKET_IFACE" ] 12 | then 13 | sed -e 's/#.*$//' -e 's/[ \t]*$//' -e '/^$/d' < $1 | sed -e "s/wlan0/$WIFI_DRIVER_SOCKET_IFACE/" 14 | else 15 | sed -e 's/#.*$//' -e 's/[ \t]*$//' -e '/^$/d' < $1 16 | fi 17 | -------------------------------------------------------------------------------- /tests/hwsim/multi-bss-acs.conf: -------------------------------------------------------------------------------- 1 | driver=nl80211 2 | 3 | hw_mode=g 4 | channel=0 5 | ieee80211n=1 6 | 7 | interface=wlan3 8 | ctrl_interface=/var/run/hostapd 9 | 10 | ssid=bss-1 11 | 12 | bss=wlan3-2 13 | bssid=02:00:00:00:03:01 14 | ctrl_interface=/var/run/hostapd 15 | ssid=bss-2 16 | wpa=2 17 | wpa_key_mgmt=WPA-PSK 18 | rsn_pairwise=CCMP 19 | wpa_passphrase=12345678 20 | 21 | bss=wlan3-3 22 | bssid=02:00:00:00:03:02 23 | ctrl_interface=/var/run/hostapd 24 | ssid=bss-3 25 | wpa=1 26 | wpa_key_mgmt=WPA-PSK 27 | rsn_pairwise=TKIP 28 | wpa_passphrase=qwertyuiop 29 | -------------------------------------------------------------------------------- /src/rsn_supp/Makefile: -------------------------------------------------------------------------------- 1 | all: librsn_supp.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov librsn_supp.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | CFLAGS += -DCONFIG_IEEE80211W 12 | CFLAGS += -DCONFIG_IEEE80211R 13 | CFLAGS += -DCONFIG_TDLS 14 | CFLAGS += -DCONFIG_WNM 15 | CFLAGS += -DIEEE8021X_EAPOL 16 | 17 | LIB_OBJS= \ 18 | pmksa_cache.o \ 19 | wpa_ft.o \ 20 | tdls.o \ 21 | preauth.o \ 22 | wpa.o \ 23 | wpa_ie.o 24 | 25 | librsn_supp.a: $(LIB_OBJS) 26 | $(AR) crT $@ $? 27 | 28 | -include $(OBJS:%.o=%.d) 29 | -------------------------------------------------------------------------------- /src/crypto/tls_openssl.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SSL/TLS interface functions for OpenSSL 3 | * Copyright (c) 2004-2015, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef TLS_OPENSSL_H 10 | #define TLS_OPENSSL_H 11 | 12 | enum ocsp_result { 13 | OCSP_GOOD, OCSP_REVOKED, OCSP_NO_RESPONSE, OCSP_INVALID 14 | }; 15 | 16 | enum ocsp_result check_ocsp_resp(SSL_CTX *ssl_ctx, SSL *ssl, X509 *cert, 17 | X509 *issuer, X509 *issuer_issuer); 18 | 19 | #endif /* TLS_OPENSSL_H */ 20 | -------------------------------------------------------------------------------- /src/common/attacks.h: -------------------------------------------------------------------------------- 1 | /* 2 | * krackattacks 3 | * Copyright (c) 2017, Mathy Vanhoef 4 | * 5 | * This code may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | #ifndef ATTACKS_H_ 9 | #define ATTACKS_H_ 10 | 11 | // Make changes to hostapd to support 4-way and group handshake tests 12 | // against the client. 13 | #define KRACK_TEST_CLIENT 14 | 15 | void poc_log(const u8 *clientmac, const char *format, ...); 16 | void wpa_rekey_ptk(void *eloop_ctx, void *timeout_ctx); 17 | 18 | #endif // ATTACKS_H_ 19 | -------------------------------------------------------------------------------- /src/crypto/crypto_none.c: -------------------------------------------------------------------------------- 1 | /* 2 | * WPA Supplicant / Empty template functions for crypto wrapper 3 | * Copyright (c) 2005, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "includes.h" 10 | 11 | #include "common.h" 12 | #include "crypto.h" 13 | 14 | 15 | int md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) 16 | { 17 | return 0; 18 | } 19 | 20 | 21 | int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) 22 | { 23 | return 0; 24 | } 25 | -------------------------------------------------------------------------------- /hostapd/hostapd.wpa_psk: -------------------------------------------------------------------------------- 1 | # List of WPA PSKs. Each line, except for empty lines and lines starting 2 | # with #, must contain a MAC address and PSK separated with a space. 3 | # Special MAC address 00:00:00:00:00:00 can be used to configure PSKs that 4 | # anyone can use. PSK can be configured as an ASCII passphrase of 8..63 5 | # characters or as a 256-bit hex PSK (64 hex digits). 6 | 00:00:00:00:00:00 secret passphrase 7 | 00:11:22:33:44:55 another passphrase 8 | 00:22:33:44:55:66 0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef 9 | 00:00:00:00:00:00 another passphrase for all STAs 10 | -------------------------------------------------------------------------------- /src/common/Makefile: -------------------------------------------------------------------------------- 1 | all: libcommon.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libcommon.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | CFLAGS += -DCONFIG_IEEE80211R 12 | CFLAGS += -DCONFIG_IEEE80211W 13 | CFLAGS += -DCONFIG_HS20 14 | CFLAGS += -DCONFIG_SAE 15 | CFLAGS += -DCONFIG_SUITE 16 | CFLAGS += -DCONFIG_SUITEB 17 | 18 | LIB_OBJS= \ 19 | gas.o \ 20 | hw_features_common.o \ 21 | ieee802_11_common.o \ 22 | sae.o \ 23 | wpa_common.o 24 | 25 | libcommon.a: $(LIB_OBJS) 26 | $(AR) crT $@ $? 27 | 28 | -include $(OBJS:%.o=%.d) 29 | -------------------------------------------------------------------------------- /src/crypto/md5.h: -------------------------------------------------------------------------------- 1 | /* 2 | * MD5 hash implementation and interface functions 3 | * Copyright (c) 2003-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef MD5_H 10 | #define MD5_H 11 | 12 | #define MD5_MAC_LEN 16 13 | 14 | int hmac_md5_vector(const u8 *key, size_t key_len, size_t num_elem, 15 | const u8 *addr[], const size_t *len, u8 *mac); 16 | int hmac_md5(const u8 *key, size_t key_len, const u8 *data, size_t data_len, 17 | u8 *mac); 18 | 19 | #endif /* MD5_H */ 20 | -------------------------------------------------------------------------------- /wpa_supplicant/systemd/wpa_supplicant-wired.service.arg.in: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=WPA supplicant daemon (interface- and wired driver-specific version) 3 | Requires=sys-subsystem-net-devices-%i.device 4 | After=sys-subsystem-net-devices-%i.device 5 | Before=network.target 6 | Wants=network.target 7 | 8 | # NetworkManager users will probably want the dbus version instead. 9 | 10 | [Service] 11 | Type=simple 12 | ExecStart=@BINDIR@/wpa_supplicant -c/etc/wpa_supplicant/wpa_supplicant-wired-%I.conf -Dwired -i%I 13 | 14 | [Install] 15 | Alias=multi-user.target.wants/wpa_supplicant-wired@%i.service 16 | -------------------------------------------------------------------------------- /wpa_supplicant/binder/binder_constants.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * binder interface for wpa_supplicant daemon 3 | * Copyright (c) 2004-2016, Jouni Malinen 4 | * Copyright (c) 2004-2016, Roshan Pius 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #include "binder_constants.h" 11 | 12 | namespace wpa_supplicant_binder { 13 | namespace binder_constants { 14 | 15 | const char kServiceName[] = "wpa_supplicant"; 16 | 17 | } /* namespace binder_constants */ 18 | } /* namespace wpa_supplicant_binder */ 19 | -------------------------------------------------------------------------------- /wpa_supplicant/systemd/wpa_supplicant-nl80211.service.arg.in: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=WPA supplicant daemon (interface- and nl80211 driver-specific version) 3 | Requires=sys-subsystem-net-devices-%i.device 4 | After=sys-subsystem-net-devices-%i.device 5 | Before=network.target 6 | Wants=network.target 7 | 8 | # NetworkManager users will probably want the dbus version instead. 9 | 10 | [Service] 11 | Type=simple 12 | ExecStart=@BINDIR@/wpa_supplicant -c/etc/wpa_supplicant/wpa_supplicant-nl80211-%I.conf -Dnl80211 -i%I 13 | 14 | [Install] 15 | Alias=multi-user.target.wants/wpa_supplicant-nl80211@%i.service 16 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/index.txt: -------------------------------------------------------------------------------- 1 | V 230627164122Z D8D3E3A6CBE3CCC1 unknown /C=FI/O=w1.fi/CN=Root CA 2 | V 150215075930Z D8D3E3A6CBE3CCC9 unknown /C=FI/O=w1.fi/CN=server3.w1.fi 3 | V 140102000000Z D8D3E3A6CBE3CCCA unknown /C=FI/O=w1.fi/CN=server4.w1.fi 4 | V 150215083008Z D8D3E3A6CBE3CCCB unknown /C=FI/O=w1.fi/CN=server5.w1.fi 5 | V 150228224144Z D8D3E3A6CBE3CCCC unknown /C=FI/O=w1.fi/CN=server6.w1.fi 6 | V 160111185024Z D8D3E3A6CBE3CCCD unknown /C=FI/O=w1.fi/CN=ocsp.w1.fi 7 | V 150929211300Z D8D3E3A6CBE3CCD1 unknown /C=FI/O=w1.fi/CN=Test User 8 | V 181001154204Z D8D3E3A6CBE3CD12 unknown /C=FI/O=w1.fi/CN=server.w1.fi 9 | -------------------------------------------------------------------------------- /src/utils/platform.h: -------------------------------------------------------------------------------- 1 | #ifndef PLATFORM_H 2 | #define PLATFORM_H 3 | 4 | #include "includes.h" 5 | #include "common.h" 6 | 7 | #define le16_to_cpu le_to_host16 8 | #define le32_to_cpu le_to_host32 9 | 10 | #define get_unaligned(p) \ 11 | ({ \ 12 | struct packed_dummy_struct { \ 13 | typeof(*(p)) __val; \ 14 | } __attribute__((packed)) *__ptr = (void *) (p); \ 15 | \ 16 | __ptr->__val; \ 17 | }) 18 | #define get_unaligned_le16(p) le16_to_cpu(get_unaligned((le16 *)(p))) 19 | #define get_unaligned_le32(p) le32_to_cpu(get_unaligned((le32 *)(p))) 20 | 21 | #endif /* PLATFORM_H */ 22 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_gui-qt4/scanresultsitem.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_gui - ScanResultsItem class 3 | * Copyright (c) 2015, Adrian Nowicki 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "scanresultsitem.h" 10 | 11 | bool ScanResultsItem::operator< (const QTreeWidgetItem &other) const 12 | { 13 | int sortCol = treeWidget()->sortColumn(); 14 | if (sortCol == 2 || sortCol == 3) { 15 | return text(sortCol).toInt() < other.text(sortCol).toInt(); 16 | } 17 | return text(sortCol) < other.text(sortCol); 18 | } 19 | -------------------------------------------------------------------------------- /src/crypto/md5_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * MD5 internal definitions 3 | * Copyright (c) 2003-2005, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef MD5_I_H 10 | #define MD5_I_H 11 | 12 | struct MD5Context { 13 | u32 buf[4]; 14 | u32 bits[2]; 15 | u8 in[64]; 16 | }; 17 | 18 | void MD5Init(struct MD5Context *context); 19 | void MD5Update(struct MD5Context *context, unsigned char const *buf, 20 | unsigned len); 21 | void MD5Final(unsigned char digest[16], struct MD5Context *context); 22 | 23 | #endif /* MD5_I_H */ 24 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_gui-qt4/scanresultsitem.h: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_gui - ScanResultsItem class 3 | * Copyright (c) 2015, Adrian Nowicki 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SCANRESULTSITEM_H 10 | #define SCANRESULTSITEM_H 11 | 12 | #include 13 | 14 | class ScanResultsItem : public QTreeWidgetItem 15 | { 16 | public: 17 | ScanResultsItem(QTreeWidget *tree) : QTreeWidgetItem(tree) {} 18 | bool operator< (const QTreeWidgetItem &other) const; 19 | }; 20 | 21 | #endif /* SCANRESULTSITEM_H */ 22 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_gui-qt4/stringquery.h: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_gui - StringQuery class 3 | * Copyright (c) 2009, Atheros Communications 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef STRINGQUERY_H 10 | #define STRINGQUERY_H 11 | 12 | #include 13 | #include 14 | #include 15 | 16 | class StringQuery : public QDialog 17 | { 18 | Q_OBJECT 19 | 20 | public: 21 | StringQuery(QString label); 22 | QString get_string(); 23 | 24 | private: 25 | QLineEdit *edit; 26 | }; 27 | 28 | #endif /* STRINGQUERY_H */ 29 | -------------------------------------------------------------------------------- /krackattack/debug-ft-hwsim/README.md: -------------------------------------------------------------------------------- 1 | To verify the script is working correctly, try it out against a virtualized Wi-Fi network as follows: 2 | 3 | apt-get install vtun bridge-utils hostapd 4 | ./initradios.sh 5 | ./hostap0.sh # Start fist access point in window 1 6 | ./hostap1.sh # Start second access point in window 2 7 | 8 | Now read the documentation in `krack-ft-test.py`. Go to step 3 and start the tool using: 9 | 10 | sudo su 11 | source ../venv/bin/activate 12 | ../krack-ft-test.py wpa_supplicant -D nl80211 -i wlan2 -c supplicant.conf 13 | 14 | Follow the next steps. To generate traffic in step 5 use `./gen-traffic.py`. 15 | -------------------------------------------------------------------------------- /krackattack/debug-scripts/dhcp-request.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python2 2 | from scapy.all import * 3 | import sys 4 | 5 | def main(clientmac): 6 | discover = Ether(dst='ff:ff:ff:ff:ff:ff', src=clientmac, type=0x0800) \ 7 | / IP(src='0.0.0.0', dst='255.255.255.255') \ 8 | / UDP(dport=67, sport=68) \ 9 | / BOOTP(op=1, chaddr=clientmac, flags=0x8000) \ 10 | / DHCP(options=[('message-type', 'discover'), ('end')]) 11 | 12 | sendp(discover) 13 | 14 | if __name__ == "__main__": 15 | if len(sys.argv) != 3: 16 | print "Usage:", sys.argv[0], "interface clientmac" 17 | quit(1) 18 | 19 | conf.iface = sys.argv[1] 20 | main(sys.argv[2]) 21 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/index-revoked.txt: -------------------------------------------------------------------------------- 1 | V 230627164122Z D8D3E3A6CBE3CCC1 unknown /C=FI/O=w1.fi/CN=Root CA 2 | V 150215075930Z D8D3E3A6CBE3CCC9 unknown /C=FI/O=w1.fi/CN=server3.w1.fi 3 | V 140102000000Z D8D3E3A6CBE3CCCA unknown /C=FI/O=w1.fi/CN=server4.w1.fi 4 | V 150215083008Z D8D3E3A6CBE3CCCB unknown /C=FI/O=w1.fi/CN=server5.w1.fi 5 | V 150228224144Z D8D3E3A6CBE3CCCC unknown /C=FI/O=w1.fi/CN=server6.w1.fi 6 | V 160111185024Z D8D3E3A6CBE3CCCD unknown /C=FI/O=w1.fi/CN=ocsp.w1.fi 7 | R 150929211122Z 160111185024Z D8D3E3A6CBE3CCE2 unknown /C=FI/O=w1.fi/CN=server.w1.fi 8 | R 150929211300Z 160111185024Z D8D3E3A6CBE3CCD1 unknown /C=FI/O=w1.fi/CN=Test User 9 | -------------------------------------------------------------------------------- /src/crypto/aes.h: -------------------------------------------------------------------------------- 1 | /* 2 | * AES functions 3 | * Copyright (c) 2003-2006, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef AES_H 10 | #define AES_H 11 | 12 | #define AES_BLOCK_SIZE 16 13 | 14 | void * aes_encrypt_init(const u8 *key, size_t len); 15 | int aes_encrypt(void *ctx, const u8 *plain, u8 *crypt); 16 | void aes_encrypt_deinit(void *ctx); 17 | void * aes_decrypt_init(const u8 *key, size_t len); 18 | int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain); 19 | void aes_decrypt_deinit(void *ctx); 20 | 21 | #endif /* AES_H */ 22 | -------------------------------------------------------------------------------- /src/crypto/dh_group5.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Diffie-Hellman group 5 operations 3 | * Copyright (c) 2009, 2012, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef DH_GROUP5_H 10 | #define DH_GROUP5_H 11 | 12 | void * dh5_init(struct wpabuf **priv, struct wpabuf **publ); 13 | void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ); 14 | struct wpabuf * dh5_derive_shared(void *ctx, const struct wpabuf *peer_public, 15 | const struct wpabuf *own_private); 16 | void dh5_free(void *ctx); 17 | 18 | #endif /* DH_GROUP5_H */ 19 | -------------------------------------------------------------------------------- /src/utils/bitfield.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Bitfield 3 | * Copyright (c) 2013, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef BITFIELD_H 10 | #define BITFIELD_H 11 | 12 | struct bitfield; 13 | 14 | struct bitfield * bitfield_alloc(size_t max_bits); 15 | void bitfield_free(struct bitfield *bf); 16 | void bitfield_set(struct bitfield *bf, size_t bit); 17 | void bitfield_clear(struct bitfield *bf, size_t bit); 18 | int bitfield_is_set(struct bitfield *bf, size_t bit); 19 | int bitfield_get_first_zero(struct bitfield *bf); 20 | 21 | #endif /* BITFIELD_H */ 22 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/user.csr: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBgjCB7AIBADBDMQswCQYDVQQGEwJGSTEQMA4GA1UEBwwHVHV1c3VsYTEOMAwG 3 | A1UECgwFdzEuZmkxEjAQBgNVBAMMCVRlc3QgVXNlcjCBnzANBgkqhkiG9w0BAQEF 4 | AAOBjQAwgYkCgYEAppYumyKM35S+i4lJ9nh2omB+FJXzlv6rGSUDNGR0AT6on3zx 5 | R2FgTIKSKHwroA7Lh79Z69fzYSI7FPOrMfZalR+4ergsPKlhU3ib6D5Q7MLWROdD 6 | zbw+TudG/pKew5gPKVjIy4kBdUfplVcPdsUvBV7HHg3yPBJjXblUGa9/QGsCAwEA 7 | AaAAMA0GCSqGSIb3DQEBCwUAA4GBACZXujbQL1Y5fOWK2pRyckyk92NAwgPXWqo7 8 | 8d9FF2bIDBfautK2GYd74SDdUOzjNjGLoEO9tIhB3jWQp8qaC/HiWwbDGd6Ugo8g 9 | WnuLTf2vfL67IdVzG26IAdflrEF4XX3HjuHJO1NxtXKw/u5hm6qiJAu9tkA+2zEM 10 | bbG4Bg/+ 11 | -----END CERTIFICATE REQUEST----- 12 | -------------------------------------------------------------------------------- /src/crypto/aes_siv.h: -------------------------------------------------------------------------------- 1 | /* 2 | * AES SIV (RFC 5297) 3 | * Copyright (c) 2013 Cozybit, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef AES_SIV_H 10 | #define AES_SIV_H 11 | 12 | int aes_siv_encrypt(const u8 *key, size_t key_len, 13 | const u8 *pw, size_t pwlen, 14 | size_t num_elem, const u8 *addr[], const size_t *len, 15 | u8 *out); 16 | int aes_siv_decrypt(const u8 *key, size_t key_len, 17 | const u8 *iv_crypt, size_t iv_c_len, 18 | size_t num_elem, const u8 *addr[], const size_t *len, 19 | u8 *out); 20 | 21 | #endif /* AES_SIV_H */ 22 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/dh_param_3072.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN DH PARAMETERS----- 2 | MIIBiAKCAYEA3HLNJq+KXn0kCgo4QNnZNmkzwAVLPyIoK24CCfXC53Ax2jAY7iCu 3 | recce4hWsRAXjfFLcdGlcHPQ6saSwKE80ebj2eSpiASnAMO46PaGDxpycLl+Ac92 4 | RTaNDFYXveOMSAQboBC6KlNuf4hf7m+ZNxNTEdhKJnx5DmE5UbRKLzndH49OSsNG 5 | 9ip+gHvO6FmRI4bUr5tosVfcVv2nWA0aRknEWFgUw5qKzi0XIejxHf+SKl+XlHGF 6 | /HuFV7zvksy/wVd0aMl40QSRTLvUfK+jwjPyAKFi7pSEa+cJGJNO1AVfiDCQ8xiA 7 | wXM4cqU1cUgTuSZZy3itLIlr3+a0O0PQ/zYCgSZlfRBtbWoOK54RhEJ33xTUVcIH 8 | bMkS8lmqscVIccPVzC9cv+MASbrfE1wvSJFkW1cHy+LScyQLaXeiqovH0HWp60cN 9 | 9UhTcBRV49JTZfTk4wcfc50q+oNNMOXiHXX6Cz7YYkWQhVarawZcOOXkL5LwyqWE 10 | Fd2a8VjMc7ujAgEC 11 | -----END DH PARAMETERS----- 12 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/server.csr: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBhTCB7wIBADBGMQswCQYDVQQGEwJGSTEQMA4GA1UEBwwHVHV1c3VsYTEOMAwG 3 | A1UECgwFdzEuZmkxFTATBgNVBAMMDHNlcnZlci53MS5maTCBnzANBgkqhkiG9w0B 4 | AQEFAAOBjQAwgYkCgYEAuqB3VSIUhVVlm2Qsre2b3WUxydpgUM441jTc6LwbnjDn 5 | EuNTbMntSAN5gWmYzoq4d0c2Rc/G4PF7HnGJVPcBzCKtoEKxqDWeYKo6mFHQ/x/u 6 | vo0KY/uiORfyZGH2ZQIyeXThn9GJZVWpwyCev2lWs/dPP6lUwtqPPK/ydVT6foEC 7 | AwEAAaAAMA0GCSqGSIb3DQEBBQUAA4GBAHa+iMFm3en/hRmhLfMCE7n4l9nczk/P 8 | sLlxcBIeu3pnEXQsI8SZjG8T5kehyFva7mmqcbpFfDxddXxNsqckBfKDjwLEhH49 9 | gpUg6ggYQ1R82IgMEmTdHKyIeTCIvyzPV2Vz1LrGpdCiRMg713zumghsCsn781mN 10 | q7p5YSQL5DdY 11 | -----END CERTIFICATE REQUEST----- 12 | -------------------------------------------------------------------------------- /src/eap_common/Makefile: -------------------------------------------------------------------------------- 1 | all: libeap_common.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libeap_common.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | LIB_OBJS= \ 12 | chap.o \ 13 | eap_common.o \ 14 | eap_eke_common.o \ 15 | eap_eke_common.o \ 16 | eap_fast_common.o \ 17 | eap_gpsk_common.o \ 18 | eap_ikev2_common.o \ 19 | eap_pax_common.o \ 20 | eap_peap_common.o \ 21 | eap_psk_common.o \ 22 | eap_pwd_common.o \ 23 | eap_sake_common.o \ 24 | eap_sim_common.o \ 25 | eap_wsc_common.o \ 26 | ikev2_common.o 27 | 28 | libeap_common.a: $(LIB_OBJS) 29 | $(AR) crT $@ $? 30 | 31 | -include $(OBJS:%.o=%.d) 32 | -------------------------------------------------------------------------------- /src/ap/fils_hlp.h: -------------------------------------------------------------------------------- 1 | /* 2 | * FILS HLP request processing 3 | * Copyright (c) 2017, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef FILS_HLP_H 10 | #define FILS_HLP_H 11 | 12 | int fils_process_hlp(struct hostapd_data *hapd, struct sta_info *sta, 13 | const u8 *pos, int left); 14 | 15 | #ifdef CONFIG_FILS 16 | 17 | void fils_hlp_deinit(struct hostapd_data *hapd); 18 | 19 | #else /* CONFIG_FILS */ 20 | 21 | static inline void fils_hlp_deinit(struct hostapd_data *hapd) 22 | { 23 | } 24 | 25 | #endif /* CONFIG_FILS */ 26 | 27 | #endif /* FILS_HLP_H */ 28 | -------------------------------------------------------------------------------- /wpa_supplicant/binder/binder_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * binder interface for wpa_supplicant daemon 3 | * Copyright (c) 2004-2016, Jouni Malinen 4 | * Copyright (c) 2004-2016, Roshan Pius 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #ifndef BINDER_I_H 11 | #define BINDER_I_H 12 | 13 | #ifdef _cplusplus 14 | extern "C" { 15 | #endif // _cplusplus 16 | 17 | struct wpas_binder_priv 18 | { 19 | int binder_fd; 20 | struct wpa_global *global; 21 | void *binder_manager; 22 | }; 23 | 24 | #ifdef _cplusplus 25 | } 26 | #endif /* _cplusplus */ 27 | 28 | #endif /* BINDER_I_H */ 29 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/server-eku-client.csr: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBhjCB8AIBADBHMQswCQYDVQQGEwJGSTEQMA4GA1UEBwwHVHV1c3VsYTEOMAwG 3 | A1UECgwFdzEuZmkxFjAUBgNVBAMMDXNlcnZlcjUudzEuZmkwgZ8wDQYJKoZIhvcN 4 | AQEBBQADgY0AMIGJAoGBAKOZ6eLhF2A7cDQadFxG47i9u6rJ8+77EjCgacN0OIA6 5 | uiNSx8Fqz7rdQePSaTWkpmBsMR+FvVZsewljzadRa4RAkHd+l2h7OLXEFTt0NzQo 6 | unri14RTeHZNFre43wly54cmdCwEysXOKfW0ztso60VHQo/tiFqjI0mbe7w54QFT 7 | AgMBAAGgADANBgkqhkiG9w0BAQUFAAOBgQBtsWMoDQr3miJluL8rnbsu7t7HhGn8 8 | BBJ393C6P8UHYJTlfMPfg+H2zfyrP68EV76lym5jmNOltZUv14joZjpYX9VOT+5r 9 | e4wq697O7BDG7aBt2BR2BgYCMQiiAXisL0bOs6crYxapqCh3tyzkhxwOyqdqRO7R 10 | +1BujmtweBGlBQ== 11 | -----END CERTIFICATE REQUEST----- 12 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/server-no-dnsname.csr: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBhjCB8AIBADBHMQswCQYDVQQGEwJGSTEQMA4GA1UEBwwHVHV1c3VsYTEOMAwG 3 | A1UECgwFdzEuZmkxFjAUBgNVBAMMDXNlcnZlcjMudzEuZmkwgZ8wDQYJKoZIhvcN 4 | AQEBBQADgY0AMIGJAoGBANv8D6FIh2iGxJ56+Bgod22jWA/bvmvUQ0PEuhc3m6j/ 5 | lqJzFBMcrhkPgVQ1EGSU42RlvpsLFtKekph3h+KamfwdVwyKDUwhL65n12Nh65Fb 6 | WC+tZ2Zl5IMHymo2peYg9lyZJ9tj5YbYK3wdkESBIiF3CgMFw+tjYbNMMsCHhzpH 7 | AgMBAAGgADANBgkqhkiG9w0BAQUFAAOBgQCIMaSR51fy0AWM/sbq3xYrdq682feE 8 | rbsL03Cj89+oa0UAhE5A96Xd+wE5S2M6YhRStzOG3dV+JHcK22Toc8forosURcR4 9 | iiIHtNxShQ716L2nf3hfb+flO5oiZGxaqFUKRxxPSdPaqwp0OedfhMl/KJhEHPH9 10 | wpobDyIzqeqcPw== 11 | -----END CERTIFICATE REQUEST----- 12 | -------------------------------------------------------------------------------- /src/crypto/sha384_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA-384 internal definitions 3 | * Copyright (c) 2015, Pali Rohár 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA384_I_H 10 | #define SHA384_I_H 11 | 12 | #include "sha512_i.h" 13 | 14 | #define SHA384_BLOCK_SIZE SHA512_BLOCK_SIZE 15 | 16 | #define sha384_state sha512_state 17 | 18 | void sha384_init(struct sha384_state *md); 19 | int sha384_process(struct sha384_state *md, const unsigned char *in, 20 | unsigned long inlen); 21 | int sha384_done(struct sha384_state *md, unsigned char *out); 22 | 23 | #endif /* SHA384_I_H */ 24 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/server-eku-client-server.csr: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBhjCB8AIBADBHMQswCQYDVQQGEwJGSTEQMA4GA1UEBwwHVHV1c3VsYTEOMAwG 3 | A1UECgwFdzEuZmkxFjAUBgNVBAMMDXNlcnZlcjYudzEuZmkwgZ8wDQYJKoZIhvcN 4 | AQEBBQADgY0AMIGJAoGBAMowHv0TagIoUZoOqR5yfudayMsMfoqZgY0FswmwqYbn 5 | rkT64Mfu8xi0MWXjBW9mTuPkhYGbR39ftRYrsFmRnMVV09PKLIHO8CeoVN4OT9jw 6 | Eb0LEFY4Jt+pOpUVk6YW7dIetLXAqGGOrhAE/eYmykoNkEu5rMmU8rFrl2tgJOq9 7 | AgMBAAGgADANBgkqhkiG9w0BAQUFAAOBgQA9gLu0fMZobrP6pkMTQFB/e8iDxeEl 8 | LlTqNoZ1hMJ5CQHHB/CLK5D0D+oGrheb/7WA9kT9aMnk1KVFHFmNb0rGMHMLHIWb 9 | PBb7d1xEFskl/iB1VshJX0DhYhkgwxuQzPF3fQCJV+pUf7hOI0tzY4yXgLykO5Us 10 | qzQNeSKKXD3XbQ== 11 | -----END CERTIFICATE REQUEST----- 12 | -------------------------------------------------------------------------------- /hs20/server/ca/ocsp-req.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | for i in *.pem; do 4 | echo "===[ $i ]===================" 5 | openssl ocsp -text -CAfile ca.pem -verify_other demoCA/cacert.pem -trust_other -issuer demoCA/cacert.pem -cert $i -url http://localhost:8888/ 6 | 7 | # openssl ocsp -text -CAfile rootCA/cacert.pem -issuer demoCA/cacert.pem -cert $i -url http://localhost:8888/ 8 | 9 | # openssl ocsp -text -CAfile rootCA/cacert.pem -verify_other demoCA/cacert.pem -trust_other -issuer demoCA/cacert.pem -cert $i -url http://localhost:8888/ 10 | # openssl ocsp -text -CAfile rootCA/cacert.pem -VAfile ca.pem -trust_other -issuer demoCA/cacert.pem -cert $i -url http://localhost:8888/ 11 | done 12 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/dsaparam.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN DSA PARAMETERS----- 2 | MIIBngKBwQCKGwQSQa8/VqJBvFDwpbJTEgQ2myTzbDCZqZof9EBBO5KlbUfgFZfY 3 | szSaZAWPok0mG9BRGoJgtajJruLU6lvoZ94FgGPhRrOZWd0wT6kiySRz4nv9kEMK 4 | Ch83zLQ+i1IdRFozP4k+9YHlAVL354zU+O5USxNMuhPVab4MPsl9I7gZmEQmisHA 5 | fwQOLppTrILuqNtVOqpRogKhVnvQITqV3VsRYV0JVersx48olOqtPGQKKewiJFJp 6 | n7fwGC208/sCFQD4vIUetIr4LGLwm3D/Y5HxNMyFFwKBwC7b0nT/lb1+z86vKg3v 7 | Cyy40D03ezYgmlwV+xObadfMmciwxK98DX763dFsY9omd6csFho1xGfSFRj8Bkv6 8 | rbumVtoZGurdRxU4ADJf4SF5MuK2rJ9jg4Wz6F1BhHEKtoubINlk3fyZWPx0sjkm 9 | t2IJlFY4rfbTI8ETrPrE+zb53tiaundB72cUWmZY/gRuaXh7lRzpMVr71+OedLU6 10 | VkIHXOG/nnb48hZfGohKvWTAp/wkb2w/dCdeGKgVZn3FzA== 11 | -----END DSA PARAMETERS----- 12 | -------------------------------------------------------------------------------- /src/crypto/sha1_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA1 internal definitions 3 | * Copyright (c) 2003-2005, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA1_I_H 10 | #define SHA1_I_H 11 | 12 | struct SHA1Context { 13 | u32 state[5]; 14 | u32 count[2]; 15 | unsigned char buffer[64]; 16 | }; 17 | 18 | void SHA1Init(struct SHA1Context *context); 19 | void SHA1Update(struct SHA1Context *context, const void *data, u32 len); 20 | void SHA1Final(unsigned char digest[20], struct SHA1Context *context); 21 | void SHA1Transform(u32 state[5], const unsigned char buffer[64]); 22 | 23 | #endif /* SHA1_I_H */ 24 | -------------------------------------------------------------------------------- /wpa_supplicant/dbus/dbus_common.h: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_supplicant D-Bus control interface - common definitions 3 | * Copyright (c) 2006, Dan Williams and Red Hat, Inc. 4 | * Copyright (c) 2009, Witold Sowa 5 | * Copyright (c) 2009, Jouni Malinen 6 | * 7 | * This software may be distributed under the terms of the BSD license. 8 | * See README for more details. 9 | */ 10 | 11 | #ifndef DBUS_COMMON_H 12 | #define DBUS_COMMON_H 13 | 14 | struct wpas_dbus_priv; 15 | struct wpa_global; 16 | 17 | struct wpas_dbus_priv * wpas_dbus_init(struct wpa_global *global); 18 | void wpas_dbus_deinit(struct wpas_dbus_priv *priv); 19 | 20 | #endif /* DBUS_COMMON_H */ 21 | -------------------------------------------------------------------------------- /src/crypto/sha256_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA-256 internal definitions 3 | * Copyright (c) 2003-2011, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA256_I_H 10 | #define SHA256_I_H 11 | 12 | #define SHA256_BLOCK_SIZE 64 13 | 14 | struct sha256_state { 15 | u64 length; 16 | u32 state[8], curlen; 17 | u8 buf[SHA256_BLOCK_SIZE]; 18 | }; 19 | 20 | void sha256_init(struct sha256_state *md); 21 | int sha256_process(struct sha256_state *md, const unsigned char *in, 22 | unsigned long inlen); 23 | int sha256_done(struct sha256_state *md, unsigned char *out); 24 | 25 | #endif /* SHA256_I_H */ 26 | -------------------------------------------------------------------------------- /src/drivers/rfkill.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Linux rfkill helper functions for driver wrappers 3 | * Copyright (c) 2010, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef RFKILL_H 10 | #define RFKILL_H 11 | 12 | struct rfkill_data; 13 | 14 | struct rfkill_config { 15 | void *ctx; 16 | char ifname[IFNAMSIZ]; 17 | void (*blocked_cb)(void *ctx); 18 | void (*unblocked_cb)(void *ctx); 19 | }; 20 | 21 | struct rfkill_data * rfkill_init(struct rfkill_config *cfg); 22 | void rfkill_deinit(struct rfkill_data *rfkill); 23 | int rfkill_is_blocked(struct rfkill_data *rfkill); 24 | 25 | #endif /* RFKILL_H */ 26 | -------------------------------------------------------------------------------- /src/crypto/sha512_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA-512 internal definitions 3 | * Copyright (c) 2015, Pali Rohár 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA512_I_H 10 | #define SHA512_I_H 11 | 12 | #define SHA512_BLOCK_SIZE 128 13 | 14 | struct sha512_state { 15 | u64 length, state[8]; 16 | u32 curlen; 17 | u8 buf[SHA512_BLOCK_SIZE]; 18 | }; 19 | 20 | void sha512_init(struct sha512_state *md); 21 | int sha512_process(struct sha512_state *md, const unsigned char *in, 22 | unsigned long inlen); 23 | int sha512_done(struct sha512_state *md, unsigned char *out); 24 | 25 | #endif /* SHA512_I_H */ 26 | -------------------------------------------------------------------------------- /src/utils/edit.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Command line editing and history 3 | * Copyright (c) 2010, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EDIT_H 10 | #define EDIT_H 11 | 12 | int edit_init(void (*cmd_cb)(void *ctx, char *cmd), 13 | void (*eof_cb)(void *ctx), 14 | char ** (*completion_cb)(void *ctx, const char *cmd, int pos), 15 | void *ctx, const char *history_file, const char *ps); 16 | void edit_deinit(const char *history_file, 17 | int (*filter_cb)(void *ctx, const char *cmd)); 18 | void edit_clear_line(void); 19 | void edit_redraw(void); 20 | 21 | #endif /* EDIT_H */ 22 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_gui-qt4/signalbar.h: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_gui - SignalBar class 3 | * Copyright (c) 2011, Kel Modderman 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SIGNALBAR_H 10 | #define SIGNALBAR_H 11 | 12 | #include 13 | #include 14 | 15 | class SignalBar : public QStyledItemDelegate 16 | { 17 | Q_OBJECT 18 | 19 | public: 20 | SignalBar(QObject *parent = 0); 21 | ~SignalBar(); 22 | 23 | virtual void paint(QPainter *painter, 24 | const QStyleOptionViewItem &option, 25 | const QModelIndex &index) const ; 26 | }; 27 | 28 | #endif /* SIGNALBAR_H */ 29 | -------------------------------------------------------------------------------- /src/common/linux_bridge.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Linux bridge configuration kernel interface 3 | * Copyright (c) 2016, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef LINUX_BRIDGE_H 10 | #define LINUX_BRIDGE_H 11 | 12 | /* This interface is defined in linux/if_bridge.h */ 13 | 14 | #define BRCTL_GET_VERSION 0 15 | #define BRCTL_GET_BRIDGES 1 16 | #define BRCTL_ADD_BRIDGE 2 17 | #define BRCTL_DEL_BRIDGE 3 18 | #define BRCTL_ADD_IF 4 19 | #define BRCTL_DEL_IF 5 20 | #define BRCTL_GET_BRIDGE_INFO 6 21 | #define BRCTL_GET_PORT_LIST 7 22 | #define BRCTL_SET_BRIDGE_FORWARD_DELAY 8 23 | 24 | #endif /* LINUX_BRIDGE_H */ 25 | -------------------------------------------------------------------------------- /wpa_supplicant/binder/binder_constants.h: -------------------------------------------------------------------------------- 1 | /* 2 | * binder interface for wpa_supplicant daemon 3 | * Copyright (c) 2004-2016, Jouni Malinen 4 | * Copyright (c) 2004-2016, Roshan Pius 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #ifndef WPA_SUPPLICANT_BINDER_BINDER_CONSTANTS_H 11 | #define WPA_SUPPLICANT_BINDER_BINDER_CONSTANTS_H 12 | 13 | namespace wpa_supplicant_binder { 14 | namespace binder_constants { 15 | 16 | extern const char kServiceName[]; 17 | 18 | } /* namespace binder_constants */ 19 | } /* namespace wpa_supplicant_binder */ 20 | 21 | #endif /* WPA_SUPPLICANT_BINDER_BINDER_CONSTANTS_H */ 22 | -------------------------------------------------------------------------------- /src/ap/dhcp_snoop.h: -------------------------------------------------------------------------------- 1 | /* 2 | * DHCP snooping for Proxy ARP 3 | * Copyright (c) 2014, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef DHCP_SNOOP_H 10 | #define DHCP_SNOOP_H 11 | 12 | #ifdef CONFIG_PROXYARP 13 | 14 | int dhcp_snoop_init(struct hostapd_data *hapd); 15 | void dhcp_snoop_deinit(struct hostapd_data *hapd); 16 | 17 | #else /* CONFIG_PROXYARP */ 18 | 19 | static inline int dhcp_snoop_init(struct hostapd_data *hapd) 20 | { 21 | return 0; 22 | } 23 | 24 | static inline void dhcp_snoop_deinit(struct hostapd_data *hapd) 25 | { 26 | } 27 | 28 | #endif /* CONFIG_PROXYARP */ 29 | 30 | #endif /* DHCP_SNOOP_H */ 31 | -------------------------------------------------------------------------------- /src/utils/ip_addr.h: -------------------------------------------------------------------------------- 1 | /* 2 | * IP address processing 3 | * Copyright (c) 2003-2006, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef IP_ADDR_H 10 | #define IP_ADDR_H 11 | 12 | struct hostapd_ip_addr { 13 | int af; /* AF_INET / AF_INET6 */ 14 | union { 15 | struct in_addr v4; 16 | #ifdef CONFIG_IPV6 17 | struct in6_addr v6; 18 | #endif /* CONFIG_IPV6 */ 19 | u8 max_len[16]; 20 | } u; 21 | }; 22 | 23 | const char * hostapd_ip_txt(const struct hostapd_ip_addr *addr, char *buf, 24 | size_t buflen); 25 | int hostapd_parse_ip_addr(const char *txt, struct hostapd_ip_addr *addr); 26 | 27 | #endif /* IP_ADDR_H */ 28 | -------------------------------------------------------------------------------- /src/eap_common/chap.c: -------------------------------------------------------------------------------- 1 | /* 2 | * CHAP-MD5 (RFC 1994) 3 | * Copyright (c) 2007-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "includes.h" 10 | 11 | #include "common.h" 12 | #include "crypto/crypto.h" 13 | #include "chap.h" 14 | 15 | int chap_md5(u8 id, const u8 *secret, size_t secret_len, const u8 *challenge, 16 | size_t challenge_len, u8 *response) 17 | { 18 | const u8 *addr[3]; 19 | size_t len[3]; 20 | 21 | addr[0] = &id; 22 | len[0] = 1; 23 | addr[1] = secret; 24 | len[1] = secret_len; 25 | addr[2] = challenge; 26 | len[2] = challenge_len; 27 | return md5_vector(3, addr, len, response); 28 | } 29 | -------------------------------------------------------------------------------- /wpa_supplicant/binder/fi/w1/wpa_supplicant/ISupplicantCallbacks.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * binder interface for wpa_supplicant daemon 3 | * Copyright (c) 2004-2016, Jouni Malinen 4 | * Copyright (c) 2004-2016, Roshan Pius 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | package fi.w1.wpa_supplicant; 11 | 12 | import android.os.PersistableBundle; 13 | 14 | /** 15 | * Callback Interface exposed by the wpa_supplicant service. Clients need 16 | * to host an instance of this binder object and pass a reference of the object 17 | * to wpa_supplicant via the registerCallbacksObject method. 18 | */ 19 | interface ISupplicantCallbacks { 20 | } 21 | -------------------------------------------------------------------------------- /src/ap/hs20.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Hotspot 2.0 AP ANQP processing 3 | * Copyright (c) 2011-2013, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef HS20_H 10 | #define HS20_H 11 | 12 | struct hostapd_data; 13 | 14 | u8 * hostapd_eid_hs20_indication(struct hostapd_data *hapd, u8 *eid); 15 | u8 * hostapd_eid_osen(struct hostapd_data *hapd, u8 *eid); 16 | int hs20_send_wnm_notification(struct hostapd_data *hapd, const u8 *addr, 17 | u8 osu_method, const char *url); 18 | int hs20_send_wnm_notification_deauth_req(struct hostapd_data *hapd, 19 | const u8 *addr, 20 | const struct wpabuf *payload); 21 | 22 | #endif /* HS20_H */ 23 | -------------------------------------------------------------------------------- /src/utils/base64.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Base64 encoding/decoding (RFC1341) 3 | * Copyright (c) 2005, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef BASE64_H 10 | #define BASE64_H 11 | 12 | unsigned char * base64_encode(const unsigned char *src, size_t len, 13 | size_t *out_len); 14 | unsigned char * base64_decode(const unsigned char *src, size_t len, 15 | size_t *out_len); 16 | unsigned char * base64_url_encode(const unsigned char *src, size_t len, 17 | size_t *out_len, int add_pad); 18 | unsigned char * base64_url_decode(const unsigned char *src, size_t len, 19 | size_t *out_len); 20 | 21 | #endif /* BASE64_H */ 22 | -------------------------------------------------------------------------------- /src/ap/wmm.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / WMM (Wi-Fi Multimedia) 3 | * Copyright 2002-2003, Instant802 Networks, Inc. 4 | * Copyright 2005-2006, Devicescape Software, Inc. 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #ifndef WME_H 11 | #define WME_H 12 | 13 | struct ieee80211_mgmt; 14 | struct wmm_tspec_element; 15 | 16 | u8 * hostapd_eid_wmm(struct hostapd_data *hapd, u8 *eid); 17 | int hostapd_eid_wmm_valid(struct hostapd_data *hapd, const u8 *eid, 18 | size_t len); 19 | void hostapd_wmm_action(struct hostapd_data *hapd, 20 | const struct ieee80211_mgmt *mgmt, size_t len); 21 | int wmm_process_tspec(struct wmm_tspec_element *tspec); 22 | 23 | #endif /* WME_H */ 24 | -------------------------------------------------------------------------------- /hostapd/hostapd.eap_user_sqlite: -------------------------------------------------------------------------------- 1 | CREATE TABLE users( 2 | identity TEXT PRIMARY KEY, 3 | methods TEXT, 4 | password TEXT, 5 | remediation TEXT, 6 | phase2 INTEGER 7 | ); 8 | 9 | CREATE TABLE wildcards( 10 | identity TEXT PRIMARY KEY, 11 | methods TEXT 12 | ); 13 | 14 | INSERT INTO users(identity,methods,password,phase2) VALUES ('user','TTLS-MSCHAPV2','password',1); 15 | INSERT INTO users(identity,methods,password,phase2) VALUES ('DOMAIN\mschapv2 user','TTLS-MSCHAPV2','password',1); 16 | 17 | INSERT INTO wildcards(identity,methods) VALUES ('','TTLS,TLS'); 18 | INSERT INTO wildcards(identity,methods) VALUES ('0','AKA'); 19 | 20 | CREATE TABLE authlog( 21 | timestamp TEXT, 22 | session TEXT, 23 | nas_ip TEXT, 24 | username TEXT, 25 | note TEXT 26 | ); 27 | -------------------------------------------------------------------------------- /wpa_supplicant/doc/docbook/Makefile: -------------------------------------------------------------------------------- 1 | all: man html pdf 2 | 3 | FILES += wpa_background 4 | FILES += wpa_cli 5 | FILES += wpa_gui 6 | FILES += wpa_passphrase 7 | FILES += wpa_priv 8 | FILES += wpa_supplicant.conf 9 | FILES += wpa_supplicant 10 | FILES += eapol_test 11 | 12 | man: 13 | for i in $(FILES); do docbook2man $$i.sgml; done 14 | 15 | html: 16 | for i in $(FILES); do docbook2html $$i.sgml && \ 17 | mv index.html $$i.html; done 18 | 19 | pdf: 20 | for i in $(FILES); do docbook2pdf $$i.sgml; done 21 | 22 | 23 | clean: 24 | rm -f wpa_background.8 wpa_cli.8 wpa_gui.8 wpa_passphrase.8 wpa_priv.8 wpa_supplicant.8 eapol_test.8 25 | rm -f wpa_supplicant.conf.5 26 | rm -f manpage.links manpage.refs 27 | rm -f $(FILES:%=%.pdf) 28 | rm -f $(FILES:%=%.html) 29 | -------------------------------------------------------------------------------- /wpa_supplicant/libwpa_test.c: -------------------------------------------------------------------------------- 1 | /* 2 | * libwpa_test - Test program for libwpa_client.* library linking 3 | * Copyright (c) 2015, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "includes.h" 10 | 11 | #include "common/wpa_ctrl.h" 12 | 13 | int main(int argc, char *argv[]) 14 | { 15 | struct wpa_ctrl *ctrl; 16 | 17 | ctrl = wpa_ctrl_open("foo"); 18 | if (!ctrl) 19 | return -1; 20 | if (wpa_ctrl_attach(ctrl) == 0) 21 | wpa_ctrl_detach(ctrl); 22 | if (wpa_ctrl_pending(ctrl)) { 23 | char buf[10]; 24 | size_t len; 25 | 26 | len = sizeof(buf); 27 | wpa_ctrl_recv(ctrl, buf, &len); 28 | } 29 | wpa_ctrl_close(ctrl); 30 | 31 | return 0; 32 | } 33 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_gui-qt4/stringquery.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_gui - StringQuery class 3 | * Copyright (c) 2009, Atheros Communications 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include 10 | #include 11 | 12 | #include "stringquery.h" 13 | 14 | 15 | StringQuery::StringQuery(QString label) 16 | { 17 | edit = new QLineEdit; 18 | edit->setFocus(); 19 | QGridLayout *layout = new QGridLayout; 20 | layout->addWidget(new QLabel(label), 0, 0); 21 | layout->addWidget(edit, 0, 1); 22 | setLayout(layout); 23 | 24 | connect(edit, SIGNAL(returnPressed()), this, SLOT(accept())); 25 | } 26 | 27 | 28 | QString StringQuery::get_string() 29 | { 30 | return edit->text(); 31 | } 32 | -------------------------------------------------------------------------------- /wpa_supplicant/blacklist.h: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_supplicant - Temporary BSSID blacklist 3 | * Copyright (c) 2003-2007, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef BLACKLIST_H 10 | #define BLACKLIST_H 11 | 12 | struct wpa_blacklist { 13 | struct wpa_blacklist *next; 14 | u8 bssid[ETH_ALEN]; 15 | int count; 16 | }; 17 | 18 | struct wpa_blacklist * wpa_blacklist_get(struct wpa_supplicant *wpa_s, 19 | const u8 *bssid); 20 | int wpa_blacklist_add(struct wpa_supplicant *wpa_s, const u8 *bssid); 21 | int wpa_blacklist_del(struct wpa_supplicant *wpa_s, const u8 *bssid); 22 | void wpa_blacklist_clear(struct wpa_supplicant *wpa_s); 23 | 24 | #endif /* BLACKLIST_H */ 25 | -------------------------------------------------------------------------------- /src/eap_common/eap_wsc_common.h: -------------------------------------------------------------------------------- 1 | /* 2 | * EAP-WSC definitions for Wi-Fi Protected Setup 3 | * Copyright (c) 2007, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EAP_WSC_COMMON_H 10 | #define EAP_WSC_COMMON_H 11 | 12 | #define EAP_VENDOR_TYPE_WSC 1 13 | 14 | #define WSC_FLAGS_MF 0x01 15 | #define WSC_FLAGS_LF 0x02 16 | 17 | #define WSC_ID_REGISTRAR "WFA-SimpleConfig-Registrar-1-0" 18 | #define WSC_ID_REGISTRAR_LEN 30 19 | #define WSC_ID_ENROLLEE "WFA-SimpleConfig-Enrollee-1-0" 20 | #define WSC_ID_ENROLLEE_LEN 29 21 | 22 | #define WSC_FRAGMENT_SIZE 1400 23 | 24 | 25 | struct wpabuf * eap_wsc_build_frag_ack(u8 id, u8 code); 26 | 27 | #endif /* EAP_WSC_COMMON_H */ 28 | -------------------------------------------------------------------------------- /src/tls/Makefile: -------------------------------------------------------------------------------- 1 | all: libtls.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d libtls.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | 10 | include ../lib.rules 11 | 12 | CFLAGS += -DCONFIG_INTERNAL_LIBTOMMATH 13 | CFLAGS += -DCONFIG_CRYPTO_INTERNAL 14 | CFLAGS += -DCONFIG_TLSV11 15 | CFLAGS += -DCONFIG_TLSV12 16 | 17 | LIB_OBJS= \ 18 | asn1.o \ 19 | bignum.o \ 20 | pkcs1.o \ 21 | pkcs5.o \ 22 | pkcs8.o \ 23 | rsa.o \ 24 | tlsv1_client.o \ 25 | tlsv1_client_read.o \ 26 | tlsv1_client_write.o \ 27 | tlsv1_client_ocsp.o \ 28 | tlsv1_common.o \ 29 | tlsv1_cred.o \ 30 | tlsv1_record.o \ 31 | tlsv1_server.o \ 32 | tlsv1_server_read.o \ 33 | tlsv1_server_write.o \ 34 | x509v3.o 35 | 36 | 37 | libtls.a: $(LIB_OBJS) 38 | $(AR) crT $@ $? 39 | 40 | -include $(OBJS:%.o=%.d) 41 | -------------------------------------------------------------------------------- /hs20/server/www/redirect.php: -------------------------------------------------------------------------------- 1 | query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch(); 16 | if ($row == false) { 17 | die("Session not found"); 18 | } 19 | 20 | $uri = $row['redirect_uri']; 21 | 22 | header("Location: $uri", true, 302); 23 | 24 | $user = $row['user']; 25 | $realm = $row['realm']; 26 | 27 | $db->exec("INSERT INTO eventlog(user,realm,sessionid,timestamp,notes) " . 28 | "VALUES ('$user', '$realm', '$id', " . 29 | "strftime('%Y-%m-%d %H:%M:%f','now'), " . 30 | "'redirected after user input')"); 31 | 32 | ?> 33 | -------------------------------------------------------------------------------- /tests/hwsim/dictionary.radius: -------------------------------------------------------------------------------- 1 | ATTRIBUTE User-Name 1 string 2 | ATTRIBUTE User-Password 2 string 3 | ATTRIBUTE NAS-IP-Address 4 ipaddr 4 | ATTRIBUTE State 24 octets 5 | ATTRIBUTE Session-Timeout 27 integer 6 | ATTRIBUTE Calling-Station-Id 31 string 7 | ATTRIBUTE NAS-Identifier 32 string 8 | ATTRIBUTE Acct-Session-Id 44 string 9 | ATTRIBUTE Acct-Multi-Session-Id 50 string 10 | ATTRIBUTE Event-Timestamp 55 date 11 | ATTRIBUTE Tunnel-Type 64 integer 12 | ATTRIBUTE Tunnel-Medium-Type 65 integer 13 | ATTRIBUTE Tunnel-Password 69 octets 14 | ATTRIBUTE EAP-Message 79 string 15 | ATTRIBUTE Message-Authenticator 80 octets 16 | ATTRIBUTE Tunnel-Private-Group-ID 81 string 17 | ATTRIBUTE Acct-Interim-Interval 85 integer 18 | ATTRIBUTE Chargeable-User-Identity 89 string 19 | ATTRIBUTE Error-Cause 101 integer 20 | -------------------------------------------------------------------------------- /wpadebug/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /hostapd/config_file.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / Configuration file parser 3 | * Copyright (c) 2003-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef CONFIG_FILE_H 10 | #define CONFIG_FILE_H 11 | 12 | struct hostapd_config * hostapd_config_read(const char *fname); 13 | int hostapd_set_iface(struct hostapd_config *conf, 14 | struct hostapd_bss_config *bss, const char *field, 15 | char *value); 16 | int hostapd_acl_comp(const void *a, const void *b); 17 | int hostapd_add_acl_maclist(struct mac_acl_entry **acl, int *num, 18 | int vlan_id, const u8 *addr); 19 | void hostapd_remove_acl_mac(struct mac_acl_entry **acl, int *num, 20 | const u8 *addr); 21 | 22 | #endif /* CONFIG_FILE_H */ 23 | -------------------------------------------------------------------------------- /src/crypto/des_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * DES and 3DES-EDE ciphers 3 | * Copyright (c) 2006-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef DES_I_H 10 | #define DES_I_H 11 | 12 | struct des3_key_s { 13 | u32 ek[3][32]; 14 | u32 dk[3][32]; 15 | }; 16 | 17 | void des_key_setup(const u8 *key, u32 *ek, u32 *dk); 18 | void des_block_encrypt(const u8 *plain, const u32 *ek, u8 *crypt); 19 | void des_block_decrypt(const u8 *crypt, const u32 *dk, u8 *plain); 20 | 21 | void des3_key_setup(const u8 *key, struct des3_key_s *dkey); 22 | void des3_encrypt(const u8 *plain, const struct des3_key_s *key, u8 *crypt); 23 | void des3_decrypt(const u8 *crypt, const struct des3_key_s *key, u8 *plain); 24 | 25 | #endif /* DES_I_H */ 26 | -------------------------------------------------------------------------------- /src/utils/Makefile: -------------------------------------------------------------------------------- 1 | all: libutils.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libutils.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | 10 | include ../lib.rules 11 | 12 | #CFLAGS += -DWPA_TRACE 13 | CFLAGS += -DCONFIG_IPV6 14 | CFLAGS += -DCONFIG_DEBUG_FILE 15 | 16 | LIB_OBJS= \ 17 | base64.o \ 18 | bitfield.o \ 19 | common.o \ 20 | crc32.o \ 21 | ip_addr.o \ 22 | radiotap.o \ 23 | trace.o \ 24 | uuid.o \ 25 | wpa_debug.o \ 26 | wpabuf.o 27 | 28 | # Pick correct OS wrapper implementation 29 | LIB_OBJS += os_unix.o 30 | 31 | # Pick correct event loop implementation 32 | LIB_OBJS += eloop.o 33 | 34 | # Pick correct edit implementation 35 | LIB_OBJS += edit.o 36 | 37 | #LIB_OBJS += pcsc_funcs.o 38 | 39 | libutils.a: $(LIB_OBJS) 40 | $(AR) crT $@ $? 41 | 42 | -include $(OBJS:%.o=%.d) 43 | -------------------------------------------------------------------------------- /src/wps/http.h: -------------------------------------------------------------------------------- 1 | /* 2 | * HTTP for WPS 3 | * Copyright (c) 2000-2003 Intel Corporation 4 | * Copyright (c) 2006-2007 Sony Corporation 5 | * Copyright (c) 2008-2009 Atheros Communications 6 | * Copyright (c) 2009, Jouni Malinen 7 | * 8 | * See wps_upnp.c for more details on licensing and code history. 9 | */ 10 | 11 | #ifndef HTTP_H 12 | #define HTTP_H 13 | 14 | enum http_reply_code { 15 | HTTP_OK = 200, 16 | HTTP_BAD_REQUEST = 400, 17 | UPNP_INVALID_ACTION = 401, 18 | UPNP_INVALID_ARGS = 402, 19 | HTTP_NOT_FOUND = 404, 20 | HTTP_PRECONDITION_FAILED = 412, 21 | HTTP_INTERNAL_SERVER_ERROR = 500, 22 | HTTP_UNIMPLEMENTED = 501, 23 | UPNP_ACTION_FAILED = 501, 24 | UPNP_ARG_VALUE_INVALID = 600, 25 | UPNP_ARG_VALUE_OUT_OF_RANGE = 601, 26 | UPNP_OUT_OF_MEMORY = 603 27 | }; 28 | 29 | #endif /* HTTP_H */ 30 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/as.conf: -------------------------------------------------------------------------------- 1 | driver=none 2 | radius_server_clients=auth_serv/radius_clients.conf 3 | radius_server_acct_port=1813 4 | eap_server=1 5 | eap_user_file=auth_serv/eap_user.conf 6 | 7 | interface=as 8 | ctrl_interface=/var/run/hostapd 9 | ctrl_interface_group=admin 10 | 11 | ca_cert=auth_serv/ca.pem 12 | server_cert=auth_serv/server.pem 13 | private_key=auth_serv/server.key 14 | ocsp_stapling_response=LOGDIR/ocsp-server-cache.der 15 | ocsp_stapling_response_multi=LOGDIR/ocsp-multi-server-cache.der 16 | server_id=server.w1.fi 17 | eap_sim_db=unix:/tmp/hlr_auc_gw.sock 18 | dh_file=auth_serv/dh.conf 19 | pac_opaque_encr_key=000102030405060708090a0b0c0d0e0f 20 | eap_fast_a_id=101112131415161718191a1b1c1d1e1f 21 | eap_fast_a_id_info=test server 22 | eap_sim_aka_result_ind=1 23 | 24 | dump_msk_file=LOGDIR/as-msk.lst 25 | -------------------------------------------------------------------------------- /src/common/qca-vendor-attr.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Qualcomm Atheros vendor specific attribute definitions 3 | * Copyright (c) 2014, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef QCA_VENDOR_ATTR_H 10 | #define QCA_VENDOR_ATTR_H 11 | 12 | /* 13 | * This file defines some of the attributes used with Qualcomm Atheros OUI 14 | * 00:13:74 in a way that is not suitable for qca-vendor.h, e.g., due to 15 | * compiler dependencies. 16 | */ 17 | 18 | struct qca_avoid_freq_range { 19 | u32 start_freq; 20 | u32 end_freq; 21 | } __attribute__ ((packed)); 22 | 23 | struct qca_avoid_freq_list { 24 | u32 count; 25 | struct qca_avoid_freq_range range[0]; 26 | } __attribute__ ((packed)); 27 | 28 | #endif /* QCA_VENDOR_ATTR_H */ 29 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/ec-ca.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE----- 2 | MIICAjCCAaegAwIBAgIJAPdTJDJVY8FeMAoGCCqGSM49BAMCMFIxCzAJBgNVBAYT 3 | AkZJMREwDwYDVQQHDAhIZWxzaW5raTEOMAwGA1UECgwFdzEuZmkxIDAeBgNVBAMM 4 | F1N1aXRlIEIgMTI4LWJpdCBSb290IENBMB4XDTE2MDIwMTA5MjUyM1oXDTI2MDEy 5 | OTA5MjUyM1owUjELMAkGA1UEBhMCRkkxETAPBgNVBAcMCEhlbHNpbmtpMQ4wDAYD 6 | VQQKDAV3MS5maTEgMB4GA1UEAwwXU3VpdGUgQiAxMjgtYml0IFJvb3QgQ0EwWTAT 7 | BgcqhkjOPQIBBggqhkjOPQMBBwNCAARwuOrBY7USD4V+MOidWwSkY3S8+4lXWUZ3 8 | +YqRAcVjEPMtokc0zyJAofV0BPgz/yt41gXmvOTALpXfdHpPkeqOo2YwZDAdBgNV 9 | HQ4EFgQUcyrcCIxm5gVTsimSHN2Km8Amy/gwHwYDVR0jBBgwFoAUcyrcCIxm5gVT 10 | simSHN2Km8Amy/gwEgYDVR0TAQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAQYw 11 | CgYIKoZIzj0EAwIDSQAwRgIhAOHO2+N8tgUQKakQcLGR+kB3mKPmjyhu478xmrKg 12 | wQq9AiEAmnN7YQBgVBk/+zOri1rCCP8DJ3gE+BSUA3cyQGUvtAc= 13 | -----END CERTIFICATE----- 14 | -------------------------------------------------------------------------------- /src/crypto/dh_groups.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Diffie-Hellman groups 3 | * Copyright (c) 2007, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef DH_GROUPS_H 10 | #define DH_GROUPS_H 11 | 12 | struct dh_group { 13 | int id; 14 | const u8 *generator; 15 | size_t generator_len; 16 | const u8 *prime; 17 | size_t prime_len; 18 | const u8 *order; 19 | size_t order_len; 20 | unsigned int safe_prime:1; 21 | }; 22 | 23 | const struct dh_group * dh_groups_get(int id); 24 | struct wpabuf * dh_init(const struct dh_group *dh, struct wpabuf **priv); 25 | struct wpabuf * dh_derive_shared(const struct wpabuf *peer_public, 26 | const struct wpabuf *own_private, 27 | const struct dh_group *dh); 28 | 29 | #endif /* DH_GROUPS_H */ 30 | -------------------------------------------------------------------------------- /src/wps/Makefile: -------------------------------------------------------------------------------- 1 | all: libwps.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libwps.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | CFLAGS += -DCONFIG_P2P 12 | CFLAGS += -DCONFIG_WPS_OOB 13 | CFLAGS += -DCONFIG_WPS_NFC 14 | 15 | LIB_OBJS= \ 16 | http_client.o \ 17 | httpread.o \ 18 | http_server.o \ 19 | ndef.o \ 20 | upnp_xml.o \ 21 | wps_attr_build.o \ 22 | wps_attr_parse.o \ 23 | wps_attr_process.o \ 24 | wps.o \ 25 | wps_common.o \ 26 | wps_dev_attr.o \ 27 | wps_enrollee.o \ 28 | wps_er.o \ 29 | wps_er_ssdp.o \ 30 | wps_module_tests.o \ 31 | wps_registrar.o \ 32 | wps_upnp_ap.o \ 33 | wps_upnp.o \ 34 | wps_upnp_event.o \ 35 | wps_upnp_ssdp.o \ 36 | wps_upnp_web.o 37 | 38 | libwps.a: $(LIB_OBJS) 39 | $(AR) crT $@ $? 40 | 41 | -include $(OBJS:%.o=%.d) 42 | -------------------------------------------------------------------------------- /tests/test-x509.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Testing tool for X.509v3 routines 3 | * Copyright (c) 2006-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "includes.h" 10 | 11 | #include "common.h" 12 | #include "tls/x509v3.h" 13 | 14 | 15 | int main(int argc, char *argv[]) 16 | { 17 | FILE *f; 18 | u8 buf[3000]; 19 | size_t len; 20 | struct x509_certificate *cert; 21 | 22 | wpa_debug_level = 0; 23 | 24 | f = fopen(argv[1], "rb"); 25 | if (f == NULL) 26 | return -1; 27 | len = fread(buf, 1, sizeof(buf), f); 28 | fclose(f); 29 | 30 | cert = x509_certificate_parse(buf, len); 31 | if (cert == NULL) 32 | printf("Failed to parse X.509 certificate\n"); 33 | x509_certificate_free(cert); 34 | 35 | return 0; 36 | } 37 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/as2.conf: -------------------------------------------------------------------------------- 1 | driver=none 2 | radius_server_clients=auth_serv/radius_clients.conf 3 | radius_server_auth_port=1814 4 | eap_server=1 5 | eap_user_file=auth_serv/eap_user.conf 6 | 7 | interface=as2 8 | ctrl_interface=/var/run/hostapd 9 | ctrl_interface_group=admin 10 | 11 | ca_cert=auth_serv/ca.pem 12 | server_cert=auth_serv/server.pem 13 | private_key=auth_serv/server.key 14 | ocsp_stapling_response=LOGDIR/ocsp-server-cache.der 15 | ocsp_stapling_response_multi=LOGDIR/ocsp-multi-server-cache.der 16 | server_id=server2.w1.fi 17 | eap_sim_db=unix:/tmp/hlr_auc_gw.sock db=LOGDIR/hostapd.db 18 | dh_file=auth_serv/dh.conf 19 | pac_opaque_encr_key=000102030405060708090a0b0c0d0e0f 20 | eap_fast_a_id=101112131415161718191a1b1c1d1e1f 21 | eap_fast_a_id_info=test server2 22 | eap_sim_aka_result_ind=1 23 | 24 | dump_msk_file=LOGDIR/as2-msk.lst 25 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/hlr_auc_gw.gsm: -------------------------------------------------------------------------------- 1 | # Test triplets generated with GSM-Milenage using 2 | # Ki = 90dca4eda45b53cf0f12d7c9c3bc6a89 3 | # OPc = cb9cccc4b9258e6dca4760379fb82581 4 | 5 | # GSM authentication triplet file for EAP-SIM authenticator 6 | # IMSI:Kc:SRES:RAND 7 | # IMSI: ASCII string (numbers) 8 | # Kc: hex, 8 octets 9 | # SRES: hex, 4 octets 10 | # RAND: hex, 16 octets 11 | 12 | 232010000000001:79747302dd684291:fbe55c44:d29b2f51f1fd20304ad0c447b4dcdc37 13 | 232010000000001:2f2eaa1d83e43813:6e2e3ea3:e19a8e96255b88e8a8be104637d165b2 14 | 232010000000001:b7c935bfb51f2c5a:257581f5:8079c338eb4195d0fe2d46b357979054 15 | 232010000000001:bc93df6af0412a69:dae1faa0:a48b8e2a59b8bed468ea3d57ef9ee118 16 | 232010000000001:626db3b0e9e321c3:a3e33208:38e7e65d0c0ef82185d1697410f2b31a 17 | 232010000000001:df3cab53d00c622e:0b785f5d:d8a4a9efe1689d232468f316d2a84270 18 | -------------------------------------------------------------------------------- /krackattack/reenable-hwcrypto.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Copyright (c) 2021, Mathy Vanhoef 4 | # 5 | # This code may be distributed under the terms of the BSD license. 6 | # See README for more details. 7 | 8 | set -e 9 | 10 | NOHWCRYPT="ath5k ath9k ath9k_htc rt2800usb carl9170 b43 p54common rt2500usb rt2800pci rt2800usb rt73usb" 11 | SWCRYPTO="iwlwifi iwl3945 iwl4965" 12 | HWCRYPTO="ipw2200" 13 | 14 | 15 | # 1. Create nohwcrypt.conf options file 16 | 17 | rm -f /etc/modprobe.d/nohwcrypt.conf 18 | 19 | 20 | # 2. Remove loaded modules so they'll reload parameters 21 | 22 | for MODULE in $NOHWCRYPT $SWCRYPTO $HWCRYPTO 23 | do 24 | rmmod $MODULE 2> /dev/null || true; 25 | done 26 | 27 | 28 | # 3. Done. To be sure parameters are reloaded, reboot computer. 29 | 30 | echo "Hardware decryption re-enabled. Reboot your computer." 31 | -------------------------------------------------------------------------------- /src/utils/ext_password_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * External password backend - internal definitions 3 | * Copyright (c) 2012, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EXT_PASSWORD_I_H 10 | #define EXT_PASSWORD_I_H 11 | 12 | #include "ext_password.h" 13 | 14 | struct ext_password_backend { 15 | const char *name; 16 | void * (*init)(const char *params); 17 | void (*deinit)(void *ctx); 18 | struct wpabuf * (*get)(void *ctx, const char *name); 19 | }; 20 | 21 | struct wpabuf * ext_password_alloc(size_t len); 22 | 23 | /* Available ext_password backends */ 24 | 25 | #ifdef CONFIG_EXT_PASSWORD_TEST 26 | extern const struct ext_password_backend ext_password_test; 27 | #endif /* CONFIG_EXT_PASSWORD_TEST */ 28 | 29 | #endif /* EXT_PASSWORD_I_H */ 30 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.a 2 | *.o 3 | *.d 4 | *.gcno 5 | *.gcda 6 | *.gcov 7 | *.pyc 8 | *~ 9 | .config 10 | tests/hwsim/logs 11 | tests/remote/logs 12 | wpaspy/build 13 | wpa_supplicant/eapol_test 14 | wpa_supplicant/nfc_pw_token 15 | wpa_supplicant/preauth_test 16 | wpa_supplicant/wpa_cli 17 | wpa_supplicant/wpa_passphrase 18 | wpa_supplicant/wpa_supplicant 19 | wpa_supplicant/wpa_priv 20 | wpa_supplicant/wpa_gui/Makefile 21 | wpa_supplicant/wpa_gui/wpa_gui 22 | wpa_supplicant/wpa_gui-qt4/Makefile 23 | wpa_supplicant/wpa_gui-qt4/wpa_gui 24 | wpa_supplicant/libwpa_test1 25 | wpa_supplicant/libwpa_test2 26 | hostapd/hostapd 27 | hostapd/hostapd_cli 28 | hostapd/hlr_auc_gw 29 | hostapd/nt_password_hash 30 | mac80211_hwsim/tools/hwsim_test 31 | wlantest/libwlantest.a 32 | wlantest/test_vectors 33 | wlantest/wlantest 34 | wlantest/wlantest_cli 35 | **/parallel-vm.log 36 | venv/ 37 | -------------------------------------------------------------------------------- /src/ap/vlan.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / VLAN definition 3 | * Copyright (c) 2015, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef VLAN_H 10 | #define VLAN_H 11 | 12 | #define MAX_NUM_TAGGED_VLAN 32 13 | 14 | struct vlan_description { 15 | int notempty; /* 0 : no vlan information present, 1: else */ 16 | int untagged; /* >0 802.1q vid */ 17 | int tagged[MAX_NUM_TAGGED_VLAN]; /* first k items, ascending order */ 18 | }; 19 | 20 | #ifndef CONFIG_NO_VLAN 21 | int vlan_compare(struct vlan_description *a, struct vlan_description *b); 22 | #else /* CONFIG_NO_VLAN */ 23 | static inline int 24 | vlan_compare(struct vlan_description *a, struct vlan_description *b) 25 | { 26 | return 0; 27 | } 28 | #endif /* CONFIG_NO_VLAN */ 29 | 30 | #endif /* VLAN_H */ 31 | -------------------------------------------------------------------------------- /src/crypto/aes-encblock.c: -------------------------------------------------------------------------------- 1 | /* 2 | * AES encrypt_block 3 | * 4 | * Copyright (c) 2003-2007, Jouni Malinen 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #include "includes.h" 11 | 12 | #include "common.h" 13 | #include "aes.h" 14 | #include "aes_wrap.h" 15 | 16 | /** 17 | * aes_128_encrypt_block - Perform one AES 128-bit block operation 18 | * @key: Key for AES 19 | * @in: Input data (16 bytes) 20 | * @out: Output of the AES block operation (16 bytes) 21 | * Returns: 0 on success, -1 on failure 22 | */ 23 | int aes_128_encrypt_block(const u8 *key, const u8 *in, u8 *out) 24 | { 25 | void *ctx; 26 | ctx = aes_encrypt_init(key, 16); 27 | if (ctx == NULL) 28 | return -1; 29 | aes_encrypt(ctx, in, out); 30 | aes_encrypt_deinit(ctx); 31 | return 0; 32 | } 33 | -------------------------------------------------------------------------------- /src/drivers/netlink.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Netlink helper functions for driver wrappers 3 | * Copyright (c) 2002-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef NETLINK_H 10 | #define NETLINK_H 11 | 12 | struct netlink_data; 13 | struct ifinfomsg; 14 | 15 | struct netlink_config { 16 | void *ctx; 17 | void (*newlink_cb)(void *ctx, struct ifinfomsg *ifi, u8 *buf, 18 | size_t len); 19 | void (*dellink_cb)(void *ctx, struct ifinfomsg *ifi, u8 *buf, 20 | size_t len); 21 | }; 22 | 23 | struct netlink_data * netlink_init(struct netlink_config *cfg); 24 | void netlink_deinit(struct netlink_data *netlink); 25 | int netlink_send_oper_ifla(struct netlink_data *netlink, int ifindex, 26 | int linkmode, int operstate); 27 | 28 | #endif /* NETLINK_H */ 29 | -------------------------------------------------------------------------------- /src/ap/taxonomy.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / Station client taxonomy 3 | * Copyright (c) 2015 Google, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef TAXONOMY_H 10 | #define TAXONOMY_H 11 | 12 | void taxonomy_sta_info_probe_req(const struct hostapd_data *hapd, 13 | struct sta_info *sta, 14 | const u8 *ie, size_t ie_len); 15 | void taxonomy_hostapd_sta_info_probe_req(const struct hostapd_data *hapd, 16 | struct hostapd_sta_info *sta, 17 | const u8 *ie, size_t ie_len); 18 | void taxonomy_sta_info_assoc_req(const struct hostapd_data *hapd, 19 | struct sta_info *sta, 20 | const u8 *ie, size_t ie_len); 21 | int retrieve_sta_taxonomy(const struct hostapd_data *hapd, 22 | struct sta_info *sta, char *buf, size_t buflen); 23 | 24 | #endif /* TAXONOMY_H */ 25 | -------------------------------------------------------------------------------- /tests/hwsim/multi-bss-iface.conf: -------------------------------------------------------------------------------- 1 | driver=nl80211 2 | 3 | hw_mode=g 4 | channel=1 5 | ieee80211n=1 6 | 7 | interface=wlan3 8 | ctrl_interface=/var/run/hostapd 9 | 10 | ssid=bss-1 11 | dynamic_vlan=1 12 | vlan_tagged_interface=dummy0 13 | vlan_bridge=brvlan 14 | wpa=2 15 | wpa_key_mgmt=WPA-EAP 16 | rsn_pairwise=CCMP 17 | ieee8021x=1 18 | auth_server_addr=127.0.0.1 19 | auth_server_port=18128 20 | auth_server_shared_secret=radius 21 | nas_identifier=nas.w1.fi 22 | vlan_naming=1 23 | 24 | bss=wlan3-2 25 | bssid=02:00:00:00:03:01 26 | ctrl_interface=/var/run/hostapd 27 | ssid=bss-2 28 | 29 | dynamic_vlan=1 30 | vlan_tagged_interface=dummy0 31 | vlan_bridge=brvlan 32 | wpa=2 33 | wpa_key_mgmt=WPA-EAP 34 | rsn_pairwise=CCMP 35 | ieee8021x=1 36 | auth_server_addr=127.0.0.1 37 | auth_server_port=18128 38 | auth_server_shared_secret=radius 39 | nas_identifier=nas.w1.fi 40 | vlan_naming=1 41 | -------------------------------------------------------------------------------- /src/tls/rsa.h: -------------------------------------------------------------------------------- 1 | /* 2 | * RSA 3 | * Copyright (c) 2006, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef RSA_H 10 | #define RSA_H 11 | 12 | struct crypto_rsa_key; 13 | 14 | struct crypto_rsa_key * 15 | crypto_rsa_import_public_key(const u8 *buf, size_t len); 16 | struct crypto_rsa_key * 17 | crypto_rsa_import_public_key_parts(const u8 *n, size_t n_len, 18 | const u8 *e, size_t e_len); 19 | struct crypto_rsa_key * 20 | crypto_rsa_import_private_key(const u8 *buf, size_t len); 21 | size_t crypto_rsa_get_modulus_len(struct crypto_rsa_key *key); 22 | int crypto_rsa_exptmod(const u8 *in, size_t inlen, u8 *out, size_t *outlen, 23 | struct crypto_rsa_key *key, int use_private); 24 | void crypto_rsa_free(struct crypto_rsa_key *key); 25 | 26 | #endif /* RSA_H */ 27 | -------------------------------------------------------------------------------- /src/ap/acs.h: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS - Automatic Channel Selection module 3 | * Copyright (c) 2011, Atheros Communications 4 | * Copyright (c) 2013, Qualcomm Atheros, Inc. 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #ifndef ACS_H 11 | #define ACS_H 12 | 13 | #ifdef CONFIG_ACS 14 | 15 | enum hostapd_chan_status acs_init(struct hostapd_iface *iface); 16 | void acs_cleanup(struct hostapd_iface *iface); 17 | 18 | #else /* CONFIG_ACS */ 19 | 20 | static inline enum hostapd_chan_status acs_init(struct hostapd_iface *iface) 21 | { 22 | wpa_printf(MSG_ERROR, "ACS was disabled on your build, rebuild hostapd with CONFIG_ACS=y or set channel"); 23 | return HOSTAPD_CHAN_INVALID; 24 | } 25 | 26 | static inline void acs_cleanup(struct hostapd_iface *iface) 27 | { 28 | } 29 | 30 | #endif /* CONFIG_ACS */ 31 | 32 | #endif /* ACS_H */ 33 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_gui-qt4/wpamsg.h: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_gui - WpaMsg class for storing event messages 3 | * Copyright (c) 2005-2006, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef WPAMSG_H 10 | #define WPAMSG_H 11 | 12 | #include 13 | #include 14 | 15 | class WpaMsg { 16 | public: 17 | WpaMsg(const QString &_msg, int _priority = 2) 18 | : msg(_msg), priority(_priority) 19 | { 20 | timestamp = QDateTime::currentDateTime(); 21 | } 22 | 23 | QString getMsg() const { return msg; } 24 | int getPriority() const { return priority; } 25 | QDateTime getTimestamp() const { return timestamp; } 26 | 27 | private: 28 | QString msg; 29 | int priority; 30 | QDateTime timestamp; 31 | }; 32 | 33 | typedef QLinkedList WpaMsgList; 34 | 35 | #endif /* WPAMSG_H */ 36 | -------------------------------------------------------------------------------- /src/ap/vlan.c: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / VLAN definition 3 | * Copyright (c) 2016, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "utils/includes.h" 10 | 11 | #include "utils/common.h" 12 | #include "ap/vlan.h" 13 | 14 | /* compare the two arguments, NULL is treated as empty 15 | * return zero iff they are equal 16 | */ 17 | int vlan_compare(struct vlan_description *a, struct vlan_description *b) 18 | { 19 | int i; 20 | const int a_empty = !a || !a->notempty; 21 | const int b_empty = !b || !b->notempty; 22 | 23 | if (a_empty && b_empty) 24 | return 0; 25 | if (a_empty || b_empty) 26 | return 1; 27 | if (a->untagged != b->untagged) 28 | return 1; 29 | for (i = 0; i < MAX_NUM_TAGGED_VLAN; i++) { 30 | if (a->tagged[i] != b->tagged[i]) 31 | return 1; 32 | } 33 | return 0; 34 | } 35 | -------------------------------------------------------------------------------- /src/wps/upnp_xml.h: -------------------------------------------------------------------------------- 1 | /* 2 | * UPnP XML helper routines 3 | * Copyright (c) 2000-2003 Intel Corporation 4 | * Copyright (c) 2006-2007 Sony Corporation 5 | * Copyright (c) 2008-2009 Atheros Communications 6 | * Copyright (c) 2009, Jouni Malinen 7 | * 8 | * See wps_upnp.c for more details on licensing and code history. 9 | */ 10 | 11 | #ifndef UPNP_XML_H 12 | #define UPNP_XML_H 13 | 14 | #include "http.h" 15 | 16 | void xml_data_encode(struct wpabuf *buf, const char *data, int len); 17 | void xml_add_tagged_data(struct wpabuf *buf, const char *tag, 18 | const char *data); 19 | int xml_next_tag(const char *in, const char **out, 20 | const char **out_tagname, const char **end); 21 | char * xml_get_first_item(const char *doc, const char *item); 22 | struct wpabuf * xml_get_base64_item(const char *data, const char *name, 23 | enum http_reply_code *ret); 24 | 25 | #endif /* UPNP_XML_H */ 26 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/ec2-ca.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE----- 2 | MIICPjCCAcSgAwIBAgIJAIEUIb9N+rpkMAoGCCqGSM49BAMDMFIxCzAJBgNVBAYT 3 | AkZJMREwDwYDVQQHDAhIZWxzaW5raTEOMAwGA1UECgwFdzEuZmkxIDAeBgNVBAMM 4 | F1N1aXRlIEIgMTkyLWJpdCBSb290IENBMB4XDTE2MDIwMTA5MjYyNFoXDTI2MDEy 5 | OTA5MjYyNFowUjELMAkGA1UEBhMCRkkxETAPBgNVBAcMCEhlbHNpbmtpMQ4wDAYD 6 | VQQKDAV3MS5maTEgMB4GA1UEAwwXU3VpdGUgQiAxOTItYml0IFJvb3QgQ0EwdjAQ 7 | BgcqhkjOPQIBBgUrgQQAIgNiAARWEuSpvRL6glbrbPMhDEcvHpQCirI4GtFDFYUE 8 | YIDqRObNZkeM4A9ygH3HUUmdm3SLHVxb+2nIVfPY3jyxwfOZGiL6ASomy1WwGY0A 9 | AaXU61MCiJBny1VTsjR7Dw+VcRejZjBkMB0GA1UdDgQWBBS4l8m+YxKr9qCMtl77 10 | l24QjtxI9TAfBgNVHSMEGDAWgBS4l8m+YxKr9qCMtl77l24QjtxI9TASBgNVHRMB 11 | Af8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNoADBlAjEA 12 | v+QeMLDKAY3+9dbdzPit9WCg7erYxa0LsV6ZTr4wIYwUIkybksD1Bwlq7Sw/lVpO 13 | AjBy4q3wJbj6unHQq9VsCKpHWiTi/WeKRo8X0djScKsN7R92A3vGgdhVEAXP0vTl 14 | Rn0= 15 | -----END CERTIFICATE----- 16 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_gui-qt4/icons/Makefile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | NAMES := wpa_gui ap laptop group invitation 4 | SIZES := 16x16 22x22 32x32 48x48 64x64 128x128 5 | ICONS := $(addsuffix .png, $(foreach name, $(NAMES), $(foreach size, $(SIZES), $(size)/$(name)))) 6 | ICONS += $(addsuffix .xpm, $(NAMES)) 7 | 8 | all: $(ICONS) 9 | 10 | %.png: 11 | mkdir -p hicolor/$(word 1, $(subst /, ,$(@)))/apps/ 12 | inkscape $(subst .png,.svg, $(word 2, $(subst /, , $(@)))) --without-gui \ 13 | --export-width=$(word 1, $(subst x, , $(@))) \ 14 | --export-height=$(word 2, $(subst x, , $(subst /, , $(@)))) \ 15 | --export-png=hicolor/$(word 1, $(subst /, ,$(@)))/apps/$(word 2, $(subst /, , $@)) 16 | 17 | %.xpm: 18 | mkdir -p pixmaps/ 19 | convert hicolor/16x16/apps/$(@:.xpm=.png) pixmaps/$(@:.xpm=-16.xpm) 20 | convert hicolor/32x32/apps/$(@:.xpm=.png) pixmaps/$@ 21 | 22 | clean: 23 | $(RM) -r pixmaps hicolor 24 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_gui-qt4/addinterface.h: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_gui - AddInterface class 3 | * Copyright (c) 2008, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef ADDINTERFACE_H 10 | #define ADDINTERFACE_H 11 | 12 | #include 13 | 14 | #include 15 | #include 16 | #include 17 | 18 | class WpaGui; 19 | 20 | class AddInterface : public QDialog 21 | { 22 | Q_OBJECT 23 | 24 | public: 25 | AddInterface(WpaGui *_wpagui, QWidget *parent = 0); 26 | 27 | public slots: 28 | virtual void interfaceSelected(QTreeWidgetItem *sel); 29 | 30 | private: 31 | void addInterfaces(); 32 | bool addRegistryInterface(const QString &ifname); 33 | 34 | QVBoxLayout *vboxLayout; 35 | QTreeWidget *interfaceWidget; 36 | WpaGui *wpagui; 37 | }; 38 | 39 | #endif /* ADDINTERFACE_H */ 40 | -------------------------------------------------------------------------------- /tests/hwsim/multi-bss-iface-per_sta_vif.conf: -------------------------------------------------------------------------------- 1 | driver=nl80211 2 | 3 | hw_mode=g 4 | channel=1 5 | ieee80211n=1 6 | 7 | interface=wlan3 8 | ctrl_interface=/var/run/hostapd 9 | 10 | ssid=bss-1 11 | dynamic_vlan=1 12 | vlan_tagged_interface=dummy0 13 | vlan_bridge=brvlan 14 | wpa=2 15 | wpa_key_mgmt=WPA-EAP 16 | rsn_pairwise=CCMP 17 | ieee8021x=1 18 | auth_server_addr=127.0.0.1 19 | auth_server_port=18128 20 | auth_server_shared_secret=radius 21 | nas_identifier=nas.w1.fi 22 | vlan_naming=1 23 | per_sta_vif=1 24 | 25 | bss=wlan3-2 26 | bssid=02:00:00:00:03:01 27 | ctrl_interface=/var/run/hostapd 28 | ssid=bss-2 29 | 30 | dynamic_vlan=1 31 | vlan_tagged_interface=dummy0 32 | vlan_bridge=brvlan 33 | wpa=2 34 | wpa_key_mgmt=WPA-EAP 35 | rsn_pairwise=CCMP 36 | ieee8021x=1 37 | auth_server_addr=127.0.0.1 38 | auth_server_port=18128 39 | auth_server_shared_secret=radius 40 | nas_identifier=nas.w1.fi 41 | vlan_naming=1 42 | per_sta_vif=1 43 | -------------------------------------------------------------------------------- /radius_example/Makefile: -------------------------------------------------------------------------------- 1 | ALL=radius_example 2 | 3 | all: $(ALL) 4 | 5 | ifndef CC 6 | CC=gcc 7 | endif 8 | 9 | ifndef LDO 10 | LDO=$(CC) 11 | endif 12 | 13 | ifndef CFLAGS 14 | CFLAGS = -MMD -O2 -Wall -g 15 | endif 16 | 17 | CFLAGS += -I. 18 | CFLAGS += -I../src 19 | CFLAGS += -I../src/utils 20 | 21 | LIBS = ../src/radius/libradius.a 22 | LIBS += ../src/crypto/libcrypto.a 23 | LIBS += ../src/utils/libutils.a 24 | LLIBS = -lrt 25 | 26 | ../src/utils/libutils.a: 27 | $(MAKE) -C ../src/utils 28 | 29 | ../src/crypto/libcrypto.a: 30 | $(MAKE) -C ../src/crypto 31 | 32 | ../src/radius/libradius.a: 33 | $(MAKE) -C ../src/radius 34 | 35 | #CLAGS += -DCONFIG_IPV6 36 | 37 | OBJS_ex = radius_example.o 38 | 39 | radius_example: $(OBJS_ex) $(LIBS) 40 | $(LDO) $(LDFLAGS) -o radius_example $(OBJS_ex) $(LIBS) $(LLIBS) 41 | 42 | clean: 43 | $(MAKE) -C ../src clean 44 | rm -f core *~ *.o *.d $(ALL) 45 | 46 | -include $(OBJS:%.o=%.d) 47 | -------------------------------------------------------------------------------- /wpaspy/setup.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # 3 | # Python bindings for wpa_ctrl (wpa_supplicant/hostapd control interface) 4 | # Copyright (c) 2013, Jouni Malinen 5 | # 6 | # This software may be distributed under the terms of the BSD license. 7 | # See README for more details. 8 | 9 | from distutils.core import setup, Extension 10 | 11 | ext = Extension(name = 'wpaspy', 12 | sources = ['../src/common/wpa_ctrl.c', 13 | '../src/utils/os_unix.c', 14 | 'wpaspy.c'], 15 | extra_compile_args = ["-I../src/common", 16 | "-I../src/utils", 17 | "-DCONFIG_CTRL_IFACE", 18 | "-DCONFIG_CTRL_IFACE_UNIX"]) 19 | 20 | setup(name = 'wpaspy', 21 | ext_modules = [ext], 22 | description = 'Python bindings for wpa_ctrl (wpa_supplicant/hostapd)') 23 | -------------------------------------------------------------------------------- /src/eap_common/eap_wsc_common.c: -------------------------------------------------------------------------------- 1 | /* 2 | * EAP-WSC common routines for Wi-Fi Protected Setup 3 | * Copyright (c) 2007, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "includes.h" 10 | 11 | #include "common.h" 12 | #include "eap_defs.h" 13 | #include "eap_common.h" 14 | #include "wps/wps.h" 15 | #include "eap_wsc_common.h" 16 | 17 | struct wpabuf * eap_wsc_build_frag_ack(u8 id, u8 code) 18 | { 19 | struct wpabuf *msg; 20 | 21 | msg = eap_msg_alloc(EAP_VENDOR_WFA, EAP_VENDOR_TYPE_WSC, 2, code, id); 22 | if (msg == NULL) { 23 | wpa_printf(MSG_ERROR, "EAP-WSC: Failed to allocate memory for " 24 | "FRAG_ACK"); 25 | return NULL; 26 | } 27 | 28 | wpa_printf(MSG_DEBUG, "EAP-WSC: Send WSC/FRAG_ACK"); 29 | wpabuf_put_u8(msg, WSC_FRAG_ACK); /* Op-Code */ 30 | wpabuf_put_u8(msg, 0); /* Flags */ 31 | 32 | return msg; 33 | } 34 | -------------------------------------------------------------------------------- /eap_example/server-key.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIICXAIBAAKBgQDToYuDPmjEWu+/Aj0RVWTSb07sX6dAkPnrTaUjZAG5AhjRqJWz 3 | zD50kFmVKi+R7GgS5tlGzLUtokdwjuSUAmz8tMXwIwmVeS0HluFDVSi94XbVRczE 4 | +nyoDigg1RGyy1mc3t5RG84bvNatq98OceJag4ngh8L8I4k1qTLRMlyBJwIDAQAB 5 | AoGAP+v0asDn/h8FeSkg7uJfIJyUNxsxNnRTuHnsXkMvrgTvICyOgw828hhDpqVm 6 | VuoUCVmG2Tatpsn0UBApBHezGRh0u1syWoGM8fiDvZmoYmhFe5FxKnftg3KNXhDf 7 | Agk4OxwNNPBXpQFQP+GNxh6Qs7FEkYHLRh/J7vC0+wp3UWECQQDzcTQZXqYPow5M 8 | uinL819HKfh1n2257w1HGvw8cMCiYbKRyR74Q18TJcxuEyEwnPrg5ZGpMPDKiIOU 9 | SlgAMLBXAkEA3oxBpRue1Kqb2+Fq6lhZ7PQiZC5F69upIb/wxbk8ByImEl1pUKFW 10 | rV+YoKujbnj77PmMq1+R0dFkT1ai3zDzsQJBAMa3CUgMMpFhEDMhYyzQJF36rI2W 11 | 7gJwV+5K4MqVXyktho3qFhWhKOKAYDcZ9mWwPjmGKzhocqVgecd6SAsfs1ECQA7r 12 | xHL3eRy1G6IQaQSxS8YxUCT7XUDFB3/1yITZOIcZ6QeOL8NyLceOA0OyflCn1+w5 13 | hw7uZ25z5Y/UNTNVquECQEgto3zPneEW06qkEnRz9EbLtWR3nRBS/QGrjOFNUuln 14 | pNhVUH4RB17Kk35xveUTz4U/Iw/WRfGNjFLHrtR/5xk= 15 | -----END RSA PRIVATE KEY----- 16 | -------------------------------------------------------------------------------- /src/eap_peer/mschapv2.h: -------------------------------------------------------------------------------- 1 | /* 2 | * MSCHAPV2 (RFC 2759) 3 | * Copyright (c) 2004-2008, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef MSCHAPV2_H 10 | #define MSCHAPV2_H 11 | 12 | #define MSCHAPV2_CHAL_LEN 16 13 | #define MSCHAPV2_NT_RESPONSE_LEN 24 14 | #define MSCHAPV2_AUTH_RESPONSE_LEN 20 15 | #define MSCHAPV2_MASTER_KEY_LEN 16 16 | 17 | const u8 * mschapv2_remove_domain(const u8 *username, size_t *len); 18 | int mschapv2_derive_response(const u8 *username, size_t username_len, 19 | const u8 *password, size_t password_len, 20 | int pwhash, 21 | const u8 *auth_challenge, 22 | const u8 *peer_challenge, 23 | u8 *nt_response, u8 *auth_response, 24 | u8 *master_key); 25 | int mschapv2_verify_auth_response(const u8 *auth_response, 26 | const u8 *buf, size_t buf_len); 27 | 28 | #endif /* MSCHAPV2_H */ 29 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/ca-key.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIICXAIBAAKBgQC+HobkeQPB0ZTV1LOxKJB2+7imzW0c0Uj0CJpn//mmVLEZKd8p 3 | G83xb2YB59t5zsA5KiUTJpQMLHtaLIEPlO5R0HXmRtsXRqcViw5XD7BUdmMSyoYY 4 | vBrDFsBwCdZrQzm4mClGrMtqrTiIOwfcgc069h32L+8d166KttHnsxUCuQIDAQAB 5 | AoGAEPKDr8Yh0ZsvG0iUpAwrpI+XzDavrUvypt5FdVPaGzudddLHs9BosUbu3uie 6 | JeOKOw5Is8ZSmCs267jf4FW0UKtgpnHGK2H0ba0iramzz07oK48V4y7C7nS3eJr/ 7 | Oen6H9BW4DNXreFZ5yTRFOiQ4eD1pHqR/M/bBieDfRjakgECQQDfgiYYInio4TmM 8 | 9q/h1q5T1bGgajz5U4GInd0K2diNqVoGhSTAyRRGauH+68tPQuX7WCM1VE/lZfZL 9 | 4/dlOaRhAkEA2cHNkrFh4CAlXgtCub+psmT032AIFDEpNNT0K22XIE8savYNqs8w 10 | aGPurrwGQflxCB19boiaKEcW5FQDkff9WQJAbUznNiw9V1D05OOKNWXX0HWTLMBn 11 | WwIkOVwByZmo1fX4aXHY/FIZESqZpCFJRlSPxS9f4Gd/vs3y+T/dLupWYQJAJDGX 12 | RrOfDg6px1jdzVvzC8jF/r7KePi23aYrs3Ayt1cRjfG50dNAO4moqXhtHdglFnE4 13 | YP/ph5pRTsA8G635eQJBAKbh0zB4HqFI2PmnKsShFBPNkK5x17nAZlYNJf2Ip4Ii 14 | 2Gjxyx4H0iBVgFYLsLB6hRBkOPpx6Jl8mJXOtFXb8lE= 15 | -----END RSA PRIVATE KEY----- 16 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/user.rsa-key: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIICXgIBAAKBgQCmli6bIozflL6LiUn2eHaiYH4UlfOW/qsZJQM0ZHQBPqiffPFH 3 | YWBMgpIofCugDsuHv1nr1/NhIjsU86sx9lqVH7h6uCw8qWFTeJvoPlDswtZE50PN 4 | vD5O50b+kp7DmA8pWMjLiQF1R+mVVw92xS8FXsceDfI8EmNduVQZr39AawIDAQAB 5 | AoGBAJBKEtJCidx6nNSFtK+sRa19gJdaDqQhr5dW7MCrpaMSX8HM2bvnBx8eFXTF 6 | oI/BYN8SidNyuBbRLHWIXScoZ+nOhmLChexxxqNlgOtVR8YKkQfwmcwC8tiUf968 7 | xJb61UOWVYdeQ4qTacH8D/W1uj/fQKJj0FZ2d6dR4FOViuvJAkEA1x2xVGF9yPUm 8 | JUeCYT8uaL9kPFh7uKfa1lxgTu+bku39xWQmxlCymRDrIlRW5aMlHabyyHe8L29+ 9 | N2tRADpwvQJBAMY/VKrCjAHZV0w60/TXEJiSlreevIBFeP+OX46U823Z3RDrQjMF 10 | gVhL/0soloFncD3gVYkRhMj65C1f0rXnrEcCQQCHzekLmlisq4efdVusRRTpcBq5 11 | tiq1UtLnDX6HluEiizjwit+nx35Y/8NR8ujBJJPj+me/g0e8sqh+GDQU7tAJAkAO 12 | 7mYqFk0FNqFklGmyXyBY3XGMkuAPqSvb05VO39kVxPrpc06hGSEMzWyE9KGhTXEe 13 | t+65TCB8Iqlc4YK1QKWxAkEAyuUKlxOmdlR0zRJwpIvWL5IIz4S8UooUDA0mkdBD 14 | ZK3tDnLRVLn28Mx+wxIc1egkNVMPvQLuQDhc3G9bXxnMzw== 15 | -----END RSA PRIVATE KEY----- 16 | -------------------------------------------------------------------------------- /src/eap_common/eap_ikev2_common.h: -------------------------------------------------------------------------------- 1 | /* 2 | * EAP-IKEv2 definitions 3 | * Copyright (c) 2007, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EAP_IKEV2_COMMON_H 10 | #define EAP_IKEV2_COMMON_H 11 | 12 | #define IKEV2_FLAGS_LENGTH_INCLUDED 0x80 13 | #define IKEV2_FLAGS_MORE_FRAGMENTS 0x40 14 | #define IKEV2_FLAGS_ICV_INCLUDED 0x20 15 | 16 | #define IKEV2_FRAGMENT_SIZE 1400 17 | 18 | struct ikev2_keys; 19 | 20 | int eap_ikev2_derive_keymat(int prf, struct ikev2_keys *keys, 21 | const u8 *i_nonce, size_t i_nonce_len, 22 | const u8 *r_nonce, size_t r_nonce_len, 23 | u8 *keymat); 24 | struct wpabuf * eap_ikev2_build_frag_ack(u8 id, u8 code); 25 | int eap_ikev2_validate_icv(int integ_alg, struct ikev2_keys *keys, 26 | int initiator, const struct wpabuf *msg, 27 | const u8 *pos, const u8 *end); 28 | 29 | #endif /* EAP_IKEV2_COMMON_H */ 30 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/test-ca/private/cakey.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIICXAIBAAKBgQC+HobkeQPB0ZTV1LOxKJB2+7imzW0c0Uj0CJpn//mmVLEZKd8p 3 | G83xb2YB59t5zsA5KiUTJpQMLHtaLIEPlO5R0HXmRtsXRqcViw5XD7BUdmMSyoYY 4 | vBrDFsBwCdZrQzm4mClGrMtqrTiIOwfcgc069h32L+8d166KttHnsxUCuQIDAQAB 5 | AoGAEPKDr8Yh0ZsvG0iUpAwrpI+XzDavrUvypt5FdVPaGzudddLHs9BosUbu3uie 6 | JeOKOw5Is8ZSmCs267jf4FW0UKtgpnHGK2H0ba0iramzz07oK48V4y7C7nS3eJr/ 7 | Oen6H9BW4DNXreFZ5yTRFOiQ4eD1pHqR/M/bBieDfRjakgECQQDfgiYYInio4TmM 8 | 9q/h1q5T1bGgajz5U4GInd0K2diNqVoGhSTAyRRGauH+68tPQuX7WCM1VE/lZfZL 9 | 4/dlOaRhAkEA2cHNkrFh4CAlXgtCub+psmT032AIFDEpNNT0K22XIE8savYNqs8w 10 | aGPurrwGQflxCB19boiaKEcW5FQDkff9WQJAbUznNiw9V1D05OOKNWXX0HWTLMBn 11 | WwIkOVwByZmo1fX4aXHY/FIZESqZpCFJRlSPxS9f4Gd/vs3y+T/dLupWYQJAJDGX 12 | RrOfDg6px1jdzVvzC8jF/r7KePi23aYrs3Ayt1cRjfG50dNAO4moqXhtHdglFnE4 13 | YP/ph5pRTsA8G635eQJBAKbh0zB4HqFI2PmnKsShFBPNkK5x17nAZlYNJf2Ip4Ii 14 | 2Gjxyx4H0iBVgFYLsLB6hRBkOPpx6Jl8mJXOtFXb8lE= 15 | -----END RSA PRIVATE KEY----- 16 | -------------------------------------------------------------------------------- /tests/hwsim/vm/parallel-vm.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd "$(dirname $0)" 4 | 5 | NUM=$1 6 | if [ -z "$NUM" ]; then 7 | echo "usage: $0 [params..]" 8 | exit 1 9 | fi 10 | shift 11 | 12 | if [ -n "$HWSIM_TEST_LOG_DIR" ] ; then 13 | LOGS="$HWSIM_TEST_LOG_DIR" 14 | else 15 | LOGS=/tmp/hwsim-test-logs 16 | fi 17 | mkdir -p $LOGS 18 | DATE=$(date +%s) 19 | 20 | for i in `seq 1 $NUM`; do 21 | printf "\rStarting virtual machine $i/$NUM" 22 | ./vm-run.sh --timestamp $DATE --ext srv.$i --split $i/$NUM $* >> $LOGS/parallel-$DATE.srv.$i 2>&1 & 23 | done 24 | echo 25 | 26 | echo "Waiting for virtual machines to complete testing" 27 | count=$NUM 28 | for i in `seq 1 $NUM`; do 29 | printf "\r$count VM(s) remaining " 30 | wait -n 31 | count=$((count-1)) 32 | done 33 | printf "\rTesting completed " 34 | echo 35 | 36 | echo -n "PASS count: " 37 | grep ^PASS $LOGS/parallel-$DATE.srv.* | wc -l 38 | cat $LOGS/parallel-$DATE.srv.* | grep FAIL | sort 39 | -------------------------------------------------------------------------------- /hostapd/hlr_auc_gw.milenage_db: -------------------------------------------------------------------------------- 1 | # Parameters for Milenage (Example algorithms for AKA). 2 | # The example Ki, OPc, and AMF values here are from 3GPP TS 35.208 v6.0.0 3 | # 4.3.20 Test Set 20. SQN is the last used SQN value. 4 | # These values can be used for both UMTS (EAP-AKA) and GSM (EAP-SIM) 5 | # authentication. In case of GSM/EAP-SIM, AMF and SQN values are not used, but 6 | # dummy values will need to be included in this file. 7 | 8 | # IMSI Ki OPc AMF SQN [RES_len] 9 | 232010000000000 90dca4eda45b53cf0f12d7c9c3bc6a89 cb9cccc4b9258e6dca4760379fb82581 61df 000000000000 10 | # Example using truncated 32-bit RES instead of 64-bit default 11 | 232010000000001 90dca4eda45b53cf0f12d7c9c3bc6a89 cb9cccc4b9258e6dca4760379fb82581 61df 000000000000 4 12 | 13 | # These values are from Test Set 19 which has the AMF separation bit set to 1 14 | # and as such, is suitable for EAP-AKA' test. 15 | 555444333222111 5122250214c33e723a5dd523fc145fc0 981d464c7c52eb6e5036234984ad0bcf c3ab 16f3b3f70fc1 16 | -------------------------------------------------------------------------------- /src/ap/neighbor_db.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / Neighboring APs DB 3 | * Copyright(c) 2013 - 2016 Intel Mobile Communications GmbH. 4 | * Copyright(c) 2011 - 2016 Intel Corporation. All rights reserved. 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #ifndef NEIGHBOR_DB_H 11 | #define NEIGHBOR_DB_H 12 | 13 | struct hostapd_neighbor_entry * 14 | hostapd_neighbor_get(struct hostapd_data *hapd, const u8 *bssid, 15 | const struct wpa_ssid_value *ssid); 16 | int hostapd_neighbor_set(struct hostapd_data *hapd, const u8 *bssid, 17 | const struct wpa_ssid_value *ssid, 18 | const struct wpabuf *nr, const struct wpabuf *lci, 19 | const struct wpabuf *civic, int stationary); 20 | int hostapd_neighbor_remove(struct hostapd_data *hapd, const u8 *bssid, 21 | const struct wpa_ssid_value *ssid); 22 | void hostpad_free_neighbor_db(struct hostapd_data *hapd); 23 | 24 | #endif /* NEIGHBOR_DB_H */ 25 | -------------------------------------------------------------------------------- /src/crypto/random.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Random number generator 3 | * Copyright (c) 2010-2011, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef RANDOM_H 10 | #define RANDOM_H 11 | 12 | #ifdef CONFIG_NO_RANDOM_POOL 13 | #define random_init(e) do { } while (0) 14 | #define random_deinit() do { } while (0) 15 | #define random_add_randomness(b, l) do { } while (0) 16 | #define random_get_bytes(b, l) os_get_random((b), (l)) 17 | #define random_pool_ready() 1 18 | #define random_mark_pool_ready() do { } while (0) 19 | #else /* CONFIG_NO_RANDOM_POOL */ 20 | void random_init(const char *entropy_file); 21 | void random_deinit(void); 22 | void random_add_randomness(const void *buf, size_t len); 23 | int random_get_bytes(void *buf, size_t len); 24 | int random_pool_ready(void); 25 | void random_mark_pool_ready(void); 26 | #endif /* CONFIG_NO_RANDOM_POOL */ 27 | 28 | #endif /* RANDOM_H */ 29 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/user.key: -------------------------------------------------------------------------------- 1 | -----BEGIN PRIVATE KEY----- 2 | MIICeAIBADANBgkqhkiG9w0BAQEFAASCAmIwggJeAgEAAoGBAKaWLpsijN+UvouJ 3 | SfZ4dqJgfhSV85b+qxklAzRkdAE+qJ988UdhYEyCkih8K6AOy4e/WevX82EiOxTz 4 | qzH2WpUfuHq4LDypYVN4m+g+UOzC1kTnQ828Pk7nRv6SnsOYDylYyMuJAXVH6ZVX 5 | D3bFLwVexx4N8jwSY125VBmvf0BrAgMBAAECgYEAkEoS0kKJ3Hqc1IW0r6xFrX2A 6 | l1oOpCGvl1bswKuloxJfwczZu+cHHx4VdMWgj8Fg3xKJ03K4FtEsdYhdJyhn6c6G 7 | YsKF7HHGo2WA61VHxgqRB/CZzALy2JR/3rzElvrVQ5ZVh15DipNpwfwP9bW6P99A 8 | omPQVnZ3p1HgU5WK68kCQQDXHbFUYX3I9SYlR4JhPy5ov2Q8WHu4p9rWXGBO75uS 9 | 7f3FZCbGULKZEOsiVFbloyUdpvLId7wvb343a1EAOnC9AkEAxj9UqsKMAdlXTDrT 10 | 9NcQmJKWt568gEV4/45fjpTzbdndEOtCMwWBWEv/SyiWgWdwPeBViRGEyPrkLV/S 11 | teesRwJBAIfN6QuaWKyrh591W6xFFOlwGrm2KrVS0ucNfoeW4SKLOPCK36fHflj/ 12 | w1Hy6MEkk+P6Z7+DR7yyqH4YNBTu0AkCQA7uZioWTQU2oWSUabJfIFjdcYyS4A+p 13 | K9vTlU7f2RXE+ulzTqEZIQzNbIT0oaFNcR637rlMIHwiqVzhgrVApbECQQDK5QqX 14 | E6Z2VHTNEnCki9YvkgjPhLxSihQMDSaR0ENkre0OctFUufbwzH7DEhzV6CQ1Uw+9 15 | Au5AOFzcb1tfGczP 16 | -----END PRIVATE KEY----- 17 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_gui-qt4/userdatarequest.h: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_gui - UserDataRequest class 3 | * Copyright (c) 2005-2006, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef USERDATAREQUEST_H 10 | #define USERDATAREQUEST_H 11 | 12 | #include 13 | #include "ui_userdatarequest.h" 14 | 15 | class WpaGui; 16 | 17 | class UserDataRequest : public QDialog, public Ui::UserDataRequest 18 | { 19 | Q_OBJECT 20 | 21 | public: 22 | UserDataRequest(QWidget *parent = 0, const char *name = 0, 23 | bool modal = false, Qt::WindowFlags fl = 0); 24 | ~UserDataRequest(); 25 | 26 | int setParams(WpaGui *_wpagui, const char *reqMsg); 27 | 28 | public slots: 29 | virtual void sendReply(); 30 | 31 | protected slots: 32 | virtual void languageChange(); 33 | 34 | private: 35 | WpaGui *wpagui; 36 | int networkid; 37 | QString field; 38 | }; 39 | 40 | #endif /* USERDATAREQUEST_H */ 41 | -------------------------------------------------------------------------------- /hs20/server/spp_server.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Hotspot 2.0 SPP server 3 | * Copyright (c) 2012-2013, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SPP_SERVER_H 10 | #define SPP_SERVER_H 11 | 12 | struct hs20_svc { 13 | const void *ctx; 14 | struct xml_node_ctx *xml; 15 | char *root_dir; 16 | FILE *debug_log; 17 | sqlite3 *db; 18 | const char *addr; 19 | }; 20 | 21 | 22 | void debug_print(struct hs20_svc *ctx, int print, const char *fmt, ...) 23 | __attribute__ ((format (printf, 3, 4))); 24 | void debug_dump_node(struct hs20_svc *ctx, const char *title, xml_node_t *node); 25 | 26 | xml_node_t * hs20_spp_server_process(struct hs20_svc *ctx, xml_node_t *node, 27 | const char *auth_user, 28 | const char *auth_realm, int dmacc); 29 | int hs20_spp_server_init(struct hs20_svc *ctx); 30 | void hs20_spp_server_deinit(struct hs20_svc *ctx); 31 | 32 | #endif /* SPP_SERVER_H */ 33 | -------------------------------------------------------------------------------- /src/tls/pkcs1.h: -------------------------------------------------------------------------------- 1 | /* 2 | * PKCS #1 (RSA Encryption) 3 | * Copyright (c) 2006-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef PKCS1_H 10 | #define PKCS1_H 11 | 12 | struct crypto_public_key; 13 | struct asn1_oid; 14 | 15 | int pkcs1_encrypt(int block_type, struct crypto_rsa_key *key, 16 | int use_private, const u8 *in, size_t inlen, 17 | u8 *out, size_t *outlen); 18 | int pkcs1_v15_private_key_decrypt(struct crypto_rsa_key *key, 19 | const u8 *in, size_t inlen, 20 | u8 *out, size_t *outlen); 21 | int pkcs1_decrypt_public_key(struct crypto_rsa_key *key, 22 | const u8 *crypt, size_t crypt_len, 23 | u8 *plain, size_t *plain_len); 24 | int pkcs1_v15_sig_ver(struct crypto_public_key *pk, 25 | const u8 *s, size_t s_len, 26 | const struct asn1_oid *hash_alg, 27 | const u8 *hash, size_t hash_len); 28 | 29 | #endif /* PKCS1_H */ 30 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/hlr_auc_gw.milenage_db: -------------------------------------------------------------------------------- 1 | # Parameters for Milenage (Example algorithms for AKA). 2 | # The example Ki, OPc, and AMF values here are from 3GPP TS 35.208 v6.0.0 3 | # 4.3.20 Test Set 20. SQN is the last used SQN value. 4 | # These values can be used for both UMTS (EAP-AKA) and GSM (EAP-SIM) 5 | # authentication. In case of GSM/EAP-SIM, AMF and SQN values are not used, but 6 | # dummy values will need to be included in this file. 7 | 8 | # IMSI Ki OPc AMF SQN 9 | 232010000000000 90dca4eda45b53cf0f12d7c9c3bc6a89 cb9cccc4b9258e6dca4760379fb82581 61df 000000000000 10 | 11 | # Modified version of the previous to allow testing with replaced SIM. 12 | 232010000000009 a0dca4eda45b53cf0f12d7c9c3bc6a89 cb9cccc4b9258e6dca4760379fb82581 61df 000000000000 13 | 14 | # These values are from Test Set 19 which has the AMF separation bit set to 1 15 | # and as such, is suitable for EAP-AKA' test. 16 | 555444333222111 5122250214c33e723a5dd523fc145fc0 981d464c7c52eb6e5036234984ad0bcf c3ab 16f3b3f70fc1 17 | -------------------------------------------------------------------------------- /tests/hwsim/auth_serv/server.key: -------------------------------------------------------------------------------- 1 | -----BEGIN PRIVATE KEY----- 2 | MIICdgIBADANBgkqhkiG9w0BAQEFAASCAmAwggJcAgEAAoGBALqgd1UiFIVVZZtk 3 | LK3tm91lMcnaYFDOONY03Oi8G54w5xLjU2zJ7UgDeYFpmM6KuHdHNkXPxuDxex5x 4 | iVT3AcwiraBCsag1nmCqOphR0P8f7r6NCmP7ojkX8mRh9mUCMnl04Z/RiWVVqcMg 5 | nr9pVrP3Tz+pVMLajzyv8nVU+n6BAgMBAAECgYBH8LlvcM62QyAC0Y/DkBeINY0G 6 | wY5lN8mDESei83g196XriwPKqOA15Vj+QOVtoN3Q5PuP17NTXOLX7m5A+WKQVK/O 7 | Cl0uBCEqS9YvPN6Fp9va5VonhWxGpLdZcrxETTpxjHhVBGS9C8wBday65r2nDfo6 8 | uWlCebceUBuuSzwybQJBAOAwS7ZY8xY/bCNDzvfnNuPsPQDEQWVx6A9mv9BnepT/ 9 | 8bQcvfkUbXyWy5NsPN6yt/tqmjdbUEFAuNJlI23I2wsCQQDVG7poTL8KPa7UZge7 10 | W79FyyEoL5but1VPTAN6JJNTMpp9k2LBWFjUSmTiTkeccHfbvKxMjUuI7NQwya41 11 | hSQjAkApSRuYUBcsIK/kaqdhxeW44Zd2Xa4BZZGrzGtEkNnlOKElXympBhcHm6mP 12 | 053+EQGKvl36FcnYynd+33s/y35zAkAZ5ZC1c/4TJIPGU8/EuNV5icGxvHa+85Bu 13 | XnJduWwdxBx5/hsWG8JPqeqwhYq2PASUs0zM0K7JKN5wP1HoNxG5AkEAlaumCfLv 14 | vA/b3HVZD/b0nxkl/F7g3nACPVJ48FU2BneB+bU75zqeI3B7xGd9CKamkuutH6or 15 | fe17ZI8ZeLCLqA== 16 | -----END PRIVATE KEY----- 17 | -------------------------------------------------------------------------------- /wpadebug/res/layout/input_uri.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 14 | 15 | 19 | 20 |