15
Network Security: Lab#5 Port Scanners and Intrusion Detection System J. H. Wang Jun. 16, 2011

Network Security: Lab#5 Port Scanners and Intrusion Detection System

  • Upload
    hisa

  • View
    49

  • Download
    0

Embed Size (px)

DESCRIPTION

Network Security: Lab#5 Port Scanners and Intrusion Detection System. J. H. Wang Jun. 16, 2011. Objectives. To learn to use port scanners Nmap To introduce the ideas of intrusion detection system Snort. Packages Used in this Lab. Packages Nmap Snort. Experiment Scenario. Port scanners - PowerPoint PPT Presentation

Citation preview

Page 1: Network Security: Lab#5 Port Scanners and Intrusion Detection System

Network Security: Lab#5Port Scanners and Intrusion

Detection SystemJ. H. Wang

Jun. 16, 2011

Page 2: Network Security: Lab#5 Port Scanners and Intrusion Detection System

Objectives

• To learn to use port scanners– Nmap

• To introduce the ideas of intrusion detection system– Snort

Page 3: Network Security: Lab#5 Port Scanners and Intrusion Detection System

Packages Used in this Lab

• Packages– Nmap– Snort

Page 4: Network Security: Lab#5 Port Scanners and Intrusion Detection System

Experiment Scenario

• Port scanners– Use port scanners to check the potential

weakness in a system• Vulnerable ports• System types

Page 5: Network Security: Lab#5 Port Scanners and Intrusion Detection System

Nmap

• Homepage: http://nmap.org/

• Version: – 5.51

• Platforms: Linux/FreeBSD/Windows/MacOS X

• Installation steps– Simply follow the instructions on screen

Page 6: Network Security: Lab#5 Port Scanners and Intrusion Detection System

Example Usage for Nmap

• Enter an IP address (or hostname) in [Target], and press [Scan]– Open ports will be listed– Type of OS will be detected

• Many types of Scans– TCP scan– SYN scan– UDP scan– ACK scan– Window scan– FIN scan– Others: proxy scan, ICMP scan, …

Page 7: Network Security: Lab#5 Port Scanners and Intrusion Detection System

Web-based Port Scanners

• Examples– http://viewdns.info/portscan/

Page 8: Network Security: Lab#5 Port Scanners and Intrusion Detection System

Nessus

• Homepage: http://www.tenable.com/products/nessus

• Latest version: 4.4.1

• Originally open source, but now proprietary by Tenable Network Security– Free to use in homes

• Installation skipped

Page 9: Network Security: Lab#5 Port Scanners and Intrusion Detection System

Intrusion Detection Systems

• Host-based IDS (HIDS)– To monitor the status of files in a system

• File integrity checking, log analysis• E.g. Tripwire, OSSEC

• Network-based IDS (NIDS)– To detect the malicious network traffic such as

DoS attacks• E.g. Snort

Page 10: Network Security: Lab#5 Port Scanners and Intrusion Detection System

Tripwire

• Originally open source, but now commercial

• Open source Tripwire available, which is based on previous open-source versions– http://sf.net/projects/tripwire/

Page 11: Network Security: Lab#5 Port Scanners and Intrusion Detection System

OSSEC

• Originally open source, but acquired by Trend Micro– Will remain to be open source (as claimed by

Trend Micro)– http://www.ossec.net/

Page 12: Network Security: Lab#5 Port Scanners and Intrusion Detection System

Snort

• Homepage: http://www.snort.org/ • Latest version: 2.9.0.5• Platforms:

– Linux/Windows

• An open-source NIDS, which also requires WinPcap

• Installation steps– Simply follow the instructions on screen– Note: In [Installation Options], please check [Enable I

Pv6 support] for demo of IDS functions

Page 13: Network Security: Lab#5 Port Scanners and Intrusion Detection System

Example Usage for Snort

• cd \snort• Sniffer mode: (default)

– To show headers only: bin\snort -v– To show headers and data: bin\snort -vd– A more descriptive display: bin\snort -vde

• Packet logger mode– To records packets in logging directory:

• bin\snort -dev -l log– To log in binary mode

• bin\snort -l log -b– To playback the packets in log

• bin\snort -r packet.log

Page 14: Network Security: Lab#5 Port Scanners and Intrusion Detection System

• Network intrusion detection system mode– bin\snort -l log -c etc\snort.conf– (Some problems with the configuration file to

work in Windows…)– You need to understand how to write the rules

for intrusion detection…

Page 15: Network Security: Lab#5 Port Scanners and Intrusion Detection System

Summary

• Port scanners– Nmap

• Intrusion detection system– Snort