Commit 58c4759
Changed files (1)
ssh-ftw
ssh-ftw/README.md
@@ -12,6 +12,7 @@
> 0. What are the subnets accessible from the vm?
> 0. What IP addresses are assigned to the vm?
+ > 0. What are the names of these interfaces?
0. ssh to the next machine at `10.0.0.3`
@@ -21,6 +22,7 @@
> 0. What are the subnets accessible from this new location?
> 0. What IP addresses are assigned to the this location?
+ > 0. What are the names of these interfaces?
0. Exit back to your macbook bash session (`exit` two times)
@@ -34,15 +36,17 @@
* `MacBook-Pro:~$ ssh ubuntu@localhost -p 2222`
+## IP Scanning: Basic
+0. The next hop in this lab will not be given to you.
+ Create a ping sweep command to discover the next target (T2)
+0. Create a new localhost port forward to reach the (T2) target ssh
+
+ * `MacBook-Pro:~$ ssh ubuntu@localhost -p 2222 -L 2223:<T2 IP>:22`
+ * `MacBook-Pro:~$ ssh ubuntu@localhost -p 2223`
+ > 0. What are the subnets accessible from this new location?
+ > 0. What IP addresses are assigned to the this location?
+ > 0. What are the names of these interfaces?
-
-
-later...
-
-```
-ubuntu@ubuntu:~$ for i in {2..254}; do ping -c 1 -t 1 192.168.1.$i & done
-ubuntu@ubuntu:~$ arp -an | grep -i incomplete
-```