Hack insecure wifi spots by OSX: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 8: Line 8:
# ? (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!]

Revision as of 02:20, 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:"

References