wifi

So there is the Hak5 LanTutle which is a great bit of kit. However I feel it is severely limited by the lack of onboard WiFi. The same for Mubix‘s post ‘Snagging Creds from locked machines…

First off, buy yourself an PiZeroW. You’ll also need a MicroSD card and something to read/write it.

Download latest image of raspbian lite and copy it to the MicroSD

1sudo dd… Continue reading

So I travel around and this year I was at BSidesLV and Defcon23 which are dodgy places to use wifi.

I always connect to my VPN endpoint so that all my traffic leaves my devices over a secure tunnel. However, the biggest flaw with the inbuilt Apple VPN client is that it won’t auto reestablish the VPN session if it dies or you wake the laptop from sleep. The wifi… Continue reading

So this entire post is inspired by Joshua Wright @ willhackforsushi.com. If you dont know the story; basically his neighbours were stealing his wifi so he thought it wuld be a good idea to mess with them.

He created a VM that broadcasts an open SSID and performs MitM ‘attacks’ against the clients. The pdf of the slides is well worth a read as that is where this idea… Continue reading

So we’ve all been lucky enough to have free wifi from time to time. Sometimes coffee shops offer free access. Recently in Tallinn, Estonia nearly everywhere I went I had access to free wifi. It got me thinking, all this free wifi and should I trust any of it? I knew how easy it was to set up an open wireless access point named “FreeWiFi”, but what if I wanted… Continue reading

I have wrote an automated WPA cracking script (matts-wpacrack.sh). Let me know if you have any improvements.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140#!/bin/bash # wpacrack.sh v.1.1 # Create by Matthew Phillips # New versions can be downloaded from www.phillips321.co.uk # VERSION="1.1" # This tool requires aircrack-ng tools to be installed and run as root # # ChangeLog.... # Version 1.1 - Randomises MAC Address on start # Version 1.0 - First Release ################################################################# # CHECKING… Continue reading