Chapter 8 v8.1
Chapter 8 v8.1
Security
A note on the use of these PowerPoint slides:
We’re making these slides freely available to all (faculty, students,
readers). They’re in PowerPoint form so you see the animations; and
can add, modify, and delete slides (including this one) and slide content
to suit your needs. They obviously represent a lot of work on our part.
In return for use, we only ask the following:
If you use these slides (e.g., in a class) that you mention their source
(after all, we’d like people to use our book!)
If you post any slides on a www site, that you note that they are
adapted from (or perhaps identical to) our slides, and note our
copyright of this material.
Computer Networking: A
For a revision history, see the slide note for this page.
Top-Down Approach
Thanks and enjoy! JFK/KWR 8th edition
Jim Kurose, Keith Ross
All material copyright 1996-2023
J.F Kurose and K.W. Ross, All Rights Reserved Pearson, 2020
Security: overview
Chapter goals:
understand principles of network security:
• cryptography and its many uses beyond “confidentiality”
• authentication
• message integrity
security in practice:
• firewalls and intrusion detection systems
• security in application, transport, network, link layers
Security: 8- 2
Chapter 8 outline
What is network security?
Principles of cryptography
Message integrity, authentication
Securing e-mail
Securing TCP connections: TLS
Network layer security: IPsec
Security in wireless and mobile networks
Operational security: firewalls and IDS
Security: 8- 3
What is network security?
confidentiality: only sender, intended receiver should “understand”
message contents
• sender encrypts message
• receiver decrypts message
authentication: sender, receiver want to confirm identity of each
other
message integrity: sender, receiver want to ensure message not
altered (in transit, or afterwards) without detection
access and availability: services must be accessible and available to
users
Security: 8- 4
Friends and enemies: Alice, Bob, Trudy
well-known in network security world
Bob, Alice (lovers!) want to communicate “securely”
Trudy (intruder) may intercept, delete, add messages
secure secure
data data
sender receiver
Trudy
Security: 8- 5
Friends and enemies: Alice, Bob, Trudy
Who might Bob and Alice be?
… well, real-life Bobs and Alices!
Web browser/server for electronic transactions (e.g., on-line purchases)
on-line banking client/server
DNS servers
BGP routers exchanging routing table updates
other examples?
There are bad guys (and girls) out there!
Q: What can a “bad guy” do?
A: A lot! (recall section 1.6)
• eavesdrop: intercept messages
• actively insert messages into connection
• impersonation: can fake (spoof) source address in packet (or any
field in packet)
• hijacking: “take over” ongoing connection by removing sender or
receiver, inserting himself in place
• denial of service: prevent service from being used by others (e.g.,
by overloading resources)
Chapter 8 outline
What is network security?
Principles of cryptography
Message integrity, authentication
Securing e-mail
Securing TCP connections: TLS
Network layer security: IPsec
Security in wireless and mobile networks
Operational security: firewalls and IDS
Security: 8- 8
The language of cryptography
Alice’s Bob’s
KA encryption KB decryption
key key
plaintext encryption ciphertext decryption plaintext
algorithm algorithm
m: plaintext message
KA(m): ciphertext, encrypted with key KA
m = KB(KA(m))
Security: 8- 9
Breaking an encryption scheme
cipher-text only attack: known-plaintext attack:
Trudy has ciphertext she Trudy has plaintext
can analyze corresponding to ciphertext
two approaches: • e.g., in monoalphabetic
cipher, Trudy determines
• brute force: search pairings for a,l,i,c,e,b,o,
through all keys
• statistical analysis
chosen-plaintext attack:
Trudy can get ciphertext for
chosen plaintext
Security: 8- 10
Symmetric key cryptography
KS KS
plaintext: abcdefghijklmnopqrstuvwxyz
ciphertext: mnbvcxzasdfghjklpoiuytrewq
Security: 8- 13
Symmetric key crypto: DES
DES: Data Encryption Standard
US encryption standard [NIST 1993]
56-bit symmetric key, 64-bit plaintext input
block cipher with cipher block chaining
how secure is DES?
• DES Challenge: 56-bit-key-encrypted phrase decrypted (brute force) in
less than a day
• no known good analytic attack
making DES more secure:
• 3DES: encrypt 3 times with 3 different keys
Security: 8- 14
AES: Advanced Encryption Standard
symmetric-key NIST standard, replaced DES (Nov 2001)
processes data in 128 bit blocks
128, 192, or 256 bit keys
brute force decryption (try each key) taking 1 sec on DES,
takes 149 trillion years for AES
Security: 8- 15
Public Key Cryptography
symmetric key crypto: public key crypto
requires sender, receiver radically different approach
know shared secret key [Diffie-Hellman76, RSA78]
Q: how to agree on key in sender, receiver do not
first place (particularly if share secret key
never “met”)? public encryption key
known to all
private decryption key
known only to receiver
Security: 8- 16
Public Key Cryptography
+
KB Bob’s public key
-
K Bob’s private key
B
Security: 8- 18
Prerequisite: modular arithmetic
x mod n = remainder of x when divide by n
facts:
[(a mod n) + (b mod n)] mod n = (a+b) mod n
[(a mod n) - (b mod n)] mod n = (a-b) mod n
[(a mod n) * (b mod n)] mod n = (a*b) mod n
thus
(a mod n)d mod n = ad mod n
example: x=14, n=10, d=2:
(x mod n)d mod n = 42 mod 10 = 6
xd = 142 = 196 xd mod 10 = 6
Security: 8- 19
RSA: getting ready
message: just a bit pattern
bit pattern can be uniquely represented by an integer number
thus, encrypting a message is equivalent to encrypting a
number
example:
m= 10010001. This message is uniquely represented by the decimal
number 145.
to encrypt m, we encrypt the corresponding number, which gives a
new number (the ciphertext).
Security: 8- 20
RSA: Creating public/private key pair
1. choose two large prime numbers p, q. (e.g., 1024 bits each)
decrypt:
c cd m = cdmod n
17 481968572106750915091411825223071697 12
Security: 8- 23
Why does RSA work?
must show that cd mod n = m, where c = me mod n
fact: for any x and y: xy mod n = x(y mod z) mod n
• where n= pq and z = (p-1)(q-1)
thus,
cd mod n = (me mod n)d mod n
= med mod n
= m(ed mod z) mod n
= m1 mod n
=m
Security: 8- 24
RSA: another important property
The following property will be very useful later:
- + + -
KB(K (m)) = m = K (K (m))
B B B
Security: 8- 25
- + + -
Why KB(K (m)) = m = K (K (m)) ?
B B B
Security: 8- 26
Why is RSA secure?
suppose you know Bob’s public key (n,e). How hard is it to
determine d?
essentially need to find factors of n without knowing the two
factors p and q
• fact: factoring a big number is hard
Security: 8- 27
RSA in practice: session keys
exponentiation in RSA is computationally intensive
DES is at least 100 times faster than RSA
use public key crypto to establish secure connection, then
establish second key – symmetric session key – for
encrypting data
session key, KS
Bob and Alice use RSA to exchange a symmetric session key KS
once both have KS, they use symmetric key cryptography
Security: 8- 28
Chapter 8 outline
What is network security?
Principles of cryptography
Authentication, message integrity
Securing e-mail
Securing TCP connections: TLS
Network layer security: IPsec
Security in wireless and mobile networks
Operational security: firewalls and IDS
Security: 8- 29
Authentication
Goal: Bob wants Alice to “prove” her identity to him
Protocol ap1.0: Alice says “I am Alice”
Security: 8- 30
Authentication
Goal: Bob wants Alice to “prove” her identity to him
Protocol ap1.0: Alice says “I am Alice”
in a network, Bob
can not “see”
Alice, so Trudy
simply declares
“I am Alice” herself to be Alice
Security: 8- 31
Authentication: another try
Goal: Bob wants Alice to “prove” her identity to him
Protocol ap2.0: Alice says “I am Alice” in an IP packet containing
her source IP address
Alice’s
IP address “I am Alice”
failure scenario??
Security: 8- 32
Authentication: another try
Goal: Bob wants Alice to “prove” her identity to him
Protocol ap2.0: Alice says “I am Alice” in an IP packet containing
her source IP address
Security: 8- 33
Authentication: a third try
Goal: Bob wants Alice to “prove” her identity to him
Protocol ap3.0: Alice says “I am Alice” and sends her secret
password to “prove” it.
Alice’s Alice’s
IP addr password “I am Alice” failure scenario??
Alice’s OK
IP addr
Security: 8- 34
Authentication: a third try
Goal: Bob wants Alice to “prove” her identity to him
Protocol ap3.0: Alice says “I am Alice” and sends her secret
password to “prove” it.
playback attack:
Alice’s Alice’s
IP addr password “I am Alice” Trudy records
Alice’s packet
c e” and later
A li
’s “ I am plays it back to Bob
Aliceword OK
e ’s a ss l ic e’s
Alic ddr p A ddr
P a IPa
I
Security: 8- 35
Authentication: a modified third try
Goal: Bob wants Alice to “prove” her identity to him
Protocol ap3.0: Alice says “I am Alice” and sends her encrypted
secret password to “prove” it.
Alice’s encrypted
IP addr password “I am Alice” failure scenario??
Alice’s OK
IP addr
Security: 8- 36
Authentication: a modified third try
Goal: Bob wants Alice to “prove” her identity to him
Protocol ap3.0: Alice says “I am Alice” and sends her encrypted
secret password to “prove” it.
Alice’s encrypted
IP addr password “I am Alice” playback attack still
works: Trudy records
lic e” Alice’s packet
m A
pte d “ I a and later plays it
e ncry word e’s
OK
e ’s
Alic ddr p
a ss l
A ddric back to Bob
P a IPa
I
Security: 8- 37
Authentication: a fourth try
Goal: avoid playback attack
nonce: number (R) used only once-in-a-lifetime
protocol ap4.0: to prove Alice “live”, Bob sends Alice nonce, R
Alice must return R, encrypted with shared secret key
“I am Alice”
R
KA-B(R) Bob know Alice is live, and
only Alice knows key to
encrypt nonce, so it must
Failures, drawbacks? be Alice!
Security: 8- 38
Authentication: ap5.0
ap4.0 requires shared symmetric key - can we authenticate
using public key techniques?
ap5.0: use nonce, public key cryptography
“I am Alice”
Bob computes
R + -
- K (K (R)) = R
K A (R) A A
and knows only Alice could
Send me your public key have the private key, that
+ encrypted R such that
K A (R) + -
K (K (R)) = R
A A
Security: 8- 39
Authentication: ap5.0 – there’s still a flaw!
man (or woman) in the middle attack: Trudy poses as Alice (to Bob) and
as Bob (to Alice)
I am Alice I am Alice
R
-
?
K T (R)
R Where are Send me your public key
- mistakes +
K (R) KT Bob computes
A made here? + -
Send me your public key K (K T(R)) = R,
+ T
K authenticating
A Trudy as Alice
Trudy recovers m: +
Trudy recovers Bob’s m: - + K (m)
- + + m = K (K (m)) T
Bob sends a personal
m = K (K (m)) K (m) T T message, m to Alice
A A A sends m to Alice
and she and Bob meet a week encrypted with
later in person and discuss m, Alice’s public key
not knowing Trudy knows m
Security: 8- 40
Chapter 8 outline
What is network security?
Principles of cryptography
Authentication, message integrity
Securing e-mail
Securing TCP connections: TLS
Network layer security: IPsec
Security in wireless and mobile networks
Operational security: firewalls and IDS
Security: 8- 41
Digital signatures
cryptographic technique analogous to hand-written signatures:
sender (Bob) digitally signs document: he is document owner/creator.
verifiable, nonforgeable: recipient (Alice) can prove to someone that Bob,
and no one else (including Alice), must have signed document
simple digital signature for message m:
• Bob signs m by encrypting with his private key KB, creating “signed” message, KB-(m)
- Bob’s private -
Bob’s message, m KB m,K B(m)
key
Dear Alice Dear Alice
Oh, how I have missed Oh, how I have missed
you. I think of you all the
Public key you. I think of you all the
time! …(blah blah blah) encryption time! …(blah blah blah)
algorithm -
Bob Bob K B(m)
Security: 8- 42
Digital signatures
-
suppose Alice receives msg m, with signature: m, KB(m)
+ -
Alice verifies m-signed by Bob by applying Bob’s public key KB to KB(m) then
+
checks
+ - K (K (m) ) = m.
B B
Alice can take m, and signature KB(m) to court and prove that Bob signed m
Security: 8- 43
Message digests
computationally expensive to public-key-encrypt long messages
goal: fixed-length, easy- to-compute digital “fingerprint”
apply hash function H to m, get fixed size message digest, H(m)
large
message H: Hash
Function H(m)
m
?
equal
Security: 8- 46
Hash function algorithms
MD5 hash function widely used (RFC 1321)
• computes 128-bit message digest in 4-step process.
• arbitrary 128-bit string x, appears difficult to construct msg m whose
MD5 hash is equal to x
SHA-1 is also used
• US standard [NIST, FIPS PUB 180-1]
• 160-bit message digest
Security: 8- 47
Authentication: ap5.0 – let’s fix it!!
Recall the problem: Trudy poses as Alice (to Bob) and as Bob (to Alice)
I am Alice I am Alice
R
-
?
K T (R)
R Where are Send me your public key
- mistakes +
K (R) KT Bob computes
A made here? + -
Send me your public key K (K T(R)) = R,
+ T
K authenticating
A Trudy as Alice
Trudy recovers m: +
Trudy recovers Bob’s m: - + K (m)
- + + m = K (K (m)) T
Bob sends a personal
m = K (K (m)) K (m) T T message, m to Alice
A A A sends m to Alice
and she and Bob meet a week encrypted with
later in person and discuss m, Alice’s public key
not knowing Trudy knows m
Security: 8- 48
Need for certified public keys
motivation: Trudy plays pizza prank on Bob
• Trudy creates e-mail order:
Dear Pizza Store, Please deliver to me
four pepperoni pizzas. Thank you, Bob
• Trudy signs order with her private key
• Trudy sends order to Pizza Store
• Trudy sends to Pizza Store her public key,
but says it’s Bob’s public key
• Pizza Store verifies signature; then
delivers four pepperoni pizzas to Bob
• Bob doesn’t even like pepperoni
Security: 8- 49
Public key Certification Authorities (CA)
certification authority (CA): binds public key to particular entity, E
entity (person, website, router) registers its public key with CE
provides “proof of identity” to CA
• CA creates certificate binding identity E to E’s public key
• certificate containing E’s public key digitally signed by CA: CA says “this is E’s
public key”
Bob’s digital
public + signature +
key KB (encrypt) KB
CA’s
private
K
- certificate for Bob’s
Bob’s key
identifying
CA public key, signed by CA
information
Security: 8- 50
Public key Certification Authorities (CA)
when Alice wants Bob’s public key:
• gets Bob’s certificate (Bob or elsewhere)
• apply CA’s public key to Bob’s certificate, get Bob’s public key
+
digital Bob’s
KB signature + public
(decrypt) KB key
CA’s
public +
key K CA
Security: 8- 51
Chapter 8 outline
What is network security?
Principles of cryptography
Authentication, message integrity
Securing e-mail
Securing TCP connections: TLS
Network layer security: IPsec
Security in wireless and mobile networks
Operational security: firewalls and IDS
Security: 8- 52
Secure e-mail: confidentiality
Alice wants to send confidential e-mail, m, to Bob.
KS
m K (.)
S
KS(m ) KS(m )
KS( ) . m
+ Internet - KS
KS
+ .
KB ( ) +
KB(KS )
+
KB(KS )
-
.
KB ( )
K+ K-B
Alice: B
m K (.)
S
KS(m ) KS(m )
KS( ) . m
+ Internet - KS
KS
+ .
KB ( ) +
KB(KS )
+
KB(KS )
-
.
KB ( )
K+
B K-B
Bob:
uses his private key to decrypt and
recover KS
uses KS to decrypt KS(m) to recover m
Security: 8- 54
Secure e-mail: integrity, authentication
Alice wants to send m to Bob, with message integrity, authentication
K-A K+
A
- -
m H(.) K (.)
-
A
KA(H(m)) KA(H(m)) + .
KA ( )
H(m )
+ Internet - compare
m H( ). H(m )
m
Alice digitally signs hash of her message with her private key,
providing integrity and authentication
sends both message (in the clear) and digital signature
Security: 8- 55
Secure e-mail: integrity, authentication
Alice sends m to Bob, with confidentiality, message integrity, authentication
K-A confidentiality
-
H(.) K (.)
- KA(H(m))
m KS
A
K (.)
KS(m )
+ S
m + Internet
message integrity, authentication
KS
+
KB ( ). +
KB(KS )
K+
B
Alice uses three keys: her private key, Bob’s public key, new symmetric key
What are Bob’s complementary actions?
Security: 8- 56
Chapter 8 outline
What is network security?
Principles of cryptography
Authentication, message integrity
Securing e-mail
Securing TCP connections: TLS
Network layer security: IPsec
Security in wireless and mobile networks
Operational security: firewalls and IDS
Security: 8- 57
Transport-layer security (TLS)
widely deployed security protocol above the transport layer
• supported by almost all browsers, web servers: https (port 443)
provides:
• confidentiality: via symmetric encryption
all techniques we
• integrity: via cryptographic hashing have studied!
• authentication: via public key cryptography
history:
• early research, implementation: secure network programming, secure sockets
• secure socket layer (SSL) deprecated [2015]
• TLS 1.3: RFC 8846 [2018]
Security: 8- 58
Transport-layer security (TLS)
widely deployed security protocol above the transport layer
• supported by almost all browsers, web servers: https (port 443)
provides:
• confidentiality: via symmetric encryption
all techniques we
• integrity: via cryptographic hashing have studied!
• authentication: via public key cryptography
history:
• early research, implementation: secure network programming, secure sockets
• secure socket layer (SSL) deprecated [2015]
• TLS 1.3: RFC 8846 [2018]
Security: 8- 59
Transport-layer security: what’s needed?
let’s build a toy TLS protocol, t-tls, to see what’s needed!
we’ve seen the “pieces” already:
handshake: Alice, Bob use their certificates, private keys to
authenticate each other, exchange or create shared secret
key derivation: Alice, Bob use shared secret to derive set of keys
data transfer: stream data transfer: data as a series of records
• not just one-time transactions
connection closure: special messages to securely close connection
Security: 8- 60
t-tls: initial handshake
t-tls handshake phase:
Bob establishes TCP connection
TCP SYN with Alice
SYNACK Bob verifies that Alice is really
Alice
ACK
t-tls hello Bob sends Alice a master secret
key (MS), used to generate all
public key certificate
other keys for TLS session
KB+(MS) = EMS potential issues:
client request • 3 RTT before client can start
receiving data (including TCP
server reply handshake)
Security: 8- 61
t-tls: cryptographic keys
considered bad to use same key for more than one cryptographic
function
• different keys for message authentication code (MAC) and encryption
four keys:
Kc : encryption key for data sent from client to server
Mc : MAC key for data sent from client to server
Ks : encryption key for data sent from server to client
Ms : MAC key for data sent from server to client
keys derived from key derivation function (KDF)
• takes master secret and (possibly) some additional random data to
create new keys Security: 8- 62
t-tls: encrypting data
recall: TCP provides data byte stream abstraction
Q: can we encrypt data in-stream as written into TCP socket?
• A: where would MAC go? If at end, no message integrity until all
data received and connection closed!
• solution: break stream in series of “records”
• each client-to-server record carries a MAC, created using Mc
• receiver can act on each record as it arrives
t-tls record encrypted using symmetric key, Kc, passed to TCP:
Security: 8- 64
t-tls: connection close
truncation attack:
• attacker forges TCP connection close segment
• one or both sides thinks there is less data than there actually is
solution: record types, with one type for closure
• type 0 for data; type 1 for close
MAC now computed using data, type, sequence #
Security: 8- 65
Transport-layer security (TLS)
TLS provides an API that any application can use
an HTTP view of TLS:
Network IP IP IP
Security: 8- 66
TLS: 1.3 cipher suite
“cipher suite”: algorithms that can be used for key generation,
encryption, MAC, digital signature
TLS: 1.3 (2018): more limited cipher suite choice than TLS 1.2 (2008)
• only 5 choices, rather than 37 choices
• requires Diffie-Hellman (DH) for key exchange, rather than DH or RSA
• combined encryption and authentication algorithm (“authenticated
encryption”) for data rather than serial encryption, authentication
• 4 based on AES
• HMAC uses SHA (256 or 284) cryptographic hash function
Security: 8- 67
TLS 1.3 handshake: 1 RTT
1 client TLS hello msg:
guesses key agreement
client hello:
protocol, parameters
1 supported cipher suites indicates cipher suites it
DH key agreement supports
protocol, parameters
2 server TLS hello msg chooses
server hello: key agreement protocol,
2
selected cipher suite parameters
DH key agreement
protocol, parameters
cipher suite
3 server-signed certificate
3 client:
checks server certificate
generates key
client server can now make application
request (e.g.., HTTPS GET)
Security: 8- 68
TLS 1.3 handshake: 0 RTT
initial hello message contains
client hello: encrypted application data!
supported cipher suites
DH key agreement • “resuming” earlier connection
protocol, parameters between client and server
application data
• application data encrypted using
server hello:
“resumption master secret”
selected cipher suite from earlier connection
DH key agreement
protocol, parameters vulnerable to replay attacks!
application data (reply)
• maybe OK for get HTTP GET or
client requests not modifying
client server server state
Security: 8- 69
Chapter 8 outline
What is network security?
Principles of cryptography
Authentication, message integrity
Securing e-mail
Securing TCP connections: TLS
Network layer security: IPsec
Security in wireless and mobile networks
Operational security: firewalls and IDS
Security: 8- 70
IP Sec
provides datagram-level encryption, authentication, integrity
• for both user traffic and control traffic (e.g., BGP, DNS messages)
two “modes”: payload
payload
payload
tunnel mode:
transport mode: entire datagram is encrypted,
authenticated
only datagram payload is encrypted datagram encapsulated
encrypted, authenticated in new datagram with new IP
header, tunneled to destination
Security: 8- 71
Two IPsec protocols
Authentication Header (AH) protocol [RFC 4302]
• provides source authentication & data integrity but not confidentiality
Encapsulation Security Protocol (ESP) [RFC 4303]
• provides source authentication, data integrity, and confidentiality
• more widely used than AH
Security: 8- 72
Security associations (SAs)
before sending data, security association (SA) established from
sending to receiving entity (directional)
ending, receiving entitles maintain state information about SA
• recall: TCP endpoints also maintain state info
• IP is connectionless; IPsec is connection-oriented!
200.168.1.100 193.68.2.23
SA
R1 stores for SA:
32-bit identifier: Security Parameter Index (SPI)
origin SA interface (200.168.1.100) encryption key
destination SA interface (193.68.2.23) type of integrity check used
type of encryption used authentication key
Security: 8- 73
IPsec datagram
authenticated
encrypted
new IP ESP original Original IP ESP ESP
header header IP hdr datagram payload trailer auth
tunnel mode
ESP
Seq pad next
SPI padding
# length header
at R1:
R1
appends ESP trailer to original
datagram (which includes original payload
header fields!)
encrypts result using algorithm & key
specified by SA
appends ESP header to front of this
encrypted quantity
creates authentication MAC using
algorithm and key specified in SA
appends MAC forming payload
creates new IP header, new IP header
fields, addresses to tunnel endpoint
Security: 8- 75
IPsec sequence numbers
for new SA, sender initializes seq. # to 0
each time datagram is sent on SA:
• sender increments seq # counter
• places value in seq # field
goal:
• prevent attacker from sniffing and replaying a packet
• receipt of duplicate, authenticated IP packets may disrupt service
method:
• destination checks for duplicates
• doesn’t keep track of all received packets; instead uses a window
Security: 8- 76
IPsec security databases
Security Policy Database (SPD) Security Assoc. Database (SAD)
endpoint holds SA state in security
policy: for given datagram, sender association database (SAD)
needs to know if it should use IP sec when sending IPsec datagram, R1
policy stored in security policy accesses SAD to determine how to
database (SPD) process datagram
when IPsec datagram arrives to R2, R2
needs to know which SA to use examines SPI in IPsec datagram,
• may use: source and destination IP indexes SAD with SPI, processing
address; protocol number datagram accordingly.
Security: 8- 77
Summary: IPsec services
Trudy sits somewhere between R1, R2. she
doesn’t know the keys
• will Trudy be able to see original contents of
datagram? How about source, dest IP address,
transport protocol, application port?
• flip bits without detection?
• masquerade as R1 using R1’s IP address?
• replay a datagram?
Security: 8- 78
IKE: Internet Key Exchange
previous examples: manual establishment of IPsec SAs in IPsec endpoints:
Example SA:
SPI: 12345
Source IP: 200.168.1.100
Dest IP: 193.68.2.23
Protocol: ESP
Encryption algorithm: 3DES-cbc
HMAC algorithm: MD5
Encryption key: 0x7aeaca…
HMAC key:0xc0291f…
manual keying is impractical for VPN with 100s of endpoints
instead use IPsec IKE (Internet Key Exchange)
Security: 8- 79
IKE: PSK and PKI
authentication (prove who you are) with either
• pre-shared secret (PSK) or
• with PKI (pubic/private keys and certificates).
PSK: both sides start with secret
• run IKE to authenticate each other and to generate IPsec SAs (one
in each direction), including encryption, authentication keys
PKI: both sides start with public/private key pair, certificate
• run IKE to authenticate each other, obtain IPsec SAs (one in each
direction).
• similar with handshake in SSL.
Security: 8- 80
IKE phases
IKE has two phases
• phase 1: establish bi-directional IKE SA
• note: IKE SA different from IPsec SA
• aka ISAKMP security association
• phase 2: ISAKMP is used to securely negotiate IPsec pair of SAs
phase 1 has two modes: aggressive mode and main mode
• aggressive mode uses fewer messages
• main mode provides identity protection and is more flexible
Security: 8- 81
IPsec summary
IKE message exchange for algorithms, secret keys, SPI
numbers
either AH or ESP protocol (or both)
• AH provides integrity, source authentication
• ESP protocol (with AH) additionally provides encryption
IPsec peers can be two end systems, two routers/firewalls,
or a router/firewall and an end system
Security: 8- 82
Chapter 8 outline
What is network security?
Principles of cryptography
Authentication, message integrity
Securing e-mail
Securing TCP connections: TLS
Network layer security: IPsec
Security in wireless and mobile networks
• 802.11 (WiFi)
• 4G/5G
Operational security: firewalls and IDS
Security: 8- 83
802.11: authentication, encryption
mobile
AS
wired network Authentication Server
AP
Security: 8- 84
802.11: authentication, encryption
mobile
AS
wired network Authentication Server
AP
discovery of security capabilities
1
Security: 8- 86
802.11: WPA3 handshake
mobile AS Authentication Server
Initial shared secret Initial shared secret
NonceAS
derive session key KM-AP using initial- a
shared-secret, NonceAS, NonceM c derive session key KM-AP using initial
b
shared secret , NonceAS, NonceM
NonceM, HMAC(f(KAS-M,NonceAS))
a AS
generates NonceAS, sends to mobile
b mobile receives Nonce
AS
• generates NonceM
• generates symmetric shared session key KM-AP using NonceAS, NonceM, and
initial shared secret
c
• sends NonceM, and HMAC-signed value using NonceAS and initial shared secret
AS derives symmetric shared session key KM-AP Security: 8- 87
802.11: authentication, encryption
mobile
AS
wired network Authentication Server
AP
discovery of security capabilities
1
mutual authentication, key derivation
2
Shared symmetric key distribution
3
Security: 8- 88
802.11: authentication, encryption
mobile
AS
wired network Authentication Server
AP
discovery of security capabilities
1
mutual authentication, key derivation
2
shared symmetric key distribution
3
encrypted communication over WiFi
4
Security: 8- 89
802.11: authentication, encryption
mobile AS
wired network Authentication Server
AP
EAP TLS
EAP
EAP over LAN (EAPoL) RADIUS
IEEE 802.11 UDP/IP
Security: 8- 90
Chapter 8 outline
What is network security?
Principles of cryptography
Authentication, message integrity
Securing e-mail
Securing TCP connections: TLS
Network layer security: IPsec
Security in wireless and mobile networks
• 802.11 (WiFi)
• 4G/5G
Operational security: firewalls and IDS
Security: 8- 91
Authentication, encryption in 4G LTE
Home Subscriber
Mobility Service (HSS)
mobile Management
Entity (MME)
Security: 8- 94
Authentication, encryption in 4G LTE
Home Subscriber
Mobility Service (HSS)
mobile KBS-M Management
Entity (MME) K HSS-M
KHSS-M Base station (BS) Visited network Home network
Security: 8- 96
Authentication, encryption in 4G LTE
Home Subscriber
Mobility Service (HSS)
mobile KBS-M Management
Entity (MME) K HSS-M
KHSS-M Base station (BS) Visited network Home network
OK, keys
OK d
OK, keys
OK d
key derivation e mobile, BS determine keys for
e encrypting data, control frames over
4G wireless channel
AES can be used
Security: 8- 98
Authentication, encryption: from 4G to 5G
4G: MME in visited network makes authentication decision
5G: home network provides authentication decision
• visited MME plays “middleman” role but can still reject
Security: 8- 99
Chapter 8 outline
What is network security?
Principles of cryptography
Authentication, message integrity
Securing e-mail
Securing TCP connections: TLS
Network layer security: IPsec
Security in wireless and mobile networks
Operational security: firewalls and IDS
Security: 8- 100
Firewalls
firewall
isolates organization’s internal network from larger
Internet, allowing some packets to pass, blocking others
administered public
network Internet
trusted “good guys” untrusted “bad guys”
firewall
Security: 8- 101
Firewalls: why
prevent denial of service attacks:
SYN flooding: attacker establishes many bogus TCP connections, no
resources left for “real” connections
prevent illegal modification/access of internal data
e.g., attacker replaces CIA’s homepage with something else
allow only authorized access to inside network
set of authenticated users/hosts
three types of firewalls:
stateless packet filters
stateful packet filters
application gateways
Security: 8- 102
Stateless packet filtering
Should arriving
packet be allowed
in? Departing
packet let out?
Security: 8- 104
Stateless packet filtering: more examples
Policy Firewall Setting
no outside Web access drop all outgoing packets to any IP
address, port 80
no incoming TCP connections, drop all incoming TCP SYN packets to any
except those for institution’s public IP except 130.207.244.203, port 80
Web server only.
prevent Web-radios from eating up drop all incoming UDP packets - except
the available bandwidth. DNS and router broadcasts.
prevent your network from being drop all ICMP packets going to a
used for a smurf DoS attack. “broadcast” address (e.g.
130.207.255.255)
prevent your network from being drop all outgoing ICMP TTL expired traffic
tracerouted
Security: 8- 105
Access Control Lists
ACL: table of rules, applied top to bottom to incoming packets: (action,
condition) pairs: looks like OpenFlow forwarding (Ch. 4)!
source dest source dest flag
action protocol
address address port port bit
outside of any
allow 222.22/16 TCP > 1023 80
222.22/16
allow outside of 222.22/16
TCP 80 > 1023 ACK
222.22/16
outside of
allow 222.22/16 UDP > 1023 53 ---
222.22/16
allow outside of 222.22/16
UDP 53 > 1023 ----
222.22/16
deny all all all all all all
Security: 8- 106
Stateful packet filtering
stateless packet filter: heavy handed tool
• admits packets that “make no sense,” e.g., dest port = 80, ACK bit set, even though no
TCP connection established:
Security: 8- 107
Stateful packet filtering
ACL augmented to indicate need to check connection state table before
admitting packet
action source dest proto source dest flag check
address address port port bit connection
outside of any
allow 222.22/16 TCP > 1023 80
222.22/16
allow outside of
222.22/16
222.22/16
TCP 80 > 1023 ACK x
outside of
allow 222.22/16 UDP > 1023 53 ---
222.22/16
Security: 8- 108
Application gateways
filter packets on host-to-gateway
telnet session application
application data as well gateway
router and filter
as on IP/TCP/UDP fields.
example: allow select
internal users to telnet gateway-to-remote
host telnet session
outside
Security: 8- 110
Intrusion detection systems
packet filtering:
• operates on TCP/IP headers only
• no correlation check among sessions
IDS: intrusion detection system
• deep packet inspection: look at packet contents (e.g., check character
strings in packet against database of known virus, attack strings)
• examine correlation among multiple packets
• port scanning
• network mapping
• DoS attack
Security: 8- 111
Intrusion detection systems
multiple IDSs: different types of checking at different locations
firewall
internal
network
Internet
Security: 8- 112
Network Security (summary)
basic techniques…...
cryptography (symmetric and public key)
message integrity
end-point authentication
…. used in many different security scenarios
secure email
secure transport (TLS)
IP sec
802.11, 4G/5G
operational security: firewalls and IDS
Security: 8- 113