You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am doing one university project about mac address randomization, and I want to change the mac address during the probe request phase only to locally administrated, I tried in function _issue_probereq() function, the driver sends probe request with a new random mac just one and then don't move on to the authentication phase. I tried u8 mac[] = {0xbe, 0xf5, 0x70, 0x99, 0x59, 0x1b} then _rtw_memcpy(pwlanhdr->addr2, mac, ETH_ALEN)
The text was updated successfully, but these errors were encountered:
It turns out that it worked! I was monitoring the wrong channel, now when I monitor the right channel, I can see the changes in MAC address before and after the scanning phase.
Hi,
I am doing one university project about mac address randomization, and I want to change the mac address during the probe request phase only to locally administrated, I tried in function _issue_probereq() function, the driver sends probe request with a new random mac just one and then don't move on to the authentication phase. I tried
u8 mac[] = {0xbe, 0xf5, 0x70, 0x99, 0x59, 0x1b}
then_rtw_memcpy(pwlanhdr->addr2, mac, ETH_ALEN)
The text was updated successfully, but these errors were encountered: