Hey!
So, I have compiled the project using idf.py build after adding the line target_link_libraries(${COMPONENT_LIB} -Wl,-zmuldefs) to the main cmake.
I am using an esp32s board by nodeMCU and it is building and flashing properly.
MAC address TARGET: FF, FF, FF, FF, FF, FF (that is, broadcast the deauth frames)
MAC address AP: (of the AP I want to sent deauth packages of)
Correct me if I am wrong but is this how its supposed to be?
I found the MAC address doing another scan for the specific SSID of the AP and extracting the BSSID from it, which I have used here.
However, the ESP is neither lighting up its blue TX led (which it did while scanning) nor am I seeing any changes in my wifi connections.
I figure the possible reasons can be:
1, The code is no longer working
2. The wifi system is secure against this using 802.11ac/802.11w frameworks
Can you suggest what might be the case?
Hey!
So, I have compiled the project using
idf.py buildafter adding the linetarget_link_libraries(${COMPONENT_LIB} -Wl,-zmuldefs)to the main cmake.I am using an esp32s board by nodeMCU and it is building and flashing properly.
MAC address TARGET: FF, FF, FF, FF, FF, FF (that is, broadcast the deauth frames)
MAC address AP: (of the AP I want to sent deauth packages of)
Correct me if I am wrong but is this how its supposed to be?
I found the MAC address doing another scan for the specific SSID of the AP and extracting the BSSID from it, which I have used here.
However, the ESP is neither lighting up its blue TX led (which it did while scanning) nor am I seeing any changes in my wifi connections.
I figure the possible reasons can be:
1, The code is no longer working
2. The wifi system is secure against this using 802.11ac/802.11w frameworks
Can you suggest what might be the case?