Assignments of day 1 in week #2
Detection of stealth and decoy port scans
Last Updated : Monday, 03-Jun-2002 11:12:42 HKT
-
tcpdump a normal open port network connection
- tcpdump a finger port
tcpdump port finger
- Open another window to ssh your partner host and
issue the command
finger @your_host
- Post the dump result on your web page and list the flags sequence of
these dump packets. These flags are some combination
of S (SYN), F (FIN), P (PUSH) or R (RST) or a single `.' (no flags).
- tcpdump a normal close port network connection
- tcpdump a pop3 port
tcpdump port 110
- Open another window to ssh your partner host and
issue the command
telnet your_host 110
- Post the dump result on your web page and list the flags sequence of
these dump packets. These flags are some combination
of S (SYN), F (FIN), P (PUSH) or R (RST) or a single `.' (no flags).
- Identify the different network response of your host between a close and
open port. Post your finding on your web page
- tcpdump a TCP connect () scan of an open port
- tcpdump a finger port connection
tcpdump port 79
- Open another window to ssh your partner host and
issue the command
/usr/local2/bin/nmap -p 79 your_host
- Post the dump result on your web page and list the flags sequence of
these dump packets. These flags are some combination
of S (SYN), F (FIN), P (PUSH) or R (RST) or a single `.' (no flags).
- Identify the different between a normal
finger port network connection and a TCP connect() scan network connection.
Post your finding on your web page
- tcpdump a TCP connect () scan of an close port
- tcpdump a pop3 port connection
tcpdump port 110
- Open another window to ssh your partner host and
issue the command
/usr/local2/bin/nmap -p 110 your_host
- Post the dump result on your web page and list the flags sequence of
these dump packets. These flags are some combination
of S (SYN), F (FIN), P (PUSH) or R (RST) or a single `.' (no flags).
- Identify the difference between a normal
close port network connection and its a TCP connect() scan network connection.
Post your finding on your web page
- Identify stealth port scan
- tcpdump the open port 79 and a close port 110 at your host
tcpdump port 79 or 110
- Ask your partner to issue the following commands as root at his/her host
/usr/local2/bin/nmap -sS -p 79,110 your_host
/usr/local2/bin/nmap -sF -p 79,110 your_host
/usr/local2/bin/nmap -sN -p 79,110 your_host
/usr/local2/bin/nmap -sX -p 79,110 your_host
- Post the dump result on your web page and list the flags sequence of
these dump packets. These flags are some combination
of S (SYN), F (FIN), P (PUSH) or R (RST) or a single `.' (no flags).
- Identify the difference among these stealth scans.
Post your finding on your web page
- Identify decoy port scan
- tcpdump the open port 79 at your host
tcpdump -ev port 79
- Ask your partner to issue the following commands as root at his/her host
/usr/local2/bin/nmap -Dntec1,ntec4 -sF -p 79 your_host
- Post the dump result on your web page and identify if the TTL of these
packets have the same value.
References: