Como evitar o mac-adress spoofing auto reset na conexão

0

Toda vez que eu falsifico meu endereço MAC no Ubuntu usando diferentes abordagens, incluindo macchanger , ele é redefinido automaticamente assim que eu realmente tento reconectar-me à rede.

É assim que meu problema se parece:
ENTRADA DO TERMINAL antes da reconexão

root@M-Linux:~# macchanger -s wlp2s0
Current MAC:   XY (changed, obviously) (Hon Hai Precision Ind. Co.,Ltd.)
Permanent MAC: XY (Hon Hai Precision Ind. Co.,Ltd.)
root@M-Linux:~# ifconfig wlp2s0 down
root@M-Linux:~# macchanger -rb wlp2s0
Current MAC:   XY (Hon Hai Precision Ind. Co.,Ltd.)
Permanent MAC: XY (Hon Hai Precision Ind. Co.,Ltd.)
New MAC:       AB (unknown)
root@M-Linux:~# ifconfig wlp2s0 up
root@M-Linux:~# macchanger -s wlp2s0
Current MAC:   AB (unknown)
Permanent MAC: XY (Hon Hai Precision Ind. Co.,Ltd.)

Então eu reconectar ao WIFI e então isso acontece

root@M-Linux:~# macchanger -s wlp2s0
Current MAC:   XY (Hon Hai Precision Ind. Co.,Ltd.)
Permanent MAC: XY (Hon Hai Precision Ind. Co.,Ltd.)

O mac volta ao normal.

Eu tentei isso no kubuntu 16.04.3 e em outra distro baseada no Debian.

Eu tentei em minha casa e em uma rede pública. Eu tentei em duas máquinas diferentes: HP e Acer Notebooks.

Exatamente os mesmos resultados e nenhuma informação sobre o problema na Web.

O que devo fazer?

    
por NoBullsh1t 10.08.2017 / 23:31

2 respostas

0

Quando você reinicia a interface de rede, o gerenciador de rede recarrega a configuração padrão armazenada em / etc / network / interfaces. No Ubuntu, esta é a maneira padrão de alterar temporariamente o endereço MAC:

/etc/init.d/networking stop
ifconfig wlp2s0 hw ether 02:01:02:03:04:08
/etc/init.d/networking start 

Se você quiser adicioná-lo permanentemente, adicione-o a / etc / network / interfaces:

iface wlp2s0 inet static
address 10.0.0.100
netmask 255.255.255.0
gateway 10.0.0.1
hwaddress ether 02:01:02:03:04:08
    
por 11.08.2017 / 00:08
0

Este askubuntu Q & A sugere que os seguintes comandos sejam executados no Ubuntu:

sudo ifconfig wlan0 down
sudo macchanger -a wlan0
sudo ifconfig wlan0 up
    
por 13.08.2017 / 15:30