├── .gitignore ├── README.md ├── beacon_frame_crasher ├── ESP8266Crasher.ino ├── ESP8266Crasher.ino.d1_mini.bin ├── ESP8266Crasher.py ├── client_station.c ├── crafted_packet_1.pcapng ├── crafted_packet_2.pcapng ├── esp8266-2.0.0-deauther.zip ├── invalid_beacon_frame1.png └── invalid_beacon_frame2.png ├── docs ├── attack_logo.png ├── eap_crasher.png ├── normal_behavor.png └── zero_pmk.png ├── esp_client_test_codes ├── ESP32_Arduino_EAP_Client │ └── ESP32_Arduino_EAP_Client.ino ├── ESP32_EAP_Client │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── build │ │ └── wpa_supplicant │ │ │ └── test.txt │ ├── main │ │ ├── CMakeLists.txt │ │ ├── Kconfig.projbuild │ │ ├── component.mk │ │ ├── wpa2_ca.pem │ │ ├── wpa2_client.crt │ │ ├── wpa2_client.key │ │ ├── wpa2_client.pem │ │ ├── wpa2_enterprise_main.c │ │ ├── wpa2_server.crt │ │ ├── wpa2_server.key │ │ └── wpa2_server.pem │ ├── sdkconfig │ └── sdkconfig.old ├── ESP8266_Arduino_EAP_Client │ └── ESP8266_Arduino_EAP_Client.ino └── ESP8266_EAP_Client │ ├── .gitignore │ ├── .travis.yml │ ├── .vscode │ ├── extensions.json │ └── settings.json │ ├── include │ ├── README │ └── user_config.h │ ├── lib │ ├── README │ └── user_config.h │ ├── platformio.ini │ ├── src │ ├── main.c │ └── user_config.h │ └── test │ └── README ├── hostapd-2.8_binary ├── ca.pem ├── hostapd ├── hostapd.accept ├── hostapd.conf ├── hostapd.deny ├── hostapd.eap_user ├── hostapd.eap_user_sqlite ├── hostapd.radius_clients ├── hostapd.sim_db ├── hostapd.vlan ├── hostapd.wpa_psk ├── hostapd_cli ├── openssl.cnf ├── run_crash_esp_EAP.sh ├── run_hostapd_normal.sh ├── run_zero_pmk_EAP.sh ├── wpa2_server.key └── wpa2_server.pem ├── hostapd-2.8_source ├── .vscode │ ├── c_cpp_properties.json │ ├── ipch │ │ ├── 1c39a08df04a555 │ │ │ ├── mmap_address.bin │ │ │ └── wpa_auth.ipch │ │ ├── 3690a75011a5cfac │ │ │ ├── mmap_address.bin │ │ │ └── wps_validate.ipch │ │ ├── 3e92187f788b9fff │ │ │ ├── mmap_address.bin │ │ │ └── wpa_auth.ipch │ │ ├── 57d87f4922f2b819 │ │ │ ├── eap_common.ipch │ │ │ └── mmap_address.bin │ │ ├── 5a3eca18905403a1 │ │ │ ├── mmap_address.bin │ │ │ └── sta_info.ipch │ │ ├── 61554e2135e838a5 │ │ │ ├── eap_server.ipch │ │ │ └── mmap_address.bin │ │ ├── 6c461350f86df28 │ │ │ ├── main.ipch │ │ │ └── mmap_address.bin │ │ ├── 729bc0ff8568225b │ │ │ ├── eap_server.ipch │ │ │ └── mmap_address.bin │ │ ├── 9349d29e3b535c6a │ │ │ ├── main.ipch │ │ │ └── mmap_address.bin │ │ ├── bbeef2fb57e95dc8 │ │ │ ├── ap_config.ipch │ │ │ └── mmap_address.bin │ │ └── f84947e8a755eb57 │ │ │ └── mmap_address.bin │ ├── keybindings.json │ ├── settings.json │ └── tasks.json ├── CONTRIBUTIONS ├── COPYING ├── README ├── hostapd │ ├── .config │ ├── Android.mk │ ├── ChangeLog │ ├── Makefile │ ├── README │ ├── README-MULTI-AP │ ├── README-WPS │ ├── android.config │ ├── ca.pem │ ├── config_file.c │ ├── config_file.h │ ├── csr.csr │ ├── ctrl_iface.c │ ├── ctrl_iface.h │ ├── defconfig │ ├── eap_register.c │ ├── eap_register.h │ ├── eap_testing.txt │ ├── hapd_module_tests.c │ ├── hlr_auc_gw.c │ ├── hlr_auc_gw.milenage_db │ ├── hlr_auc_gw.txt │ ├── hostapd.8 │ ├── hostapd.accept │ ├── hostapd.android.rc │ ├── hostapd.conf │ ├── hostapd.deny │ ├── hostapd.eap_user │ ├── hostapd.eap_user_sqlite │ ├── hostapd.radius_clients │ ├── hostapd.sim_db │ ├── hostapd.vlan │ ├── hostapd.wpa_psk │ ├── hostapd_cli.1 │ ├── hostapd_cli.c │ ├── logwatch │ │ ├── README │ │ ├── hostapd │ │ └── hostapd.conf │ ├── main.c │ ├── nt_password_hash.c │ ├── openssl.cnf │ ├── wired.conf │ ├── wpa2_server.crt │ ├── wpa2_server.key │ ├── wpa2_server.pem │ └── wps-ap-nfc.py └── src │ ├── Makefile │ ├── ap │ ├── Makefile │ ├── accounting.c │ ├── accounting.h │ ├── acs.c │ ├── acs.h │ ├── ap_config.c │ ├── ap_config.h │ ├── ap_drv_ops.c │ ├── ap_drv_ops.h │ ├── ap_list.c │ ├── ap_list.h │ ├── ap_mlme.c │ ├── ap_mlme.h │ ├── authsrv.c │ ├── authsrv.h │ ├── beacon.c │ ├── beacon.h │ ├── bss_load.c │ ├── bss_load.h │ ├── ctrl_iface_ap.c │ ├── ctrl_iface_ap.h │ ├── dfs.c │ ├── dfs.h │ ├── dhcp_snoop.c │ ├── dhcp_snoop.h │ ├── dpp_hostapd.c │ ├── dpp_hostapd.h │ ├── drv_callbacks.c │ ├── eap_user_db.c │ ├── eth_p_oui.c │ ├── eth_p_oui.h │ ├── fils_hlp.c │ ├── fils_hlp.h │ ├── gas_query_ap.c │ ├── gas_query_ap.h │ ├── gas_serv.c │ ├── gas_serv.h │ ├── hostapd.c │ ├── hostapd.h │ ├── hs20.c │ ├── hs20.h │ ├── hw_features.c │ ├── hw_features.h │ ├── iapp.c │ ├── iapp.h │ ├── ieee802_11.c │ ├── ieee802_11.h │ ├── ieee802_11_auth.c │ ├── ieee802_11_auth.h │ ├── ieee802_11_he.c │ ├── ieee802_11_ht.c │ ├── ieee802_11_shared.c │ ├── ieee802_11_vht.c │ ├── ieee802_1x.c │ ├── ieee802_1x.h │ ├── mbo_ap.c │ ├── mbo_ap.h │ ├── ndisc_snoop.c │ ├── ndisc_snoop.h │ ├── neighbor_db.c │ ├── neighbor_db.h │ ├── p2p_hostapd.c │ ├── p2p_hostapd.h │ ├── pmksa_cache_auth.c │ ├── pmksa_cache_auth.h │ ├── preauth_auth.c │ ├── preauth_auth.h │ ├── rrm.c │ ├── rrm.h │ ├── sta_info.c │ ├── sta_info.h │ ├── taxonomy.c │ ├── taxonomy.h │ ├── tkip_countermeasures.c │ ├── tkip_countermeasures.h │ ├── utils.c │ ├── vlan.c │ ├── vlan.h │ ├── vlan_full.c │ ├── vlan_ifconfig.c │ ├── vlan_init.c │ ├── vlan_init.h │ ├── vlan_ioctl.c │ ├── vlan_util.c │ ├── vlan_util.h │ ├── wmm.c │ ├── wmm.h │ ├── wnm_ap.c │ ├── wnm_ap.h │ ├── wpa_auth.c │ ├── wpa_auth.h │ ├── wpa_auth_ft.c │ ├── wpa_auth_glue.c │ ├── wpa_auth_glue.h │ ├── wpa_auth_i.h │ ├── wpa_auth_ie.c │ ├── wpa_auth_ie.h │ ├── wps_hostapd.c │ ├── wps_hostapd.h │ ├── x_snoop.c │ └── x_snoop.h │ ├── common │ ├── Makefile │ ├── cli.c │ ├── cli.h │ ├── common_module_tests.c │ ├── ctrl_iface_common.c │ ├── ctrl_iface_common.h │ ├── defs.h │ ├── dhcp.h │ ├── dpp.c │ ├── dpp.h │ ├── eapol_common.h │ ├── gas.c │ ├── gas.h │ ├── gas_server.c │ ├── gas_server.h │ ├── hw_features_common.c │ ├── hw_features_common.h │ ├── ieee802_11_common.c │ ├── ieee802_11_common.h │ ├── ieee802_11_defs.h │ ├── ieee802_1x_defs.h │ ├── linux_bridge.h │ ├── linux_vlan.h │ ├── ocv.c │ ├── ocv.h │ ├── privsep_commands.h │ ├── qca-vendor-attr.h │ ├── qca-vendor.h │ ├── sae.c │ ├── sae.h │ ├── tnc.h │ ├── version.h │ ├── wpa_common.c │ ├── wpa_common.h │ ├── wpa_ctrl.c │ ├── wpa_ctrl.h │ ├── wpa_helpers.c │ └── wpa_helpers.h │ ├── crypto │ ├── .gitignore │ ├── Makefile │ ├── aes-cbc.c │ ├── aes-ccm.c │ ├── aes-ctr.c │ ├── aes-eax.c │ ├── aes-encblock.c │ ├── aes-gcm.c │ ├── aes-internal-dec.c │ ├── aes-internal-enc.c │ ├── aes-internal.c │ ├── aes-omac1.c │ ├── aes-siv.c │ ├── aes-unwrap.c │ ├── aes-wrap.c │ ├── aes.h │ ├── aes_i.h │ ├── aes_siv.h │ ├── aes_wrap.h │ ├── crypto.h │ ├── crypto_gnutls.c │ ├── crypto_internal-cipher.c │ ├── crypto_internal-modexp.c │ ├── crypto_internal-rsa.c │ ├── crypto_internal.c │ ├── crypto_libtomcrypt.c │ ├── crypto_linux.c │ ├── crypto_module_tests.c │ ├── crypto_nettle.c │ ├── crypto_none.c │ ├── crypto_openssl.c │ ├── crypto_wolfssl.c │ ├── des-internal.c │ ├── des_i.h │ ├── dh_group5.c │ ├── dh_group5.h │ ├── dh_groups.c │ ├── dh_groups.h │ ├── fips_prf_internal.c │ ├── fips_prf_openssl.c │ ├── fips_prf_wolfssl.c │ ├── md4-internal.c │ ├── md5-internal.c │ ├── md5.c │ ├── md5.h │ ├── md5_i.h │ ├── milenage.c │ ├── milenage.h │ ├── ms_funcs.c │ ├── ms_funcs.h │ ├── random.c │ ├── random.h │ ├── rc4.c │ ├── sha1-internal.c │ ├── sha1-pbkdf2.c │ ├── sha1-prf.c │ ├── sha1-tlsprf.c │ ├── sha1-tprf.c │ ├── sha1.c │ ├── sha1.h │ ├── sha1_i.h │ ├── sha256-internal.c │ ├── sha256-kdf.c │ ├── sha256-prf.c │ ├── sha256-tlsprf.c │ ├── sha256.c │ ├── sha256.h │ ├── sha256_i.h │ ├── sha384-internal.c │ ├── sha384-kdf.c │ ├── sha384-prf.c │ ├── sha384.c │ ├── sha384.h │ ├── sha384_i.h │ ├── sha512-internal.c │ ├── sha512-kdf.c │ ├── sha512-prf.c │ ├── sha512.c │ ├── sha512.h │ ├── sha512_i.h │ ├── tls.h │ ├── tls_gnutls.c │ ├── tls_internal.c │ ├── tls_none.c │ ├── tls_openssl.c │ ├── tls_openssl.h │ ├── tls_openssl_ocsp.c │ └── tls_wolfssl.c │ ├── drivers │ ├── .gitignore │ ├── Makefile │ ├── android_drv.h │ ├── driver.h │ ├── driver_atheros.c │ ├── driver_bsd.c │ ├── driver_common.c │ ├── driver_hostap.c │ ├── driver_hostap.h │ ├── driver_macsec_linux.c │ ├── driver_macsec_qca.c │ ├── driver_ndis.c │ ├── driver_ndis.h │ ├── driver_ndis_.c │ ├── driver_nl80211.c │ ├── driver_nl80211.h │ ├── driver_nl80211_android.c │ ├── driver_nl80211_capa.c │ ├── driver_nl80211_event.c │ ├── driver_nl80211_monitor.c │ ├── driver_nl80211_scan.c │ ├── driver_none.c │ ├── driver_openbsd.c │ ├── driver_privsep.c │ ├── driver_roboswitch.c │ ├── driver_wext.c │ ├── driver_wext.h │ ├── driver_wired.c │ ├── driver_wired_common.c │ ├── driver_wired_common.h │ ├── drivers.c │ ├── drivers.mak │ ├── drivers.mk │ ├── linux_defines.h │ ├── linux_ioctl.c │ ├── linux_ioctl.h │ ├── linux_wext.h │ ├── ndis_events.c │ ├── netlink.c │ ├── netlink.h │ ├── nl80211_copy.h │ ├── priv_netlink.h │ ├── rfkill.c │ └── rfkill.h │ ├── eap_common │ ├── Makefile │ ├── chap.c │ ├── chap.h │ ├── eap_common.c │ ├── eap_common.h │ ├── eap_defs.h │ ├── eap_eke_common.c │ ├── eap_eke_common.h │ ├── eap_fast_common.c │ ├── eap_fast_common.h │ ├── eap_gpsk_common.c │ ├── eap_gpsk_common.h │ ├── eap_ikev2_common.c │ ├── eap_ikev2_common.h │ ├── eap_pax_common.c │ ├── eap_pax_common.h │ ├── eap_peap_common.c │ ├── eap_peap_common.h │ ├── eap_psk_common.c │ ├── eap_psk_common.h │ ├── eap_pwd_common.c │ ├── eap_pwd_common.h │ ├── eap_sake_common.c │ ├── eap_sake_common.h │ ├── eap_sim_common.c │ ├── eap_sim_common.h │ ├── eap_tlv_common.h │ ├── eap_ttls.h │ ├── eap_wsc_common.c │ ├── eap_wsc_common.h │ ├── ikev2_common.c │ └── ikev2_common.h │ ├── eap_peer │ ├── Makefile │ ├── eap.c │ ├── eap.h │ ├── eap_aka.c │ ├── eap_config.h │ ├── eap_eke.c │ ├── eap_fast.c │ ├── eap_fast_pac.c │ ├── eap_fast_pac.h │ ├── eap_gpsk.c │ ├── eap_gtc.c │ ├── eap_i.h │ ├── eap_ikev2.c │ ├── eap_leap.c │ ├── eap_md5.c │ ├── eap_methods.c │ ├── eap_methods.h │ ├── eap_mschapv2.c │ ├── eap_otp.c │ ├── eap_pax.c │ ├── eap_peap.c │ ├── eap_proxy.h │ ├── eap_proxy_dummy.c │ ├── eap_psk.c │ ├── eap_pwd.c │ ├── eap_sake.c │ ├── eap_sim.c │ ├── eap_tls.c │ ├── eap_tls_common.c │ ├── eap_tls_common.h │ ├── eap_tnc.c │ ├── eap_ttls.c │ ├── eap_vendor_test.c │ ├── eap_wsc.c │ ├── ikev2.c │ ├── ikev2.h │ ├── mschapv2.c │ ├── mschapv2.h │ ├── tncc.c │ └── tncc.h │ ├── eap_server │ ├── Makefile │ ├── eap.h │ ├── eap_i.h │ ├── eap_methods.h │ ├── eap_server.c │ ├── eap_server_aka.c │ ├── eap_server_eke.c │ ├── eap_server_fast.c │ ├── eap_server_gpsk.c │ ├── eap_server_gtc.c │ ├── eap_server_identity.c │ ├── eap_server_ikev2.c │ ├── eap_server_md5.c │ ├── eap_server_methods.c │ ├── eap_server_mschapv2.c │ ├── eap_server_pax.c │ ├── eap_server_peap.c │ ├── eap_server_psk.c │ ├── eap_server_pwd.c │ ├── eap_server_sake.c │ ├── eap_server_sim.c │ ├── eap_server_tls.c │ ├── eap_server_tls_common.c │ ├── eap_server_tnc.c │ ├── eap_server_ttls.c │ ├── eap_server_vendor_test.c │ ├── eap_server_wsc.c │ ├── eap_sim_db.c │ ├── eap_sim_db.h │ ├── eap_tls_common.h │ ├── ikev2.c │ ├── ikev2.h │ ├── tncs.c │ └── tncs.h │ ├── eapol_auth │ ├── Makefile │ ├── eapol_auth_dump.c │ ├── eapol_auth_sm.c │ ├── eapol_auth_sm.h │ └── eapol_auth_sm_i.h │ ├── eapol_supp │ ├── Makefile │ ├── eapol_supp_sm.c │ └── eapol_supp_sm.h │ ├── fst │ ├── Makefile │ ├── fst.c │ ├── fst.h │ ├── fst_ctrl_aux.c │ ├── fst_ctrl_aux.h │ ├── fst_ctrl_defs.h │ ├── fst_ctrl_iface.c │ ├── fst_ctrl_iface.h │ ├── fst_defs.h │ ├── fst_group.c │ ├── fst_group.h │ ├── fst_iface.c │ ├── fst_iface.h │ ├── fst_internal.h │ ├── fst_session.c │ └── fst_session.h │ ├── l2_packet │ ├── Makefile │ ├── l2_packet.h │ ├── l2_packet_freebsd.c │ ├── l2_packet_linux.c │ ├── l2_packet_ndis.c │ ├── l2_packet_none.c │ ├── l2_packet_pcap.c │ ├── l2_packet_privsep.c │ └── l2_packet_winpcap.c │ ├── lib.rules │ ├── p2p │ ├── Makefile │ ├── p2p.c │ ├── p2p.h │ ├── p2p_build.c │ ├── p2p_dev_disc.c │ ├── p2p_go_neg.c │ ├── p2p_group.c │ ├── p2p_i.h │ ├── p2p_invitation.c │ ├── p2p_parse.c │ ├── p2p_pd.c │ ├── p2p_sd.c │ └── p2p_utils.c │ ├── pae │ ├── Makefile │ ├── ieee802_1x_cp.c │ ├── ieee802_1x_cp.h │ ├── ieee802_1x_kay.c │ ├── ieee802_1x_kay.h │ ├── ieee802_1x_kay_i.h │ ├── ieee802_1x_key.c │ ├── ieee802_1x_key.h │ ├── ieee802_1x_secy_ops.c │ └── ieee802_1x_secy_ops.h │ ├── radius │ ├── .gitignore │ ├── Makefile │ ├── radius.c │ ├── radius.h │ ├── radius_client.c │ ├── radius_client.h │ ├── radius_das.c │ ├── radius_das.h │ ├── radius_server.c │ └── radius_server.h │ ├── rsn_supp │ ├── Makefile │ ├── pmksa_cache.c │ ├── pmksa_cache.h │ ├── preauth.c │ ├── preauth.h │ ├── tdls.c │ ├── wpa.c │ ├── wpa.h │ ├── wpa_ft.c │ ├── wpa_i.h │ ├── wpa_ie.c │ └── wpa_ie.h │ ├── tls │ ├── .gitignore │ ├── Makefile │ ├── asn1.c │ ├── asn1.h │ ├── bignum.c │ ├── bignum.h │ ├── libtommath.c │ ├── pkcs1.c │ ├── pkcs1.h │ ├── pkcs5.c │ ├── pkcs5.h │ ├── pkcs8.c │ ├── pkcs8.h │ ├── rsa.c │ ├── rsa.h │ ├── tlsv1_client.c │ ├── tlsv1_client.h │ ├── tlsv1_client_i.h │ ├── tlsv1_client_ocsp.c │ ├── tlsv1_client_read.c │ ├── tlsv1_client_write.c │ ├── tlsv1_common.c │ ├── tlsv1_common.h │ ├── tlsv1_cred.c │ ├── tlsv1_cred.h │ ├── tlsv1_record.c │ ├── tlsv1_record.h │ ├── tlsv1_server.c │ ├── tlsv1_server.h │ ├── tlsv1_server_i.h │ ├── tlsv1_server_read.c │ ├── tlsv1_server_write.c │ ├── x509v3.c │ └── x509v3.h │ ├── utils │ ├── .gitignore │ ├── Makefile │ ├── base64.c │ ├── base64.h │ ├── bitfield.c │ ├── bitfield.h │ ├── browser-android.c │ ├── browser-system.c │ ├── browser-wpadebug.c │ ├── browser.c │ ├── browser.h │ ├── build_config.h │ ├── common.c │ ├── common.h │ ├── const_time.h │ ├── crc32.c │ ├── crc32.h │ ├── edit.c │ ├── edit.h │ ├── edit_readline.c │ ├── edit_simple.c │ ├── eloop.c │ ├── eloop.h │ ├── eloop_win.c │ ├── ext_password.c │ ├── ext_password.h │ ├── ext_password_i.h │ ├── ext_password_test.c │ ├── http-utils.h │ ├── http_curl.c │ ├── includes.h │ ├── ip_addr.c │ ├── ip_addr.h │ ├── json.c │ ├── json.h │ ├── list.h │ ├── module_tests.h │ ├── os.h │ ├── os_internal.c │ ├── os_none.c │ ├── os_unix.c │ ├── os_win32.c │ ├── pcsc_funcs.c │ ├── pcsc_funcs.h │ ├── platform.h │ ├── radiotap.c │ ├── radiotap.h │ ├── radiotap_iter.h │ ├── state_machine.h │ ├── trace.c │ ├── trace.h │ ├── utils_module_tests.c │ ├── uuid.c │ ├── uuid.h │ ├── wpa_debug.c │ ├── wpa_debug.h │ ├── wpabuf.c │ ├── wpabuf.h │ ├── xml-utils.c │ ├── xml-utils.h │ └── xml_libxml2.c │ └── wps │ ├── Makefile │ ├── http.h │ ├── http_client.c │ ├── http_client.h │ ├── http_server.c │ ├── http_server.h │ ├── httpread.c │ ├── httpread.h │ ├── ndef.c │ ├── upnp_xml.c │ ├── upnp_xml.h │ ├── wps.c │ ├── wps.h │ ├── wps_attr_build.c │ ├── wps_attr_parse.c │ ├── wps_attr_parse.h │ ├── wps_attr_process.c │ ├── wps_common.c │ ├── wps_defs.h │ ├── wps_dev_attr.c │ ├── wps_dev_attr.h │ ├── wps_enrollee.c │ ├── wps_er.c │ ├── wps_er.h │ ├── wps_er_ssdp.c │ ├── wps_i.h │ ├── wps_module_tests.c │ ├── wps_registrar.c │ ├── wps_upnp.c │ ├── wps_upnp.h │ ├── wps_upnp_ap.c │ ├── wps_upnp_event.c │ ├── wps_upnp_i.h │ ├── wps_upnp_ssdp.c │ ├── wps_upnp_web.c │ └── wps_validate.c ├── run_crash_esp_EAP.sh ├── run_hostapd_normal.sh └── run_zero_pmk_EAP.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/README.md -------------------------------------------------------------------------------- /beacon_frame_crasher/ESP8266Crasher.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/beacon_frame_crasher/ESP8266Crasher.ino -------------------------------------------------------------------------------- /beacon_frame_crasher/ESP8266Crasher.ino.d1_mini.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/beacon_frame_crasher/ESP8266Crasher.ino.d1_mini.bin -------------------------------------------------------------------------------- /beacon_frame_crasher/ESP8266Crasher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/beacon_frame_crasher/ESP8266Crasher.py -------------------------------------------------------------------------------- /beacon_frame_crasher/client_station.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/beacon_frame_crasher/client_station.c -------------------------------------------------------------------------------- /beacon_frame_crasher/crafted_packet_1.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/beacon_frame_crasher/crafted_packet_1.pcapng -------------------------------------------------------------------------------- /beacon_frame_crasher/crafted_packet_2.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/beacon_frame_crasher/crafted_packet_2.pcapng -------------------------------------------------------------------------------- /beacon_frame_crasher/esp8266-2.0.0-deauther.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/beacon_frame_crasher/esp8266-2.0.0-deauther.zip -------------------------------------------------------------------------------- /beacon_frame_crasher/invalid_beacon_frame1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/beacon_frame_crasher/invalid_beacon_frame1.png -------------------------------------------------------------------------------- /beacon_frame_crasher/invalid_beacon_frame2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/beacon_frame_crasher/invalid_beacon_frame2.png -------------------------------------------------------------------------------- /docs/attack_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/docs/attack_logo.png -------------------------------------------------------------------------------- /docs/eap_crasher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/docs/eap_crasher.png -------------------------------------------------------------------------------- /docs/normal_behavor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/docs/normal_behavor.png -------------------------------------------------------------------------------- /docs/zero_pmk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/docs/zero_pmk.png -------------------------------------------------------------------------------- /esp_client_test_codes/ESP32_Arduino_EAP_Client/ESP32_Arduino_EAP_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP32_Arduino_EAP_Client/ESP32_Arduino_EAP_Client.ino -------------------------------------------------------------------------------- /esp_client_test_codes/ESP32_EAP_Client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP32_EAP_Client/CMakeLists.txt -------------------------------------------------------------------------------- /esp_client_test_codes/ESP32_EAP_Client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP32_EAP_Client/Makefile -------------------------------------------------------------------------------- /esp_client_test_codes/ESP32_EAP_Client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP32_EAP_Client/README.md -------------------------------------------------------------------------------- /esp_client_test_codes/ESP32_EAP_Client/build/wpa_supplicant/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP32_EAP_Client/build/wpa_supplicant/test.txt -------------------------------------------------------------------------------- /esp_client_test_codes/ESP32_EAP_Client/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP32_EAP_Client/main/CMakeLists.txt -------------------------------------------------------------------------------- /esp_client_test_codes/ESP32_EAP_Client/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP32_EAP_Client/main/Kconfig.projbuild -------------------------------------------------------------------------------- /esp_client_test_codes/ESP32_EAP_Client/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP32_EAP_Client/main/component.mk -------------------------------------------------------------------------------- /esp_client_test_codes/ESP32_EAP_Client/main/wpa2_ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP32_EAP_Client/main/wpa2_ca.pem -------------------------------------------------------------------------------- /esp_client_test_codes/ESP32_EAP_Client/main/wpa2_client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP32_EAP_Client/main/wpa2_client.crt -------------------------------------------------------------------------------- /esp_client_test_codes/ESP32_EAP_Client/main/wpa2_client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP32_EAP_Client/main/wpa2_client.key -------------------------------------------------------------------------------- /esp_client_test_codes/ESP32_EAP_Client/main/wpa2_client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP32_EAP_Client/main/wpa2_client.pem -------------------------------------------------------------------------------- /esp_client_test_codes/ESP32_EAP_Client/main/wpa2_enterprise_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP32_EAP_Client/main/wpa2_enterprise_main.c -------------------------------------------------------------------------------- /esp_client_test_codes/ESP32_EAP_Client/main/wpa2_server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP32_EAP_Client/main/wpa2_server.crt -------------------------------------------------------------------------------- /esp_client_test_codes/ESP32_EAP_Client/main/wpa2_server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP32_EAP_Client/main/wpa2_server.key -------------------------------------------------------------------------------- /esp_client_test_codes/ESP32_EAP_Client/main/wpa2_server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP32_EAP_Client/main/wpa2_server.pem -------------------------------------------------------------------------------- /esp_client_test_codes/ESP32_EAP_Client/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP32_EAP_Client/sdkconfig -------------------------------------------------------------------------------- /esp_client_test_codes/ESP32_EAP_Client/sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP32_EAP_Client/sdkconfig.old -------------------------------------------------------------------------------- /esp_client_test_codes/ESP8266_Arduino_EAP_Client/ESP8266_Arduino_EAP_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP8266_Arduino_EAP_Client/ESP8266_Arduino_EAP_Client.ino -------------------------------------------------------------------------------- /esp_client_test_codes/ESP8266_EAP_Client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP8266_EAP_Client/.gitignore -------------------------------------------------------------------------------- /esp_client_test_codes/ESP8266_EAP_Client/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP8266_EAP_Client/.travis.yml -------------------------------------------------------------------------------- /esp_client_test_codes/ESP8266_EAP_Client/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP8266_EAP_Client/.vscode/extensions.json -------------------------------------------------------------------------------- /esp_client_test_codes/ESP8266_EAP_Client/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP8266_EAP_Client/.vscode/settings.json -------------------------------------------------------------------------------- /esp_client_test_codes/ESP8266_EAP_Client/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP8266_EAP_Client/include/README -------------------------------------------------------------------------------- /esp_client_test_codes/ESP8266_EAP_Client/include/user_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP8266_EAP_Client/include/user_config.h -------------------------------------------------------------------------------- /esp_client_test_codes/ESP8266_EAP_Client/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP8266_EAP_Client/lib/README -------------------------------------------------------------------------------- /esp_client_test_codes/ESP8266_EAP_Client/lib/user_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP8266_EAP_Client/lib/user_config.h -------------------------------------------------------------------------------- /esp_client_test_codes/ESP8266_EAP_Client/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP8266_EAP_Client/platformio.ini -------------------------------------------------------------------------------- /esp_client_test_codes/ESP8266_EAP_Client/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP8266_EAP_Client/src/main.c -------------------------------------------------------------------------------- /esp_client_test_codes/ESP8266_EAP_Client/src/user_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP8266_EAP_Client/src/user_config.h -------------------------------------------------------------------------------- /esp_client_test_codes/ESP8266_EAP_Client/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/esp_client_test_codes/ESP8266_EAP_Client/test/README -------------------------------------------------------------------------------- /hostapd-2.8_binary/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_binary/ca.pem -------------------------------------------------------------------------------- /hostapd-2.8_binary/hostapd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_binary/hostapd -------------------------------------------------------------------------------- /hostapd-2.8_binary/hostapd.accept: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_binary/hostapd.accept -------------------------------------------------------------------------------- /hostapd-2.8_binary/hostapd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_binary/hostapd.conf -------------------------------------------------------------------------------- /hostapd-2.8_binary/hostapd.deny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_binary/hostapd.deny -------------------------------------------------------------------------------- /hostapd-2.8_binary/hostapd.eap_user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_binary/hostapd.eap_user -------------------------------------------------------------------------------- /hostapd-2.8_binary/hostapd.eap_user_sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_binary/hostapd.eap_user_sqlite -------------------------------------------------------------------------------- /hostapd-2.8_binary/hostapd.radius_clients: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_binary/hostapd.radius_clients -------------------------------------------------------------------------------- /hostapd-2.8_binary/hostapd.sim_db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_binary/hostapd.sim_db -------------------------------------------------------------------------------- /hostapd-2.8_binary/hostapd.vlan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_binary/hostapd.vlan -------------------------------------------------------------------------------- /hostapd-2.8_binary/hostapd.wpa_psk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_binary/hostapd.wpa_psk -------------------------------------------------------------------------------- /hostapd-2.8_binary/hostapd_cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_binary/hostapd_cli -------------------------------------------------------------------------------- /hostapd-2.8_binary/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_binary/openssl.cnf -------------------------------------------------------------------------------- /hostapd-2.8_binary/run_crash_esp_EAP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_binary/run_crash_esp_EAP.sh -------------------------------------------------------------------------------- /hostapd-2.8_binary/run_hostapd_normal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_binary/run_hostapd_normal.sh -------------------------------------------------------------------------------- /hostapd-2.8_binary/run_zero_pmk_EAP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_binary/run_zero_pmk_EAP.sh -------------------------------------------------------------------------------- /hostapd-2.8_binary/wpa2_server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_binary/wpa2_server.key -------------------------------------------------------------------------------- /hostapd-2.8_binary/wpa2_server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_binary/wpa2_server.pem -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/1c39a08df04a555/mmap_address.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/ipch/1c39a08df04a555/mmap_address.bin -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/1c39a08df04a555/wpa_auth.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/ipch/1c39a08df04a555/wpa_auth.ipch -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/3690a75011a5cfac/mmap_address.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/ipch/3690a75011a5cfac/mmap_address.bin -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/3690a75011a5cfac/wps_validate.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/ipch/3690a75011a5cfac/wps_validate.ipch -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/3e92187f788b9fff/mmap_address.bin: -------------------------------------------------------------------------------- 1 | X* -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/3e92187f788b9fff/wpa_auth.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/ipch/3e92187f788b9fff/wpa_auth.ipch -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/57d87f4922f2b819/eap_common.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/ipch/57d87f4922f2b819/eap_common.ipch -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/57d87f4922f2b819/mmap_address.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/ipch/57d87f4922f2b819/mmap_address.bin -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/5a3eca18905403a1/mmap_address.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/ipch/5a3eca18905403a1/mmap_address.bin -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/5a3eca18905403a1/sta_info.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/ipch/5a3eca18905403a1/sta_info.ipch -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/61554e2135e838a5/eap_server.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/ipch/61554e2135e838a5/eap_server.ipch -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/61554e2135e838a5/mmap_address.bin: -------------------------------------------------------------------------------- 1 | t -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/6c461350f86df28/main.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/ipch/6c461350f86df28/main.ipch -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/6c461350f86df28/mmap_address.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/ipch/6c461350f86df28/mmap_address.bin -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/729bc0ff8568225b/eap_server.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/ipch/729bc0ff8568225b/eap_server.ipch -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/729bc0ff8568225b/mmap_address.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/ipch/729bc0ff8568225b/mmap_address.bin -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/9349d29e3b535c6a/main.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/ipch/9349d29e3b535c6a/main.ipch -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/9349d29e3b535c6a/mmap_address.bin: -------------------------------------------------------------------------------- 1 | |U -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/bbeef2fb57e95dc8/ap_config.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/ipch/bbeef2fb57e95dc8/ap_config.ipch -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/bbeef2fb57e95dc8/mmap_address.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/ipch/bbeef2fb57e95dc8/mmap_address.bin -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/ipch/f84947e8a755eb57/mmap_address.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/ipch/f84947e8a755eb57/mmap_address.bin -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/keybindings.json -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/settings.json -------------------------------------------------------------------------------- /hostapd-2.8_source/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/.vscode/tasks.json -------------------------------------------------------------------------------- /hostapd-2.8_source/CONTRIBUTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/CONTRIBUTIONS -------------------------------------------------------------------------------- /hostapd-2.8_source/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/COPYING -------------------------------------------------------------------------------- /hostapd-2.8_source/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/README -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/.config -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/Android.mk -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/ChangeLog -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/README -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/README-MULTI-AP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/README-MULTI-AP -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/README-WPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/README-WPS -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/android.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/android.config -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/ca.pem -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/config_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/config_file.c -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/config_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/config_file.h -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/csr.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/csr.csr -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/ctrl_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/ctrl_iface.c -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/ctrl_iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/ctrl_iface.h -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/defconfig -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/eap_register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/eap_register.c -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/eap_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/eap_register.h -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/eap_testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/eap_testing.txt -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/hapd_module_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/hapd_module_tests.c -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/hlr_auc_gw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/hlr_auc_gw.c -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/hlr_auc_gw.milenage_db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/hlr_auc_gw.milenage_db -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/hlr_auc_gw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/hlr_auc_gw.txt -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/hostapd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/hostapd.8 -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/hostapd.accept: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/hostapd.accept -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/hostapd.android.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/hostapd.android.rc -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/hostapd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/hostapd.conf -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/hostapd.deny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/hostapd.deny -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/hostapd.eap_user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/hostapd.eap_user -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/hostapd.eap_user_sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/hostapd.eap_user_sqlite -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/hostapd.radius_clients: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/hostapd.radius_clients -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/hostapd.sim_db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/hostapd.sim_db -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/hostapd.vlan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/hostapd.vlan -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/hostapd.wpa_psk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/hostapd.wpa_psk -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/hostapd_cli.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/hostapd_cli.1 -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/hostapd_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/hostapd_cli.c -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/logwatch/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/logwatch/README -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/logwatch/hostapd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/logwatch/hostapd -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/logwatch/hostapd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/logwatch/hostapd.conf -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/main.c -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/nt_password_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/nt_password_hash.c -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/openssl.cnf -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/wired.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/wired.conf -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/wpa2_server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/wpa2_server.crt -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/wpa2_server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/wpa2_server.key -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/wpa2_server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/wpa2_server.pem -------------------------------------------------------------------------------- /hostapd-2.8_source/hostapd/wps-ap-nfc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/hostapd/wps-ap-nfc.py -------------------------------------------------------------------------------- /hostapd-2.8_source/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/accounting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/accounting.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/accounting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/accounting.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/acs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/acs.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/acs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/acs.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ap_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ap_config.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ap_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ap_config.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ap_drv_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ap_drv_ops.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ap_drv_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ap_drv_ops.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ap_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ap_list.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ap_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ap_list.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ap_mlme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ap_mlme.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ap_mlme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ap_mlme.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/authsrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/authsrv.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/authsrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/authsrv.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/beacon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/beacon.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/beacon.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/bss_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/bss_load.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/bss_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/bss_load.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ctrl_iface_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ctrl_iface_ap.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ctrl_iface_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ctrl_iface_ap.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/dfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/dfs.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/dfs.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/dhcp_snoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/dhcp_snoop.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/dhcp_snoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/dhcp_snoop.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/dpp_hostapd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/dpp_hostapd.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/dpp_hostapd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/dpp_hostapd.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/drv_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/drv_callbacks.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/eap_user_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/eap_user_db.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/eth_p_oui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/eth_p_oui.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/eth_p_oui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/eth_p_oui.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/fils_hlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/fils_hlp.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/fils_hlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/fils_hlp.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/gas_query_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/gas_query_ap.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/gas_query_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/gas_query_ap.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/gas_serv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/gas_serv.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/gas_serv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/gas_serv.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/hostapd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/hostapd.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/hostapd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/hostapd.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/hs20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/hs20.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/hs20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/hs20.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/hw_features.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/hw_features.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/hw_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/hw_features.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/iapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/iapp.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/iapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/iapp.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ieee802_11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ieee802_11.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ieee802_11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ieee802_11.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ieee802_11_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ieee802_11_auth.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ieee802_11_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ieee802_11_auth.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ieee802_11_he.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ieee802_11_he.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ieee802_11_ht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ieee802_11_ht.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ieee802_11_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ieee802_11_shared.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ieee802_11_vht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ieee802_11_vht.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ieee802_1x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ieee802_1x.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ieee802_1x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ieee802_1x.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/mbo_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/mbo_ap.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/mbo_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/mbo_ap.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ndisc_snoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ndisc_snoop.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/ndisc_snoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/ndisc_snoop.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/neighbor_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/neighbor_db.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/neighbor_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/neighbor_db.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/p2p_hostapd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/p2p_hostapd.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/p2p_hostapd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/p2p_hostapd.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/pmksa_cache_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/pmksa_cache_auth.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/pmksa_cache_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/pmksa_cache_auth.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/preauth_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/preauth_auth.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/preauth_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/preauth_auth.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/rrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/rrm.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/rrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/rrm.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/sta_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/sta_info.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/sta_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/sta_info.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/taxonomy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/taxonomy.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/taxonomy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/taxonomy.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/tkip_countermeasures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/tkip_countermeasures.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/tkip_countermeasures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/tkip_countermeasures.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/utils.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/vlan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/vlan.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/vlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/vlan.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/vlan_full.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/vlan_full.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/vlan_ifconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/vlan_ifconfig.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/vlan_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/vlan_init.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/vlan_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/vlan_init.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/vlan_ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/vlan_ioctl.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/vlan_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/vlan_util.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/vlan_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/vlan_util.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/wmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/wmm.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/wmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/wmm.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/wnm_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/wnm_ap.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/wnm_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/wnm_ap.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/wpa_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/wpa_auth.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/wpa_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/wpa_auth.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/wpa_auth_ft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/wpa_auth_ft.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/wpa_auth_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/wpa_auth_glue.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/wpa_auth_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/wpa_auth_glue.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/wpa_auth_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/wpa_auth_i.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/wpa_auth_ie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/wpa_auth_ie.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/wpa_auth_ie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/wpa_auth_ie.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/wps_hostapd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/wps_hostapd.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/wps_hostapd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/wps_hostapd.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/x_snoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/x_snoop.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/ap/x_snoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/ap/x_snoop.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/cli.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/cli.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/common_module_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/common_module_tests.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/ctrl_iface_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/ctrl_iface_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/ctrl_iface_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/ctrl_iface_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/defs.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/dhcp.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/dpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/dpp.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/dpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/dpp.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/eapol_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/eapol_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/gas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/gas.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/gas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/gas.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/gas_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/gas_server.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/gas_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/gas_server.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/hw_features_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/hw_features_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/hw_features_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/hw_features_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/ieee802_11_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/ieee802_11_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/ieee802_11_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/ieee802_11_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/ieee802_11_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/ieee802_11_defs.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/ieee802_1x_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/ieee802_1x_defs.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/linux_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/linux_bridge.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/linux_vlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/linux_vlan.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/ocv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/ocv.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/ocv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/ocv.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/privsep_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/privsep_commands.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/qca-vendor-attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/qca-vendor-attr.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/qca-vendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/qca-vendor.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/sae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/sae.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/sae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/sae.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/tnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/tnc.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/version.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/wpa_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/wpa_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/wpa_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/wpa_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/wpa_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/wpa_ctrl.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/wpa_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/wpa_ctrl.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/wpa_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/wpa_helpers.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/common/wpa_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/common/wpa_helpers.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/.gitignore: -------------------------------------------------------------------------------- 1 | libcrypto.a 2 | -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/aes-cbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/aes-cbc.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/aes-ccm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/aes-ccm.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/aes-ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/aes-ctr.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/aes-eax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/aes-eax.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/aes-encblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/aes-encblock.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/aes-gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/aes-gcm.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/aes-internal-dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/aes-internal-dec.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/aes-internal-enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/aes-internal-enc.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/aes-internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/aes-internal.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/aes-omac1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/aes-omac1.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/aes-siv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/aes-siv.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/aes-unwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/aes-unwrap.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/aes-wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/aes-wrap.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/aes.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/aes_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/aes_i.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/aes_siv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/aes_siv.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/aes_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/aes_wrap.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/crypto.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/crypto_gnutls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/crypto_gnutls.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/crypto_internal-cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/crypto_internal-cipher.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/crypto_internal-modexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/crypto_internal-modexp.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/crypto_internal-rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/crypto_internal-rsa.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/crypto_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/crypto_internal.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/crypto_libtomcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/crypto_libtomcrypt.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/crypto_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/crypto_linux.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/crypto_module_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/crypto_module_tests.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/crypto_nettle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/crypto_nettle.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/crypto_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/crypto_none.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/crypto_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/crypto_openssl.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/crypto_wolfssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/crypto_wolfssl.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/des-internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/des-internal.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/des_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/des_i.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/dh_group5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/dh_group5.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/dh_group5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/dh_group5.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/dh_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/dh_groups.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/dh_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/dh_groups.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/fips_prf_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/fips_prf_internal.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/fips_prf_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/fips_prf_openssl.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/fips_prf_wolfssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/fips_prf_wolfssl.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/md4-internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/md4-internal.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/md5-internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/md5-internal.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/md5.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/md5.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/md5_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/md5_i.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/milenage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/milenage.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/milenage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/milenage.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/ms_funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/ms_funcs.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/ms_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/ms_funcs.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/random.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/random.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/rc4.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha1-internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha1-internal.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha1-pbkdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha1-pbkdf2.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha1-prf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha1-prf.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha1-tlsprf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha1-tlsprf.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha1-tprf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha1-tprf.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha1.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha1.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha1_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha1_i.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha256-internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha256-internal.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha256-kdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha256-kdf.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha256-prf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha256-prf.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha256-tlsprf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha256-tlsprf.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha256.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha256.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha256_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha256_i.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha384-internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha384-internal.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha384-kdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha384-kdf.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha384-prf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha384-prf.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha384.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha384.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha384.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha384.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha384_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha384_i.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha512-internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha512-internal.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha512-kdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha512-kdf.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha512-prf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha512-prf.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha512.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha512.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/sha512_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/sha512_i.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/tls.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/tls_gnutls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/tls_gnutls.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/tls_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/tls_internal.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/tls_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/tls_none.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/tls_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/tls_openssl.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/tls_openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/tls_openssl.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/tls_openssl_ocsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/tls_openssl_ocsp.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/crypto/tls_wolfssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/crypto/tls_wolfssl.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/.gitignore -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/android_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/android_drv.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_atheros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_atheros.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_bsd.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_hostap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_hostap.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_hostap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_hostap.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_macsec_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_macsec_linux.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_macsec_qca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_macsec_qca.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_ndis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_ndis.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_ndis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_ndis.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_ndis_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_ndis_.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_nl80211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_nl80211.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_nl80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_nl80211.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_nl80211_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_nl80211_android.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_nl80211_capa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_nl80211_capa.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_nl80211_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_nl80211_event.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_nl80211_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_nl80211_monitor.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_nl80211_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_nl80211_scan.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_none.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_openbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_openbsd.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_privsep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_privsep.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_roboswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_roboswitch.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_wext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_wext.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_wext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_wext.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_wired.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_wired.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_wired_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_wired_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/driver_wired_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/driver_wired_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/drivers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/drivers.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/drivers.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/drivers.mak -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/drivers.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/drivers.mk -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/linux_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/linux_defines.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/linux_ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/linux_ioctl.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/linux_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/linux_ioctl.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/linux_wext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/linux_wext.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/ndis_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/ndis_events.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/netlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/netlink.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/netlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/netlink.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/nl80211_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/nl80211_copy.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/priv_netlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/priv_netlink.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/rfkill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/rfkill.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/drivers/rfkill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/drivers/rfkill.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/chap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/chap.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/chap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/chap.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_defs.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_eke_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_eke_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_eke_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_eke_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_fast_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_fast_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_fast_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_fast_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_gpsk_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_gpsk_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_gpsk_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_gpsk_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_ikev2_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_ikev2_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_ikev2_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_ikev2_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_pax_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_pax_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_pax_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_pax_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_peap_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_peap_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_peap_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_peap_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_psk_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_psk_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_psk_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_psk_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_pwd_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_pwd_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_pwd_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_pwd_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_sake_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_sake_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_sake_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_sake_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_sim_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_sim_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_sim_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_sim_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_tlv_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_tlv_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_ttls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_ttls.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_wsc_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_wsc_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/eap_wsc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/eap_wsc_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/ikev2_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/ikev2_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_common/ikev2_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_common/ikev2_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_aka.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_aka.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_config.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_eke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_eke.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_fast.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_fast_pac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_fast_pac.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_fast_pac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_fast_pac.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_gpsk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_gpsk.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_gtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_gtc.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_i.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_ikev2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_ikev2.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_leap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_leap.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_md5.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_methods.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_methods.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_methods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_methods.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_mschapv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_mschapv2.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_otp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_otp.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_pax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_pax.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_peap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_peap.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_proxy.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_proxy_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_proxy_dummy.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_psk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_psk.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_pwd.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_sake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_sake.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_sim.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_tls.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_tls_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_tls_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_tls_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_tls_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_tnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_tnc.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_ttls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_ttls.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_vendor_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_vendor_test.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/eap_wsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/eap_wsc.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/ikev2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/ikev2.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/ikev2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/ikev2.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/mschapv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/mschapv2.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/mschapv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/mschapv2.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/tncc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/tncc.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_peer/tncc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_peer/tncc.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_i.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_methods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_methods.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_aka.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_aka.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_eke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_eke.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_fast.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_gpsk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_gpsk.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_gtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_gtc.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_identity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_identity.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_ikev2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_ikev2.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_md5.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_methods.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_methods.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_mschapv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_mschapv2.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_pax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_pax.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_peap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_peap.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_psk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_psk.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_pwd.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_sake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_sake.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_sim.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_tls.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_tls_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_tls_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_tnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_tnc.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_ttls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_ttls.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_vendor_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_vendor_test.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_server_wsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_server_wsc.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_sim_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_sim_db.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_sim_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_sim_db.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/eap_tls_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/eap_tls_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/ikev2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/ikev2.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/ikev2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/ikev2.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/tncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/tncs.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eap_server/tncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eap_server/tncs.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eapol_auth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eapol_auth/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eapol_auth/eapol_auth_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eapol_auth/eapol_auth_dump.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eapol_auth/eapol_auth_sm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eapol_auth/eapol_auth_sm.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eapol_auth/eapol_auth_sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eapol_auth/eapol_auth_sm.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eapol_auth/eapol_auth_sm_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eapol_auth/eapol_auth_sm_i.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eapol_supp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eapol_supp/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eapol_supp/eapol_supp_sm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eapol_supp/eapol_supp_sm.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/eapol_supp/eapol_supp_sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/eapol_supp/eapol_supp_sm.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/fst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/fst/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/src/fst/fst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/fst/fst.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/fst/fst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/fst/fst.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/fst/fst_ctrl_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/fst/fst_ctrl_aux.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/fst/fst_ctrl_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/fst/fst_ctrl_aux.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/fst/fst_ctrl_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/fst/fst_ctrl_defs.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/fst/fst_ctrl_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/fst/fst_ctrl_iface.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/fst/fst_ctrl_iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/fst/fst_ctrl_iface.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/fst/fst_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/fst/fst_defs.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/fst/fst_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/fst/fst_group.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/fst/fst_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/fst/fst_group.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/fst/fst_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/fst/fst_iface.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/fst/fst_iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/fst/fst_iface.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/fst/fst_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/fst/fst_internal.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/fst/fst_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/fst/fst_session.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/fst/fst_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/fst/fst_session.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/l2_packet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/l2_packet/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/src/l2_packet/l2_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/l2_packet/l2_packet.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/l2_packet/l2_packet_freebsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/l2_packet/l2_packet_freebsd.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/l2_packet/l2_packet_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/l2_packet/l2_packet_linux.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/l2_packet/l2_packet_ndis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/l2_packet/l2_packet_ndis.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/l2_packet/l2_packet_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/l2_packet/l2_packet_none.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/l2_packet/l2_packet_pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/l2_packet/l2_packet_pcap.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/l2_packet/l2_packet_privsep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/l2_packet/l2_packet_privsep.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/l2_packet/l2_packet_winpcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/l2_packet/l2_packet_winpcap.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/lib.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/lib.rules -------------------------------------------------------------------------------- /hostapd-2.8_source/src/p2p/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/p2p/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/src/p2p/p2p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/p2p/p2p.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/p2p/p2p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/p2p/p2p.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/p2p/p2p_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/p2p/p2p_build.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/p2p/p2p_dev_disc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/p2p/p2p_dev_disc.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/p2p/p2p_go_neg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/p2p/p2p_go_neg.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/p2p/p2p_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/p2p/p2p_group.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/p2p/p2p_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/p2p/p2p_i.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/p2p/p2p_invitation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/p2p/p2p_invitation.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/p2p/p2p_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/p2p/p2p_parse.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/p2p/p2p_pd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/p2p/p2p_pd.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/p2p/p2p_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/p2p/p2p_sd.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/p2p/p2p_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/p2p/p2p_utils.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/pae/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/pae/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/src/pae/ieee802_1x_cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/pae/ieee802_1x_cp.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/pae/ieee802_1x_cp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/pae/ieee802_1x_cp.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/pae/ieee802_1x_kay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/pae/ieee802_1x_kay.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/pae/ieee802_1x_kay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/pae/ieee802_1x_kay.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/pae/ieee802_1x_kay_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/pae/ieee802_1x_kay_i.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/pae/ieee802_1x_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/pae/ieee802_1x_key.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/pae/ieee802_1x_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/pae/ieee802_1x_key.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/pae/ieee802_1x_secy_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/pae/ieee802_1x_secy_ops.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/pae/ieee802_1x_secy_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/pae/ieee802_1x_secy_ops.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/radius/.gitignore: -------------------------------------------------------------------------------- 1 | libradius.a 2 | -------------------------------------------------------------------------------- /hostapd-2.8_source/src/radius/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/radius/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/src/radius/radius.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/radius/radius.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/radius/radius.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/radius/radius.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/radius/radius_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/radius/radius_client.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/radius/radius_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/radius/radius_client.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/radius/radius_das.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/radius/radius_das.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/radius/radius_das.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/radius/radius_das.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/radius/radius_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/radius/radius_server.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/radius/radius_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/radius/radius_server.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/rsn_supp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/rsn_supp/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/src/rsn_supp/pmksa_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/rsn_supp/pmksa_cache.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/rsn_supp/pmksa_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/rsn_supp/pmksa_cache.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/rsn_supp/preauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/rsn_supp/preauth.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/rsn_supp/preauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/rsn_supp/preauth.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/rsn_supp/tdls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/rsn_supp/tdls.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/rsn_supp/wpa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/rsn_supp/wpa.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/rsn_supp/wpa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/rsn_supp/wpa.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/rsn_supp/wpa_ft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/rsn_supp/wpa_ft.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/rsn_supp/wpa_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/rsn_supp/wpa_i.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/rsn_supp/wpa_ie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/rsn_supp/wpa_ie.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/rsn_supp/wpa_ie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/rsn_supp/wpa_ie.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/.gitignore: -------------------------------------------------------------------------------- 1 | libtls.a 2 | -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/asn1.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/asn1.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/bignum.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/bignum.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/libtommath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/libtommath.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/pkcs1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/pkcs1.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/pkcs1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/pkcs1.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/pkcs5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/pkcs5.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/pkcs5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/pkcs5.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/pkcs8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/pkcs8.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/pkcs8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/pkcs8.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/rsa.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/rsa.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/tlsv1_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/tlsv1_client.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/tlsv1_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/tlsv1_client.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/tlsv1_client_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/tlsv1_client_i.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/tlsv1_client_ocsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/tlsv1_client_ocsp.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/tlsv1_client_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/tlsv1_client_read.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/tlsv1_client_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/tlsv1_client_write.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/tlsv1_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/tlsv1_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/tlsv1_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/tlsv1_common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/tlsv1_cred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/tlsv1_cred.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/tlsv1_cred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/tlsv1_cred.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/tlsv1_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/tlsv1_record.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/tlsv1_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/tlsv1_record.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/tlsv1_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/tlsv1_server.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/tlsv1_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/tlsv1_server.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/tlsv1_server_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/tlsv1_server_i.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/tlsv1_server_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/tlsv1_server_read.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/tlsv1_server_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/tlsv1_server_write.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/x509v3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/x509v3.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/tls/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/tls/x509v3.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/.gitignore: -------------------------------------------------------------------------------- 1 | libutils.a 2 | -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/base64.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/base64.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/bitfield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/bitfield.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/bitfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/bitfield.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/browser-android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/browser-android.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/browser-system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/browser-system.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/browser-wpadebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/browser-wpadebug.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/browser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/browser.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/browser.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/build_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/build_config.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/common.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/const_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/const_time.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/crc32.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/crc32.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/edit.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/edit.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/edit_readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/edit_readline.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/edit_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/edit_simple.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/eloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/eloop.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/eloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/eloop.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/eloop_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/eloop_win.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/ext_password.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/ext_password.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/ext_password.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/ext_password.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/ext_password_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/ext_password_i.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/ext_password_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/ext_password_test.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/http-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/http-utils.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/http_curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/http_curl.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/includes.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/ip_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/ip_addr.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/ip_addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/ip_addr.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/json.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/json.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/list.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/module_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/module_tests.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/os.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/os_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/os_internal.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/os_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/os_none.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/os_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/os_unix.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/os_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/os_win32.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/pcsc_funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/pcsc_funcs.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/pcsc_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/pcsc_funcs.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/platform.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/radiotap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/radiotap.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/radiotap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/radiotap.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/radiotap_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/radiotap_iter.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/state_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/state_machine.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/trace.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/trace.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/utils_module_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/utils_module_tests.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/uuid.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/uuid.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/wpa_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/wpa_debug.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/wpa_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/wpa_debug.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/wpabuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/wpabuf.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/wpabuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/wpabuf.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/xml-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/xml-utils.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/xml-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/xml-utils.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/utils/xml_libxml2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/utils/xml_libxml2.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/Makefile -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/http.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/http_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/http_client.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/http_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/http_client.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/http_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/http_server.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/http_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/http_server.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/httpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/httpread.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/httpread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/httpread.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/ndef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/ndef.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/upnp_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/upnp_xml.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/upnp_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/upnp_xml.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_attr_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_attr_build.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_attr_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_attr_parse.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_attr_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_attr_parse.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_attr_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_attr_process.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_common.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_defs.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_dev_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_dev_attr.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_dev_attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_dev_attr.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_enrollee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_enrollee.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_er.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_er.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_er.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_er.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_er_ssdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_er_ssdp.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_i.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_module_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_module_tests.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_registrar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_registrar.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_upnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_upnp.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_upnp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_upnp.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_upnp_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_upnp_ap.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_upnp_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_upnp_event.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_upnp_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_upnp_i.h -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_upnp_ssdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_upnp_ssdp.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_upnp_web.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_upnp_web.c -------------------------------------------------------------------------------- /hostapd-2.8_source/src/wps/wps_validate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/hostapd-2.8_source/src/wps/wps_validate.c -------------------------------------------------------------------------------- /run_crash_esp_EAP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/run_crash_esp_EAP.sh -------------------------------------------------------------------------------- /run_hostapd_normal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/run_hostapd_normal.sh -------------------------------------------------------------------------------- /run_zero_pmk_EAP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matheus-Garbelini/esp32_esp8266_attacks/HEAD/run_zero_pmk_EAP.sh --------------------------------------------------------------------------------