Top Banner
Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian
47

Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Aug 03, 2020

Download

Documents

dariahiddleston
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Network Security (protocols)

NYIT — Summer 2016 Pooya Jaferian

Page 2: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Networking Basics

Page 3: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Transmission Control Protocol / Internet

Protocol

Page 4: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

TCP Protocol Stack

Application

Transport

Network

Link

Application protocol

TCP protocol

IP protocol

Data Link

IPNetwork Access

IP protocol

Data Link

Application

Transport

Network

Link

Page 5: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Data Formats

Application

Transport (TCP, UDP)

Network (IP)

Link Layer

Application message - data

TCP data TCP data TCP data

TCP Header

dataTCPIP

IP Header

dataTCPIPETH ETF

Link (Ethernet) Header

Link (Ethernet) Trailer

segment

packet

frame

message

Page 6: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

IP Protocol

• Routes information across network

• Provides addressing scheme

• Delivers packets from source to destination

• Serves as network layer protocol

Page 7: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

IP Address

192.168.1.10

Page 8: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Internet Protocol (IP)

Connectionless ■ Unreliable ■ Best effort

Notes: ■ src and dest ports not parts

of IP hdr

Version Header LengthType of Service

Total LengthIdentification

Flags

Time to LiveProtocol

Header Checksum

Source Address of Originating Host

Destination Address of Target Host

Options

Padding

IP Data

Fragment Offset

Page 9: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

IP Routing

Typical route uses several hops

IP: no ordering or delivery guarantees

Alice

Bob

ISP

Office gateway

121.42.33.12132.14.11.51

SourceDestination

Packet

121.42.33.12

121.42.33.1

132.14.11.51

132.14.11.1

Page 10: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

IP Protocol Functions (Summary)

Routing ■ IP host knows location of router (gateway) ■ IP gateway must know route to other networks

Fragmentation and reassembly ■ If max-packet-size less than the user-data-size

Error reporting ■ ICMP packet to source if packet is dropped

TTL field: decremented after every hop ■ Packet dropped if TTL=0. Prevents infinite loops.

Page 11: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Problem: no src IP authentication

Client is trusted to embed correct source IP ■ Easy to override using raw sockets ■ Libnet: a library for formatting raw packets with

arbitrary IP headers

Anyone who owns their machine can send packets with arbitrary source IP ▪ … response will be sent back to forged source IP

▪ Implications: (more in DDoS lecture … ) ▪ Anonymous DoS attacks; ▪ Anonymous infection attacks (e.g. slammer worm)

Page 12: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Transmission Control Protocol (TCP)

Connection-oriented, guaranteed delivery, preserves order ■ Sender

⬥ Break data into packets ⬥ Attach packet numbers

■ Receiver ⬥ Acknowledge receipt; lost packets are resent ⬥ Reassemble packets in correct order

Book Mail each page Reassemble book

19

5

1

1 1

Page 13: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

TCP Ports• 16 bits

• 0-1023: well-known ports ( web server, email, …)

• 1024-49151: registered ports ( for app vendors )

• 49151 ~ … dynamic ports

• Examples: FTP (21), SSH (22), RDP (3389), HTTP (80), HTTPS (443) …

Page 14: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

TCP Header (protocol=6)

Source Port Dest portSEQ NumberACK Number

Other stuff

U R G

P S R

A C K

P S H

S Y N

F I N

TCP Header

Page 15: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Review: TCP HandshakeC S

SYN:

SYN/ACK:

ACK:

Listening

Store SNC , SNS

Wait

Established

SNC⟵randC

SNS⟵randS ANS⟵SNC

SN⟵SNC+1 AN⟵SNS

Received packets with SN too far out of window are dropped

Page 16: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Basic Security Problems1. Network packets pass by untrusted hosts ■ Eavesdropping, packet sniffing ■ Especially easy when attacker controls a

machine close to victim (e.g. WiFi routers)

