Network Security Tutorial
Network Security Tutorial
This tutorial introduces you to several types of network vulnerabilities and attacks followed
by the description of security measures employed against them. It describes the
functioning of most common security protocols employed at different networking layers
right from application to data link layer. After going through this tutorial, you will find
yourself at an intermediate level of knowledge regarding network security.
Audience
This tutorial is prepared for beginners to help them understand the basics of network
security. The ones who are keen on taking up career in the field of Information and
Network security, this tutorial is extremely useful. For all other readers, this tutorial is a
good learning material.
Prerequisites
We assume the reader has a basic understanding of computer networking and
cryptography. Knowledge about communication protocols is a plus.
All the content and graphics published in this e-book are the property of Tutorials Point (I)
Pvt. Ltd. The user of this e-book is prohibited to reuse, retain, copy, distribute or republish
any contents or a part of contents of this e-book in any manner without written consent
of the publisher.
We strive to update the contents of our website and tutorials as timely and as precisely as
possible, however, the contents may contain inaccuracies or errors. Tutorials Point (I) Pvt.
Ltd. provides no guarantee regarding the accuracy, timeliness or completeness of our
website or its contents including this tutorial. If you discover any errors on our website or
in this tutorial, please notify us at [email protected].
i
Network Security
Table of Contents
About the Tutorial .................................................................................................................................... i
Audience .................................................................................................................................................. i
Prerequisites ............................................................................................................................................ i
PGP ....................................................................................................................................................... 13
S / MIME ............................................................................................................................................... 15
Summary ............................................................................................................................................... 18
Summary ............................................................................................................................................... 32
ii
Network Security
Summary ............................................................................................................................................... 47
Summary ............................................................................................................................................... 57
iii
Network Security
Summary ............................................................................................................................................... 69
iv
1. Network Security — Overview Network Security
In this modern era, organizations greatly rely on computer networks to share information
throughout the organization in an efficient and productive manner. Organizational
computer networks are now becoming large and ubiquitous. Assuming that each staff
member has a dedicated workstation, a large scale company would have few thousands
workstations and many server on the network.
It is likely that these workstations may not be centrally managed, nor would they have
perimeter protection. They may have a variety of operating systems, hardware, software,
and protocols, with different level of cyber awareness among users. Now imagine, these
thousands of workstations on company network are directly connected to the Internet.
This sort of unsecured network becomes a target for an attack which holds valuable
information and displays vulnerabilities.
In this chapter, we describe the major vulnerabilities of the network and significance of
network security. In subsequent chapters, we will discuss the methods to achieve the
same.
Physical Network
A network is defined as two or more computing devices connected together for sharing
resources efficiently. Further, connecting two or more networks together is known as
internetworking. Thus, the Internet is just an internetwork – a collection of
interconnected networks.
For setting up its internal network, an organization has various options. It can use a wired
network or a wireless network to connect all workstations. Nowadays, organizations are
mostly using a combination of both wired and wireless networks.
1
Network Security
Wireless networks have gained popularity due to the mobility offered by them. Mobile
devices need not be tied to a cable and can roam freely within the wireless network range.
This ensures efficient information sharing and boosts productivity.
After accessing, an attacker can exploit this vulnerability to launch attacks such as:
Spoofing physical identities (MAC) of legitimate hosts and then stealing data or
further launching a ‘man-in-the-middle’ attack.
Network Protocol
Network Protocol is a set of rules that govern communications between devices connected
on a network. They include mechanisms for making connections, as well as formatting
rules for data packaging for messages sent and received.
2
Network Security
Several computer network protocols have been developed each designed for specific
purposes. The popular and widely used protocols are TCP/IP with associated higher- and
lower-level protocols.
TCP/IP Protocol
Transmission Control Protocol (TCP) and Internet Protocol (IP) are two distinct
computer network protocols mostly used together. Due to their popularity and wide
adoption, they are built in all operating systems of networked devices.
IP corresponds to the Network layer (Layer 3) whereas TCP corresponds to the Transport
layer (Layer 4) in OSI. TCP/IP applies to network communications where the TCP transport
is used to deliver data across IP networks.
TCP/IP protocols are commonly used with other protocols such as HTTP, FTP, SSH at
application layer and Ethernet at the data link/physical layer.
TCP/IP protocol suite was created in 1980 as an internetworking solution with very little
concern for security aspects.
It was developed for a communication in the limited trusted network. However, over a
period, this protocol became the de-facto standard for the unsecured Internet
communication.
HTTP is an application layer protocol in TCP/IP suite used for transfer files that
make up the web pages from the web servers. These transfers are done in plain
3
Network Security
text and an intruder can easily read the data packets exchanged between the server
and a client.
Another HTTP vulnerability is a weak authentication between the client and the web
server during the initializing of the session. This vulnerability can lead to a session
hijacking attack where the attacker steals an HTTP session of the legitimate user.
Apart from the above-mentioned, many other security vulnerabilities exist in the TCP/IP
Protocol family in design as well in its implementation.
Incidentally, in TCP/IP based network communication, if one layer is hacked, the other
layers do not become aware of the hack and the entire communication gets compromised.
Hence, there is need to employ security controls at each layer to ensure foolproof security.
DNS Protocol
Domain Name System (DNS) is used to resolve host domain names to IP addresses.
Network users depend on DNS functionality mainly during browsing the Internet by typing
a URL in the web browser.
In an attack on DNS, an attacker’s aim is to modify a legitimate DNS record so that it gets
resolved to an incorrect IP address. It can direct all traffic for that IP to the wrong
computer. An attacker can either exploit DNS protocol vulnerability or compromise the
DNS server for materializing an attack.
DNS cache poisoning is an attack exploiting a vulnerability found in the DNS protocol.
An attacker may poison the cache by forging a response to a recursive DNS query sent by
a resolver to an authoritative server. Once, the cache of DNS resolver is poisoned, the
host will get directed to a malicious website and may compromise credential information
by communication to this site.
4
Network Security
ICMP Protocol
Internet Control Management Protocol (ICMP) is a basic network management
protocol of the TCP/IP networks. It is used to send error and control messages regarding
the status of networked devices.
ICMP is an integral part of the IP network implementation and thus is present in very
network setup. ICMP has its own vulnerabilities and can be abused to launch an attack on
a network.
The common attacks that can occur on a network due to ICMP vulnerabilities are:
Trace route is a popular ICMP utility that is used to map target networking by
describing the path in real-time from the client to the remote host.
An attacker can launch a denial of service attack using the ICMP vulnerability. This
attack involves sending IPMP ping packets that exceeds 65,535 bytes to the target
device. The target computer fails to handle this packet properly and can cause the
operating system to crush.
Other protocols such as ARP, DHCP, SMTP, etc. also have their vulnerabilities that can be
exploited by the attacker to compromise the network security. We will discuss some of
these vulnerabilities in later chapters.
The least concern for the security aspect during design and implementation of protocols
has turned into a main cause of threats to the network security.
5
Network Security
Network security is not only concerned about the security of the computers at each end of
the communication chain; however, it aims to ensure that the entire network is secure.
Network security entails protecting the usability, reliability, integrity, and safety of network
and data. Effective network security defeats a variety of threats from entering or spreading
on a network.
The primary goal of network security are Confidentiality, Integrity, and Availability. These
three pillars of Network Security are often represented as CIA triangle.
Integrity. This goal means maintaining and assuring the accuracy and consistency
of data. The function of integrity is to make sure that the data is reliable and is not
changed by unauthorized persons.
Access control. This mechanism is used to provide access control services. These
mechanisms may use the identification and authentication of an entity to determine
and enforce the access rights of the entity.
Having developed and identified various security mechanisms for achieving network
security, it is essential to decide where to apply them; both physically (at what location)
and logically (at what layer of an architecture such as TCP/IP).
6
Network Security
Network Layer – Security measures at this layer can be applied to all applications;
thus, they are not application-specific. All network communications between two
hosts or networks can be protected at this layer without modifying any application.
In some environments, network layer security protocol such as Internet Protocol
Security (IPsec) provides a much better solution than transport or application layer
controls because of the difficulties in adding controls to individual applications.
However, security protocols at this layer provides less communication flexibility
that may be required by some applications.
In the following chapters of the tutorial, we will discuss the security mechanisms employed
at different layers of OSI networking architecture for achieving network security.
7
2. Network Security — Application Layer Security Network Security
Various business services are now offered online though client-server applications. The
most popular forms are web application and e-mail. In both applications, the client
communicates to the designated server and obtains services.
While using a service from any server application, the client and server exchange a lot of
information on the underlying intranet or Internet. We are aware of fact that these
information transactions are vulnerable to various attacks.
Network security entails securing data against attacks while it is in transit on a network.
To achieve this goal, many real-time security protocols have been designed. Such protocol
needs to provide at least the following primary objectives:
In this chapter, we will discuss different processes for achieving security for e-mail
communication and associated security protocols. The method for securing DNS is covered
subsequently. In the later chapters, the protocols to achieve web security will be described.
E-mail Security
Nowadays, e-mail has become very widely used network application. Let’s briefly discuss
the e-mail infrastructure before proceeding to know about e-mail security protocols.
E-mail Infrastructure
The simplest way of sending an e-mail would be sending a message directly from the
sender’s machine to the recipient’s machine. In this case, it is essential for both the
machines to be running on the network simultaneously. However, this setup is impractical
as users may occasionally connect their machines to the network.
8
Network Security
Hence, the concept of setting up e-mail servers arrived. In this setup, the mail is sent to
a mail server which is permanently available on the network. When the recipient’s machine
connects to the network, it reads the mail from the mail server.
In general, the e-mail infrastructure consists of a mesh of mail servers, also termed as
Message Transfer Agents (MTAs) and client machines running an e-mail program
comprising of User Agent (UA) and local MTA.
Typically, an e-mail message gets forwarded from its UA, goes through the mesh of MTAs
and finally reaches the UA on the recipient’s machine.
MIME
Basic Internet e-mail standard was written in 1982 and it describes the format of e-mail
message exchanged on the Internet. It mainly supports e-mail message written as text in
basic Roman alphabet.
By 1992, the need was felt to improve the same. Hence, an additional standard
Multipurpose Internet Mail Extensions (MIME) was defined. It is a set of extensions to the
basic Internet E-mail standard. MIME provides an ability to send e-mail using characters
other than those of the basic Roman alphabet such as Cyrillic alphabet (used in Russian),
the Greek alphabet, or even the ideographic characters of Chinese.
Another need fulfilled by MIME is to send non-text contents, such as images or video clips.
Due to this features, the MIME standard became widely adopted with SMTP for e-mail
communication.
9
Network Security
10