Network Security Knowledge Area
Total Page:16
File Type:pdf, Size:1020Kb
Network Security Knowledge Area Prof. Christian Rossow CISPA Helmholtz Center for Information Security Prof. Sanjay Jha University of New South Wales © Crown Copyright, The National Cyber Security Centre 2021. This information is licensed under the Open Government Licence v3.0. To view this licence, visit http://www.nationalarchives.gov.uk/doc/open- government-licence/. When you use this information under the Open Government Licence, you should include the following attribution: CyBOK Network Security Knowledge Area Version 2.0 © Crown Copyright, The National Cyber Security Centre 2021, licensed under the Open Government Licence http://www.nationalarchives.gov.uk/doc/open- government-licence/. The CyBOK project would like to understand how the CyBOK is being used and its uptake. The project would like organisations using, or intending to use, CyBOK for the purposes of education, training, course development, professional development etc. to contact it at [email protected] to let the project know how they are using CyBOK. Security Goals What does it mean to be secure? • Most common security goals: “CIA triad” – Confidentiality: untrusted parties cannot infer sensitive information – Integrity: untrusted parties cannot alter information – Availability: service is accessible by designated users all the time • Additional security goals – Authenticity: recipient can verify that sender is origin of message – Non-Repudiation: anyone can verify that sender is origin of message – Sender/Recipient Anonymity: communication cannot be traced back to sender/recipient, respectively – Further privacy goals in Privacy & Online Rights CyBOK Knowledge Area Attacker Models What attackers are we secure against? • worst case: Dolev-Yao attacker model – Attacker has complete control over the network • Sometimes referred to as person-in-the-middle (PITM) attacker • read, drop, and inject arbitrary messages • Attacker characterization – Capabilities: Active (can drop & manipulate messages) Passive (can eavesdrop only) – Location: On-path (placed between communicating parties) Off-path (cannot see direct communication) – Trust: Insider (part of trusted domain) Outsider (outside of trusted domain) – Resources: Individual Internet user, rogue ISP, state actor, ... Networking Applications Networking Applications Local Area Networks (LANs) • Local Area Networks (LANs) connect systems within an internal environment • Local does not imply trustworthy or secure (typical fallacy!) – Without further measures, all LAN clients can access each other • Internal services can be exposed unintentionally – Not all local clients can be trusted • Especially in Bring-Your-Own-Device (BYOD) settings • Untrusted clients can expose entire network to the outside world – Attackers may impersonate other (trusted) LAN clients • Hardware addresses (e.g., Ethernet MAC addresses) can be cloned Networking Applications Connected Networks and the Internet • External connections are often necessary, but introduce additional security issues – LAN-to-LAN • join corporate networks across multiple locations • Internal/confidential traffic has to traverse the untrusted Internet – LAN-to-Internet • allow local clients to access the Internet, but expose only selected services to the Internet • The Internet itself is a network of Autonomous Systems (ASs) – ASs can eavesdrop and manipulate traffic passing through their systems – ASs can hijack Internet routes and reroute other systems’ traffic Networking Applications Bus Networks • Cyber-physical systems often use a bus network architecture – Common examples: • Modbus – industrial control systems • Konnex Bus (KNX) – home automation • Controller Area Network (CAN) – vehicular networks • Local networks similar to LANs with additional constraints – Real-time guarantees (e.g., brake systems) – Limited computing resources (cost efficiency) – Shared central bus (all clients can see all messages) – Standardized protocols often predate security best practices Networking Applications Wireless Networks • Wireless LAN conceptually similar to cable-connected LAN • Wireless medium increases attack opportunities – Attacking a cable-connected LAN requires access to cable or network port – Attacking a wireless LAN only requires physical proximity to access points or clients • Requires increased focus on access control and secure communication Networking Applications Fully-Distributed Networks • Fully-distributed networks (peer-to-peer (P2P) networks) provide scalability and resilience by design • Lack of central party or peer authentication introduces new security challenges • Structured P2P: messages follow a routing scheme in overlay – Distributed Hash Tables (e.g., Kademlia, Freenet) – Attacker may attempt to disrupt message routing • Unstructured P2P: use gossip protocols to spread messages – Gossip networks – Attacker may attempt to flood network with uncalled-for data Networking Applications SDN & NFV • Software-Defined Networking (SDN) enables dynamic and efficient network configuration by decoupling – Data Plane (forwarding of network packets) – Control Plane (routing of network packets) • Network Function Virtualization (NFV) allows to virtualize network node functions, e.g., – Virtual load balancers – Virtual firewalls • Both can help to achieve security goals in a network, but also introduce new attack targets (e.g., central controllers) Network Protocols and Their Security Networking Protocols and their Security Server Client Communication Network Application Application Layer Application Transport Transport Layer Transport Internet Inet Layer Internet Internet Inet Layer Internet Link Link Layer Link Link Link Layer Link Physical path traversed by data Logical path traversed by data Network Devices Security at the Application Layer Hypertext Transfer Protocol Secure (HTTPS) • Most prominent application-layer protocol: the Hypertext Transfer Protocol (HTTP) for accessing web content – Provides no security guarantees • HTTP on its own does not provide the following desirable goals: – Confidentiality (only user should see content of webpage, only server should receive inputs from user) – Integrity (content may not be altered in transit in both directions) • Especially relevant for e-commerce and online banking • Can be achieved through the Hypertext Transfer Protocol Secure (HTTPS), which wraps HTTP in a TLS session • See Web & Mobile Security CyBOK Knowledge Area for more details on HTTPS Security at the Application Layer Email and Messaging Security • Emails are sent using the Simple Mail Transfer Protocol (SMTP) – Provides no security guarantees • Desirable security goals – Confidentiality (only recipient may read message) – Integrity (message may not be altered in transfer) • Mechanisms to achieve end-to-end security – Pretty Good Privacy (PGP) and Secure Multipurpose Internet Mail Extensions (S/MIME) – Assign private/public keypair to both parties and • Encrypt message under recipient’s public key (-> confidentiality) • Sign (hash of) message using sender’s private key (-> integrity) Security at the Application Layer DNS Security • Domain Name System (DNS) translates domain names to IP addresses • DNS provides no Authenticity or Integrity • An attacker can divert traffic for a domain to its own servers by – Impersonating a resolver and returning bogus DNS records – Forging responses from an authoritative server and poison a resolver’s DNS cache • DNS Security Extensions (DNSSEC) allow authoritative NSs to sign DNS records with a private key – Clients can check authenticity and integrity of records Security at the Application Layer DNS Security • DNS provides no Confidentiality • DNS queries and responses are sent in plaintext – eavesdroppers can learn which domains a client resolves/visits • Still holds true with DNSSEC • Solved by DNS over TLS (DoT) and DNS over HTTPS (DoH) – Wrap DNS communication in a secure channel (TLS or HTTPS) – DoH enabled by default in modern Web browsers • Unfortunately leads to a massive centralization of resolvers – Can be alleviated by adding trusted proxies between DNS clients and their resolvers (Oblivious DoH, ODoH) Security at the Application Layer Distributed Hash Table (DHT) Security • De-facto standard for structured Peer-to-Peer (P2P) networks • Building block for many distributed systems • Two main attacks: – Eclipse attack: Poison routing tables to isolate target nodes from the rest of the network – Sybil attack: Inject large number of (attacker-controlled) nodes to subvert protocol redundancy • Current countermeasures reduce generality/introduce central component • Still active field of research • See Distributed Systems Security CyBOK Knowledge Area for more details Security at the Application Layer Anonymous Communication • The Onion Router (Tor) is the de facto standard of Anonymous Communication Networks (ACNs) 1. Select three nodes: entry, middle, exit 2. Create end-to-end encrypted channel with next node via channel with previous node 3. Connect to server via resulting circuit • Sender Anonymity – Only entry node knows client, only exit node knows server – Onion services also achieve Recipient Anonymity (using 2 circuits) • Not fully immune against powerful adversaries – Traffic correlation between entry & exit node can leak endpoints – Packet sizes/timing can leak visited website Security at the Transport Layer TLS (Transport Layer Security) • Provide general confidentiality, integrity, and authentication mechanisms for application-layer protocols via a shim layer between the application and