hw3 progress

This commit is contained in:
David Westgate 2024-05-09 18:33:31 -07:00
parent 3368b92fd8
commit 4cda1ad869
6 changed files with 19 additions and 0 deletions

View File

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

BIN
hw3/nmap.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

BIN
hw3/nmtui-connect.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

BIN
hw3/nmtui-connected.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
hw3/subnet.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB