diff --git a/hw3/hw3.md b/hw3/hw3.md index 4572505..9bda160 100644 --- a/hw3/hw3.md +++ b/hw3/hw3.md @@ -11,9 +11,28 @@ ### Crack the password using hashcat and rockyou.txt ### Connect workstation to the wifi network and show using nmtui +Now that I have found the password, I can initiate a wifi connection from `mallory` to the raspberry pi + +The first issue encountered was the the network manager was inactive. This is confirmed by running `systemctl status NetworkManager` + +![network-manager](./network-manager-status.png) + +This was fixed by running `sudo systemctl start NetworkManager` + +Now with `sudo nmtui` I can finally attempt connect to NetSec with the password, `crackme1`. + +![nmtui-connect](./nmtui-connect.png) + +The connection was successfull + +![nmtui-connected](./nmtui-connected.png) ## Scan the network with nmap +I now want to scan the network to identify the router, and devices connected to the router. A quick check with `iwconfig` and looking at the `wlan0` interface shows that as a client of this router, we are in the subnet `192.168.0.0/24` +![subnet](./subnet.png) +Now running `sudo nmap -sn 192.168.0.0/24` (a simple ping scan) we have some interesting results. +![nmap](./nmap.png) ### Open ports and services on client 1 ### Open ports and services on client 2 diff --git a/hw3/network-manager-status.png b/hw3/network-manager-status.png new file mode 100644 index 0000000..ad5894e Binary files /dev/null and b/hw3/network-manager-status.png differ diff --git a/hw3/nmap.png b/hw3/nmap.png new file mode 100644 index 0000000..564a201 Binary files /dev/null and b/hw3/nmap.png differ diff --git a/hw3/nmtui-connect.png b/hw3/nmtui-connect.png new file mode 100644 index 0000000..2c5a536 Binary files /dev/null and b/hw3/nmtui-connect.png differ diff --git a/hw3/nmtui-connected.png b/hw3/nmtui-connected.png new file mode 100644 index 0000000..ed8a5b7 Binary files /dev/null and b/hw3/nmtui-connected.png differ diff --git a/hw3/subnet.png b/hw3/subnet.png new file mode 100644 index 0000000..02eb07e Binary files /dev/null and b/hw3/subnet.png differ