Getting IP address information in Powershell 5.1.

Getting information about your IP address is easy in Powershell. Below is a simple example, this is printing information about the IP addresses on the system. PS C:\Users\Jim\Pictures\Saved Pictures> Get-NetIPAddress |Select-Object IPAddress   IPAddress ——— fec0::6155:1c09:8069:d506%1 fe80::6155:1c09:8069:d506%7 ::1 10.0.2.15 127.0.0.1PS C:\Users\Jim\Pictures\Saved Pictures> Get-NetIPAddress |Select-Object IPAddress IPAddress ——— fec0::6155:1c09:8069:d506%1 fe80::6155:1c09:8069:d506%7 ::1 10.0.2.15 127.0.0.1 This is a … Read more

How to get a listing of all email addresses associated with a Github repo.

Getting a listing of all email addresses attached to a Git repo is very easy, this simple command will do this simply. Just use Git to clone the repo to a folder, then run this command to see all emails. ┌──[[email protected]]─[~/Documents/sysinfo] └──╼ (master) ╼ $ git log "–format=format:%ae" | sort -u | sed ‘/noreply/d’ | … Read more

How to filter the server name from SSL client hello packets with Wireshark.

SSL packets sent to and fro from your machine can contain a lot of useful information. I am going to show how to see what websites are visited on a network. Firstly, load Wireshark and then listen to traffic on your machine. Then visit a few different websites with Firefox or Chrome. Use this filter … Read more

Iron Man 3 computer portrayal and the use of IP addresses in the movie.

The Iron man 3 movie shows Tony Stark using a computer with IP addresses that have numbers greater than 255. This is not possible; the largest number you can have is 255.255.255.0 There is another scene where he is using Speedtest.net. This is a strange thing for a defense login screen to have. The main … Read more