Commit f053075

bryfry <bryon@fryer.io>
2016-10-14 14:38:58
add ssh lab updates
1 parent 242ebf3
Changed files (2)
ssh-ftw/README.md
@@ -59,3 +59,8 @@
  > 0. What IP addresses are assigned to the this location?
  > 0. What are the names of these interfaces?
 
+## Port Scanning: Basic
+
+0. From the (T1) target location launch a port scan against the third host `10.0.0.3`
+0. Create a local ssh port forward (from your mac) to this location
+0. Connect to the forwarded port with your browser
ssh-ftw/solutions.md
@@ -0,0 +1,5 @@
+
+```
+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
+```