2. TCP state easily obtained by eavesdropping ■ Enables spoofing and session hijacking

3. Denial of Service (DoS) vulnerabilities ■ DDoS lecture

Page 17: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Why random initial sequence numbers? Suppose initial seq. numbers (SNC , SNS ) are predictable:

■ Attacker can create TCP session on behalf of forged source IP ■ Breaks IP-based authentication (e.g. SPF, /etc/hosts )

⬥ Random seq. num. do not prevent attack, but make it harder

Victim

Server

SYN/ACKdstIP=victim

SN=server SNSACK srcIP=victim AN=predicted SNS

command server thinks command is from victim IP addr

attacker

TCP SYNsrcIP=victim

Page 18: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Example DoS vulnerability: TCP Reset

Attacker sends a Reset packet to an open socket ■ If correct SNS then connection will close ⇒ DoS

■ Naively, success prob. is 1/232 (32-bit seq. #’s). ⬥ … but, many systems allow for a large window of

acceptable seq. #‘s. Much higher success probability.

■ Attacker can flood with RST packets until one works

Most effective against long lived connections

Page 19: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Domain Name Systemsee:

http://unixwiz.net/techtips/iguide-kaminsky-dns-vuln.html

Page 20: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Domain Name SystemHierarchical Name Space

root

edunetorg ukcom ca

sfu ubc ubc bcit uvic

cs ee

www

Page 21: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

DNS Root Name Servers

Hierarchical service ■ Root name servers for top-level

domains ■ Authoritative name servers for

subdomains ■ Local name resolvers contact

authoritative servers when they do not know a name

Page 22: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

DNS Lookup Example

Client Local DNS resolver

root & edu DNS server

nyit.edu DNS server

www.van.nyit.edu

NS nyit.eduwww.van.nyit.edu

NS van.nyit.edu

A www=IPaddrvan.nyit.edu DNS serverDNS record types (partial list):

- NS: name server (points to other server) - A: address record (contains IP address) - MX: address in charge of handling email - TXT: generic text (e.g. used to distribute site public keys (DKIM) )

Page 23: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

CachingDNS responses are cached ■ Quick response for repeated translations ■ Note: NS records for domains also cached

DNS negative queries are cached ■ Save time for nonexistent sites, e.g. misspelling

Cached data periodically times out ■ Lifetime (TTL) of data controlled by owner of data ■ TTL passed with every record

Page 24: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

DNS Packet

Query ID: ■ 16 bit random value ■ Links response to query

(from Steve Friedl)

Page 25: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Resolver to NS request

Page 26: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Response to resolver

Response contains IP addr of next NS server (called “glue”)

Response ignored if unrecognized QueryID

Page 27: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Authoritative response to resolver

final answer

bailiwick checking: response is cached if it is within the same domain of query (i.e. a.com cannot set NS for b.com)

Page 28: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Basic DNS VulnerabilitiesUsers/hosts trust the host-address mapping provided by DNS: ■ Used as basis for many security policies: Browser same origin policy, URL address bar

Obvious problems ■ Interception of requests or compromise of DNS servers can

result in incorrect or malicious responses ⬥ e.g.: malicious access point in a Cafe

■ Solution – authenticated requests/responses ⬥ Provided by DNSsec … but few use DNSsec

Page 29: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

DNS cache poisoning (a la Kaminsky’08)

Victim machine visits attacker’s web site, downloads Javascript

userbrowser

localDNS

resolver

Query: a.bank.com

a.bank.com QID=x1

attackerattacker wins if ∃j: x1 = yj response is cached and attacker owns bank.com

.comresponse

256 responses: Random QID y1, y2, … NS bank.com=ns.bank.com A ns.bank.com=attackerIP

Page 30: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

If at first you don’t succeed

Victim machine visits attacker’s web site, downloads Javascript

userbrowser

localDNS

resolver

Query: a.bank.com

a.bank.com QID=x1

attackerattacker wins if ∃j: x1 = yj response is cached and attacker owns bank.com

.comresponse

Random QID y1, y2, … NS bank.com=ns.bank.com A ns.bank.com=attackerIP

success after ≈ 256 tries (few minutes)

Page 31: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Defenses• Increase Query ID size. How?

• Randomize src port, additional 11 bits ⬥ Now attack takes several hours

• Ask every DNS query twice: ■ Attacker has to guess QueryID correctly twice (32

bits) ■ … but Apparently DNS system cannot handle the

load

Page 32: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

DNS Rebinding Attack

Page 33: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Firewall

www.evil.com web server

171.64.7.115

www.evil.com?

corporate web server

171.64.7.115 TTL = 0

<iframe src="http://www.evil.com">

192.168.0.100

192.168.0.100 ns.evil.com DNS server

xhr evil.com

www.evil.com?

Page 34: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

DNS Rebinding DefensesBrowser mitigation: DNS Pinning ■ Refuse to switch to a new IP ■ Interacts poorly with proxies, VPN, dynamic DNS, … ■ Not consistently implemented in any browser ■ Attacker can circumvent it

Server-side defenses ■ Check Host header for unrecognized domains ■ Authenticate users with something other than IP

Firewall defenses ■ OpenDNS ■ External names can’t resolve to internal addresses ■ Protects browsers inside the organization

Page 35: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

OpenDNS

Client OpenDNS

root & edu DNS server

nyit.edu DNS server

www.van.nyit.edu

van.nyit.edu DNS server

Page 36: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Where we are …

• Network (IP spoofing )

• Transport ( TCP sequence guessing and reset )

• Application ( DNS cache poisoning and rebinding )

Page 37: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Layer 2 Security

Page 38: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

ARP

• Address Resolution Protocol

• Network layer address —> link layer address

• Bounded to a single network ( no routing … )

Page 39: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

How ARP works ?

10.0.2.10 10.0.2.20

?

A B

AAAA BBBB

Page 40: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

How ARP works ?

10.0.2.10 10.0.2.20

A B

AAAA BBBB

ARP ( Who has ip 10.0.2.10 ? )

ARP ( I have ! MAC Addr: BBBB )

IP MAC

10.0.2.20 BBBB

Page 41: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

ARP Cache Poisoning

10.0.2.10 10.0.2.20

Switch

10.0.2.30

AttackerAAAA BBBB

my IP is 10.0.2.20 my MAC is CCCC

my IP is 10.0.2.10 my MAC is CCCC

Victim Router

IP MAC

10.0.2.20 CCCC

IP MAC

10.0.2.10 CCCCCCCC

Page 42: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Defenses

• Static ARP enteries

• Dynamic ARP Inspection

• Tools such as arpwatch

Page 43: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

DHCP Spoofing

Victim DHCP ServerCan someone offer me an IP

10.0.0.2 Default gateway: 10.0.0.1

Switch

Page 44: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

DHCP Spoofing

Victim DHCP ServerCan someone offer me an IP

10.0.0.2 Default gateway: 10.0.0.15

Attacker10.0.0.15

10.0.0.2 Default gateway: 10.0.0.1

Switch

Page 45: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

DNS Snooping

• Layer 2 security technology

• Can be enabled on the switches

• Defines trusted DHCP servers

• Can also defend against ARP cache poisoning

Page 46: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Demo

Page 47: Network Security (protocols) - Jaferianjaferian.com/nyit/network-protocol-sec.pdf · Network Security (protocols) NYIT — Summer 2016 Pooya Jaferian. Networking Basics. Transmission

Summary

Core protocols not designed for security ■ Eavesdropping, Packet injection,

DNS poisoning, DHCP spoofing ■ Patched over time to prevent basic attacks

■ More secure variants are under development such as IPSec but hasn’t been widely adopted yet