CSE543 - Introduction to Computer and Network Security. Module: Operating System Security
|
|
|
- Dale Holt
- 9 years ago
- Views:
Transcription
1 CSE543 - Introduction to Computer and Network Security Module: Operating System Security Professor Trent Jaeger 1
2 OS Security So, you have built an operating system that enables user-space processes to access hardware resources Thru various abstractions: files, pages, devices, etc. Now, you want your operating system to enforce security requirements for your application processes What do you do? 2
3 OS Security We learned about a few things last time that will hopefully help you Your OS must implement a Protection system Your protection system is enforced by a Reference validation mechanism Which do you tackle first? 3
4 Multiprocessor Systems Major Effort: Multics Multiprocessing system -- developed many OS concepts Including security Begun in 1965 Development continued into the mid-70s Used until 2000 Initial partners: MIT, Bell Labs, GE/Honeywell Other innovations: hierarchical filesystems, dynamic linking Subsequent proprietary system, SCOMP, became the basis for secure operating systems design 4
5 Multics Goals Secrecy Multilevel security Integrity Rings of protection Resulting system is considered a high point in secure system design 5
6 Multics Basics Processes are programs that are executing within Multics (seems obvious now...) Protection domain is a list of segments Stored in the process descriptor segment Segments are stored value regions that are accessible by processes, e.g., memory regions, secondary storage Segments can be organized into hierarchies Local segments (memory addresses) are accessed directly Non-local segments are addressed by hierarchy /tape/drive1/top10k /etc/conf/http.conf This is the genesis of the modern hierarchical filesystem! 6
7 Segment Management PDS acts like segment working set for process Segments are addressed by name (path) If authorized, added to PDS Multics security is defined with respect to segments Segment 0 Segment 1 Segment N Process Descriptor Segment Segment Descr. Word 0 Segment Descr. Word 1... Segment Descr. Word N 7
8 Multics Functionality Not all code executing on Multics (or any OS) is the same Kernel System processes Middleware Important User Processes Untrusted User Processes... Previously, all ran in one protection domain Multics supported multiple address spaces (processes) But, how do you protect one process from another? 8
9 Protection Rings Successively less-privileged domains Modern CPUs support 4 rings Use 2 mainly: Kernel and user Intel x86 rings Ring 0 has kernel Ring 3 has application code Example: Multics (64 rings in theory, 8 in practice) 9
10 What Are Protection Rings? Coarse-grained, Hardware Protection Mechanism Boundary between Levels of Authority Most privileged -- ring 0 Monotonically less privileged above Fundamental Purpose Protect system integrity Protect kernel from services Protect services from apps So on... 10
11 Intel Protection Ring Rules Each Memory Segment has a privilege level (ring number) The CPU has a Current Protection Level (CPL) Level of the segment where instructions are being read Program can read/write in segments of higher level than CPL kernel can read/write user space user cannot read/write kernel why not? 11
12 Protection Ring Rules Program cannot call code of higher privilege directly Gate is a special memory address where lower-privilege code can call higher Enables OS to control where applications call it (system calls) Gate Ring 3 No gate Ring 0 12
13 Multics Interpretation Kernel resides in ring 0 Process runs in a ring r Access based on current ring Process accesses data (segment) Each data segment has an access bracket: (a1, a2) a1 <= a2 Describes read and write access to segment r is the current ring r <= a1: access permitted a1 < r <= a2: r and x permitted; w denied a2 < r: all access denied Ring a 2 a R-X RWX 13
14 Multics Interpretation (con t) Also different procedure segments with call brackets: (c1, c2), c1 <= c2 7 Denied and access brackets (a1, a2) The following must be true (a2 == c1) Rights to execute code in a new procedure segment r < a1: access permitted with ring-crossing fault a1 <= r <= a2 = c1: access permitted and no fault a2 < r <= c2: access permitted through a valid gate c2 < r: access denied What s it mean? case 1: ring-crossing fault changes procedure s ring Ring a 2 c 2 c 1 Allow with gate No ring fault increases from r to a1 case 2: keep same ring number case 3: gate checks args, decreases ring number Target code segment defines the new ring 1 0 a 1 Ring fault 14
15 Examples Process in ring 3 accesses data segment access bracket: (2, 4) What operations can be performed? Process in ring 5 accesses same data segment What operations can be performed? Process in ring 5 accesses procedure segment access bracket (2, 4) call bracket (4, 6) Can call be made? How do we determine the new ring? Can new procedure segment access the data segment above? 15
16 More Multics Segments Named segments are protected by access control lists and MLS protections Hierarchically arranged Precursor to hierarchical file systems Memory segment access is controlled by hardware monitor Multics hardware retrieves segment descriptor word (SDW) Like a file descriptor Based on rights in the SDW determines whether can access segment Master mode (like root) can override protections 16
17 Multics & Reference Monitor Multics Final Report - Schroeder Multics is too large to satisfy verifiability Multics was 44K SLOC! What about tamperproofing and complete mediation? 17
18 Multics Vulnerability Analysis Karger and Schell - Detailed security analysis covering Hardware Software Procedural features (administration) Good news Design for security System language prevents buffer overflows Defined buffer sizes Hardware features prevent buffer overflows Addressing off segment is an error Stack grows up System is much smaller than current UNIX system 18
19 Vulnerabilities Found Hardware Indirect addressing -- incomplete mediation Check direct, but not indirect address Mistaken modification introduced the error Software Ring protection (done in software) Argument validation was flawed Certain type of pointer was handled incorrectly Master mode transfer For performance, run master mode program (signaler) in user ring Development assumed trusted input to signaler -- bad combo Procedural Trap door insertion goes undetected 19
20 Now forward to UNIX... 20
21 Privilege Escalation Sounds bad, but... Many programs depend on a mechanism to increase rights Example: Password Run shell as you, but need to change your password Requires modification to file /etc/shadow Only modifiable by root What do you do? 21
22 UID Transition: Setuid A special bit in the mode bits Execute file Resulting process has the effective (and fs) UID/GID of file owner Enables a user to escalate privilege For executing a trusted service Downside: User defines execution environment e.g., Environment variables, input arguments, open descriptors, etc. Service must protect itself or user can gain root access All UNIX services involve root processes -- many via setuid 22
23 UNIX Security Limitations Circa 2000 Problems Discretionary access control Setuid root processes Network-facing daemons vulnerable Name resolution vulnerabilities (we still have those) What can we do? 23
24 UNIX Security Limitations Circa 2000 Problems Discretionary access control Setuid root processes Network-facing daemons vulnerable Name resolution vulnerabilities (we still have those) What can we do? Reference validation mechanism that satisfies reference monitor concept Protection system with mandatory access control (mandatory protection system) 24
25 Linux Security Modules Reference validation mechanism for Linux Upstreamed in Linux 2.6 Support modular enforcement - you choose SELinux, AppArmor, POSIX Capabilities, SMACK, authorization hooks Mediate security-sensitive operations on Files, dirs/links, IPC, network, semaphores, shared memory,... Variety of operations per data type Control access to read of file data and file metadata separately Hooks are restrictive 25
26 LSM Hooks Linux Security Modules Systems and Internet Infrastructure Security (SIIS) Laboratory 26 1
27 Linux Security Modules LSM API Now LSMs are always compiled into the kernel Systems CSE543 - and Introduction Internet Infrastructure to Computer Security and Network (SIIS) Security Laboratory 27 14
28 LSM & Reference Monitor Does LSM satisfy reference monitor concept? 28
29 LSM & Reference Monitor Does LSM satisfy reference monitor concept? Tamperproof Can MAC policy be tampered? Can kernel be tampered? By network threats? 29
30 LSM & Reference Monitor Does LSM satisfy reference monitor concept? Tamperproof Can MAC policy be tampered? Can kernel be tampered? By network threats? Verifiable How large is kernel? Can we perform complete testing? 30
31 LSM & Reference Monitor Does LSM satisfy reference monitor concept? Tamperproof Can MAC policy be tampered? Can kernel be tampered? By network threats? Verifiable How large is kernel? Can we perform complete testing? Complete Mediation What is a security-sensitive operation? Do we mediate all paths to such operations? 31
32 LSM & Complete Mediation Security-sensitive operations Instructions? Which? Structure member accesses? To what data? Data types whose instances may be controlled Inodes, files, IPCs, tasks,... Approaches Mediation: Check that authorization hook dominates all control-flow paths to structure member access on security-sensitive data type Consistency: Check that every structure member access that is mediated once is always mediated Several bugs found - some years later 32
33 LSM & Analysis Complete Mediation THREAD-A: (1) fd1 = op (2) fd2 = op (3) fcntl(fd Static analysis of Zhang, Edwards, and Jaeger [USENIX Security 2002]! Based on a tool called CQUAL! Found a TOCTTOU bug! Authorize filp in sys_fcntl! But pass fd again to fcntl_getlk! Many supplementary analyses were necessary to support CQUAL! /* from fs/fcntl.c */ long sys_fcntl(unsigned int fd, unsigned int cmd, unsigned long arg) { struct file * filp;... filp = fget(fd);... } err = security ops->file ops ->fcntl(filp, cmd, arg);... err = do fcntl(fd, cmd, arg, filp);... static long do_fcntl(unsigned int fd, unsigned int cmd, unsigned long arg, struct file * filp) {... switch(cmd){... case F_SETLK:... }... } err = fcntl setlk(fd,...); /* from fs/locks.c */ fcntl_getlk(fd,...) { struct file * filp;... } filp = fget(fd); /* operate on filp */... Figure 8: Code path from Linux containing an exploitable type error. KERNEL (4) fi (5) se (6) fc THREAD-B: /* this clos * and assig */ (7) dup2( fd KERNEL /* thi * fil */ (8) fi (9) lo Fig chance of race not properly sy tial exploits. Here we presen curity checks th are performed o ple, the followin dentry structu on the inode s /* from fs/a... security_ops ->setattr(... inode = dent inode_setatt... ystems CSE543 and - Introduction Internet Infrastructure to Computer Security and Network (SIIS) Laboratory Security It is also quite c data structure 2133 an
34 Take Away Goal: Build authorization into operating systems Multics and Linux Requirements: Reference monitor Satisfy reference monitor concept Multics Mediation on segments Still some bugs; not convinced could verify Linux Did not enforce security (DAC, Setuid, root daemons) Linux Security Modules Approximates reference monitor assuming network threats only -- some challenges in ensuring complete mediation 34
CIS433/533 - Computer and Network Security Operating System Security
CIS433/533 - Computer and Network Security Operating System Security Professor Kevin Butler Winter 2010 Computer and Information Science OS Security An secure OS should provide (at least) the following
CSE543 - Introduction to Computer and Network Security. Module: Reference Monitor
CSE543 - Introduction to Computer and Network Security Module: Reference Monitor Professor Trent Jaeger 1 Living with Vulnerabilities So, software is potentially vulnerable In a variety of ways So, how
Mandatory Access Control in Linux
Mandatory Access Control in Linux CMPSC 443 - Spring 2012 Introduction Computer and Network Security Professor Jaeger www.cse.psu.edu/~tjaeger/cse443-s12/ In the early 2000s Root and administrator Many
CS161: Operating Systems
CS161: Operating Systems Matt Welsh [email protected] Lecture 2: OS Structure and System Calls February 6, 2007 1 Lecture Overview Protection Boundaries and Privilege Levels What makes the kernel different
Access Control Fundamentals
C H A P T E R 2 Access Control Fundamentals An access enforcement mechanism authorizes requests (e.g., system calls) from multiple subjects (e.g., users, processes, etc.) to perform operations (e.g., read,,
CSE331: Introduction to Networks and Security. Lecture 34 Fall 2006
CSE331: Introduction to Networks and Security Lecture 34 Fall 2006 Announcements Problem with Crypto.java Look for a new Crypto.java file later today Project 4 is due Dec. 8th at midnight. Homework 3 is
Advanced Systems Security: Retrofitting Commercial Systems
Systems and Internet Infrastructure Security Network and Security Research Center Department of Computer Science and Engineering Pennsylvania State University, University Park PA Advanced Systems Security:
CIS 551 / TCOM 401 Computer and Network Security. Spring 2005 Lecture 4
CIS 551 / TCOM 401 Computer and Network Security Spring 2005 Lecture 4 Access Control: The Big Picture Objects - resources being protected E.g. files, devices, etc. Subjects - active entities E.g. processes,
Safety measures in Linux
S a f e t y m e a s u r e s i n L i n u x Safety measures in Linux Krzysztof Lichota [email protected] A g e n d a Standard Unix security measures: permissions, capabilities, ACLs, chroot Linux kernel
The Case for SE Android. Stephen Smalley [email protected] Trust Mechanisms (R2X) National Security Agency
The Case for SE Android Stephen Smalley [email protected] Trust Mechanisms (R2X) National Security Agency 1 Android: What is it? Linux-based software stack for mobile devices. Very divergent from typical
Chapter 6, The Operating System Machine Level
Chapter 6, The Operating System Machine Level 6.1 Virtual Memory 6.2 Virtual I/O Instructions 6.3 Virtual Instructions For Parallel Processing 6.4 Example Operating Systems 6.5 Summary Virtual Memory General
Capability-Based Access Control
Lecture Notes (Syracuse University) Capability: 1 Capability-Based Access Control 1 An Analogy: Bank Analogy We would like to use an example to illustrate the need for capabilities. In the following bank
NSA Security-Enhanced Linux (SELinux)
NSA Security-Enhanced Linux (SELinux) http://www.nsa.gov/selinux Stephen Smalley [email protected] Information Assurance Research Group National Security Agency Information Assurance Research Group 1
Chapter 14: Access Control Mechanisms
Chapter 14: Access Control Mechanisms Access control lists Capabilities Locks and keys Ring-based access control Propagated access control lists Slide #14-1 Overview Access control lists Capability lists
Virtual Machine Security
Virtual Machine Security CSE497b - Spring 2007 Introduction Computer and Network Security Professor Jaeger www.cse.psu.edu/~tjaeger/cse497b-s07/ 1 Operating System Quandary Q: What is the primary goal
Advanced Systems Security
Systems and Internet Infrastructure Security Network and Security Research Center Department of Computer Science and Engineering Pennsylvania State University, University Park PA Advanced Systems Security
User-level processes (clients) request services from the kernel (server) via special protected procedure calls
Linux System Call What is System Call? User-level processes (clients) request services from the kernel (server) via special protected procedure calls System calls provide: An abstraction layer between
Secure Virtual Machine Systems
C H A P T E R 11 Secure Virtual Machine Systems A problem in building a new, secure operating system is that existing applications may not run on the new system. Operating systems define an application
CMSC 421, Operating Systems. Fall 2008. Security. URL: http://www.csee.umbc.edu/~kalpakis/courses/421. Dr. Kalpakis
CMSC 421, Operating Systems. Fall 2008 Security Dr. Kalpakis URL: http://www.csee.umbc.edu/~kalpakis/courses/421 Outline The Security Problem Authentication Program Threats System Threats Securing Systems
Review from last time. CS 537 Lecture 3 OS Structure. OS structure. What you should learn from this lecture
Review from last time CS 537 Lecture 3 OS Structure What HW structures are used by the OS? What is a system call? Michael Swift Remzi Arpaci-Dussea, Michael Swift 1 Remzi Arpaci-Dussea, Michael Swift 2
CIS 551 / TCOM 401 Computer and Network Security
CIS 551 / TCOM 401 Computer and Network Security Spring 2007 Lecture 3 1/18/07 CIS/TCOM 551 1 Announcements Email project groups to Jeff (vaughan2 AT seas.upenn.edu) by Jan. 25 Start your projects early!
COS 318: Operating Systems
COS 318: Operating Systems OS Structures and System Calls Andy Bavier Computer Science Department Princeton University http://www.cs.princeton.edu/courses/archive/fall10/cos318/ Outline Protection mechanisms
CSE 120 Principles of Operating Systems. Modules, Interfaces, Structure
CSE 120 Principles of Operating Systems Fall 2000 Lecture 3: Operating System Modules, Interfaces, and Structure Geoffrey M. Voelker Modules, Interfaces, Structure We roughly defined an OS as the layer
Mandatory Access Control
CIS/CSE 643: Computer Security (Syracuse University) MAC: 1 1 Why need MAC DAC: Discretionary Access Control Mandatory Access Control Definition: An individual user can set an access control mechanism
I Control Your Code Attack Vectors Through the Eyes of Software-based Fault Isolation. Mathias Payer, ETH Zurich
I Control Your Code Attack Vectors Through the Eyes of Software-based Fault Isolation Mathias Payer, ETH Zurich Motivation Applications often vulnerable to security exploits Solution: restrict application
CEN 559 Selected Topics in Computer Engineering. Dr. Mostafa H. Dahshan KSU CCIS [email protected]
CEN 559 Selected Topics in Computer Engineering Dr. Mostafa H. Dahshan KSU CCIS [email protected] Access Control Access Control Which principals have access to which resources files they can read
Operating System Security
Operating System Security Synthesis Lectures on Information Security, Privacy and Trust Editor Ravi Sandhu, University of Texas, San Antonio Operating System Security Trent Jaeger 2008 Copyright 2008
CS 392/681 - Computer Security. Module 16 Vulnerability Analysis
CS 392/681 - Computer Security Module 16 Vulnerability Analysis Course Policies and Logistics Homework 5 due tonight Homework 6 posted Read Chapter 23 11/13/2003 Module 16 - Vulnerability Analysis 2 Some
Kernel Intrusion Detection System
Kernel Intrusion Detection System Rodrigo Rubira Branco [email protected] [email protected] Monica's Team!! Brazilian famous H.Q. story Amazon Forest Yeah, Brazilian country! Soccer Brazilian
Operating System Structure
Operating System Structure Lecture 3 Disclaimer: some slides are adopted from the book authors slides with permission Recap Computer architecture CPU, memory, disk, I/O devices Memory hierarchy Architectural
Last Class: OS and Computer Architecture. Last Class: OS and Computer Architecture
Last Class: OS and Computer Architecture System bus Network card CPU, memory, I/O devices, network card, system bus Lecture 3, page 1 Last Class: OS and Computer Architecture OS Service Protection Interrupts
Operating System Components
Lecture Overview Operating system software introduction OS components OS services OS structure Operating Systems - April 24, 2001 Operating System Components Process management Memory management Secondary
Secure computing: SELinux
Secure computing: SELinux Michael Wikberg Helsinki University of Technology [email protected] Abstract Using mandatory access control greatly increases the security of an operating system. SELinux,
Last Class: OS and Computer Architecture. Last Class: OS and Computer Architecture
Last Class: OS and Computer Architecture System bus Network card CPU, memory, I/O devices, network card, system bus Lecture 3, page 1 Last Class: OS and Computer Architecture OS Service Protection Interrupts
Proceedings of the 11 th USENIX Security Symposium
USENIX Association Proceedings of the 11 th USENIX Security Symposium San Francisco, California, USA August 5-9, 2002 THE ADVANCED COMPUTING SYSTEMS ASSOCIATION 2002 by The USENIX Association All Rights
Introduction to Computer Security
Introduction to Computer Security Access Control and Authorization Pavel Laskov Wilhelm Schickard Institute for Computer Science Resource access recapitulated 1. Identification Which object O requests
Access Control Lists in Linux & Windows
Access Control Lists in Linux & Windows Vasudevan Nagendra & Yaohui Chen Categorization: Access Control Mechanisms Discretionary Access Control (DAC): Owner of object specifies who can access object (files/directories)
L16: Ring-based Access Control
L16: Ring-based Access Control Hui Chen, Ph.D. Dept. of Engineering & Computer Science Virginia State University Petersburg, VA 23806 10/26/2015 CSCI 451 - Fall 2015 1 Acknowledgement Many slides are from
Windows Security. CSE497b - Spring 2007 Introduction Computer and Network Security Professor Jaeger. www.cse.psu.edu/~tjaeger/cse497b-s07/
Windows Security CSE497b - Spring 2007 Introduction Computer and Network Security Professor Jaeger www.cse.psu.edu/~tjaeger/cse497b-s07/ Windows Security 0 to full speed No protection system in early versions
Toasterkit - A NetBSD Rootkit. Anthony Martinez Thomas Bowen http://mrtheplague.net/toasterkit/
Toasterkit - A NetBSD Rootkit Anthony Martinez Thomas Bowen http://mrtheplague.net/toasterkit/ Toasterkit - A NetBSD Rootkit 1. Who we are 2. What is NetBSD? Why NetBSD? 3. Rootkits on NetBSD 4. Architectural
How do Users and Processes interact with the Operating System? Services for Processes. OS Structure with Services. Services for the OS Itself
How do Users and Processes interact with the Operating System? Users interact indirectly through a collection of system programs that make up the operating system interface. The interface could be: A GUI,
CS 377: Operating Systems. Outline. A review of what you ve learned, and how it applies to a real operating system. Lecture 25 - Linux Case Study
CS 377: Operating Systems Lecture 25 - Linux Case Study Guest Lecturer: Tim Wood Outline Linux History Design Principles System Overview Process Scheduling Memory Management File Systems A review of what
CSE543 - Introduction to Computer and Network Security. Module: Access Control
CSE543 - Introduction to Computer and Network Security Module: Access Control Professor Trent Jaeger 1 Policy A policy specifies the rules of security Some statement of secure procedure or configuration
UNIX File Management (continued)
UNIX File Management (continued) OS storage stack (recap) Application FD table OF table VFS FS Buffer cache Disk scheduler Device driver 2 Virtual File System (VFS) Application FD table OF table VFS FS
Operating Systems. 05. Threads. Paul Krzyzanowski. Rutgers University. Spring 2015
Operating Systems 05. Threads Paul Krzyzanowski Rutgers University Spring 2015 February 9, 2015 2014-2015 Paul Krzyzanowski 1 Thread of execution Single sequence of instructions Pointed to by the program
Access Control. 1 Overview of Access Control. Lecture Notes (Syracuse University) Access Control: 1. What is Access Control?
Lecture Notes (Syracuse University) Access Control: 1 Access Control 1 Overview of Access Control What is Access Control? The ability to allow only authorized users, programs or processes system or resource
A Firewall Model of File System Security
Ph.D Dissertation Proposal A Firewall Model of File System Security By Lihui Hu Department Of Computer Science Michigan Technological University March 2010 Committee Members: Dr. Jean Mayo, Chair Dr. Steve
Linux OS-Level Security Nikitas Angelinas MSST 2015
Linux OS-Level Security Nikitas Angelinas MSST 2015 Agenda SELinux SELinux issues Audit subsystem Audit issues Further OS hardening 2 SELinux Security-Enhanced Linux Is NOT a Linux distribution A kernel
Review and Exploit Neglected Attack Surface in ios 8. Tielei Wang, Hao Xu, Xiaobo Chen of TEAM PANGU
Review and Exploit Neglected Attack Surface in ios 8 Tielei Wang, Hao Xu, Xiaobo Chen of TEAM PANGU BlackHat 2015 Agenda ios Security Background Review of Attack Surfaces Fuzz More IOKit and MIG System
CSC 2405: Computer Systems II
CSC 2405: Computer Systems II Spring 2013 (TR 8:30-9:45 in G86) Mirela Damian http://www.csc.villanova.edu/~mdamian/csc2405/ Introductions Mirela Damian Room 167A in the Mendel Science Building [email protected]
? Resource. Access Control and Operating System Security. Access control matrix. Access control. Capabilities. Two implementation concepts.
Access Control and Operating System Security John Mitchell Outline Access Control Concepts Matrix, ACL, Capabilities Multilevel security (MLS) OS Mechanisms Multics Ring structure Amoeba Distributed, capabilities
Fine-Grained User-Space Security Through Virtualization. Mathias Payer and Thomas R. Gross ETH Zurich
Fine-Grained User-Space Security Through Virtualization Mathias Payer and Thomas R. Gross ETH Zurich Motivation Applications often vulnerable to security exploits Solution: restrict application access
A Survey of Access Control Policies
A Survey of Access Control Policies Amanda Crowell University of Maryland [email protected] ABSTRACT Modern operating systems each have different implementations of access controls and use different
Security Enhanced Linux and the Path Forward
Security Enhanced Linux and the Path Forward April 2006 Justin Nemmers Engineer, Red Hat Agenda System security in an insecure world Red Hat Enterprise Linux Security Features An overview of Discretionary
Red Hat Linux Internals
Red Hat Linux Internals Learn how the Linux kernel functions and start developing modules. Red Hat Linux internals teaches you all the fundamental requirements necessary to understand and start developing
CS 416: Opera-ng Systems Design
Question 1 Explain the major difference between a file system that supports journaling (e.g., Linux ext4) versus a log-structured file system (e.g., YAFFS2). Operating Systems 2015 Exam 3 Review Paul Krzyzanowski
CAPSICUM. Practical capabilities for UNIX. 19 th USENIX Security Symposium 11 August 2010 - Washington, DC. Robert N. M. Watson
CAPSICUM Practical capabilities for UNIX 19 th USENIX Security Symposium 11 August 2010 - Washington, DC Robert N. M. Watson Jonathan Anderson Ben Laurie Kris Kennaway Google UK Ltd FreeBSD Project University
1. Introduction to the UNIX File System: logical vision
Unix File System 1. Introduction to the UNIX File System: logical vision Silberschatz, Galvin and Gagne 2005 Operating System Concepts 7 th Edition, Feb 6, 2005 Logical structure in each FS (System V):
J-202. IT 4823 Information Security Administration. Linux Security Model. Linux Security. In Room. Linux Security April 23
Final Exam Final exam date: May 5, 4:00 5:50 PM. IT 4823 Information Security Administration Linux Security April 23 In Room J-202 Notice: This session is being recorded. Lecture slides prepared by Dr
W4118 Operating Systems. Junfeng Yang
W4118 Operating Systems Junfeng Yang Outline Linux overview Interrupt in Linux System call in Linux What is Linux A modern, open-source OS, based on UNIX standards 1991, 0.1 MLOC, single developer Linus
Operating Systems. Design and Implementation. Andrew S. Tanenbaum Melanie Rieback Arno Bakker. Vrije Universiteit Amsterdam
Operating Systems Design and Implementation Andrew S. Tanenbaum Melanie Rieback Arno Bakker Vrije Universiteit Amsterdam Operating Systems - Winter 2012 Outline Introduction What is an OS? Concepts Processes
Outline. Operating Systems Design and Implementation. Chap 1 - Overview. What is an OS? 28/10/2014. Introduction
Operating Systems Design and Implementation Andrew S. Tanenbaum Melanie Rieback Arno Bakker Outline Introduction What is an OS? Concepts Processes and Threads Memory Management File Systems Vrije Universiteit
Confining the Apache Web Server with Security-Enhanced Linux
Confining the Apache Web Server with Security-Enhanced Linux Michelle J. Gosselin, Jennifer Schommer [email protected], [email protected] Keywords: Operating System Security, Web Server Security, Access
Linux Distributed Security Module 1
Linux Distributed Security Module 1 By Miroslaw Zakrzewski and Ibrahim Haddad This article describes the implementation of Mandatory Access Control through a Linux kernel module that is targeted for Linux
Republic Polytechnic School of Information and Communications Technology C226 Operating System Concepts. Module Curriculum
Republic Polytechnic School of Information and Communications Technology C6 Operating System Concepts Module Curriculum Module Description: This module examines the fundamental components of single computer
Operating Systems and Networks
recap Operating Systems and Networks How OS manages multiple tasks Virtual memory Brief Linux demo Lecture 04: Introduction to OS-part 3 Behzad Bordbar 47 48 Contents Dual mode API to wrap system calls
OPERATING SYSTEM SERVICES
OPERATING SYSTEM SERVICES USER INTERFACE Command line interface(cli):uses text commands and a method for entering them Batch interface(bi):commands and directives to control those commands are entered
Eugene Tsyrklevich. Ozone HIPS: Unbreakable Windows
Eugene Tsyrklevich Eugene Tsyrklevich has an extensive security background ranging from designing and implementing Host Intrusion Prevention Systems to training people in research, corporate, and military
Department of Electrical Engineering and Computer Science MASSACHUSETTS INSTITUTE OF TECHNOLOGY. 6.828 Operating System Engineering: Fall 2005
Department of Electrical Engineering and Computer Science MASSACHUSETTS INSTITUTE OF TECHNOLOGY 6.828 Operating System Engineering: Fall 2005 Quiz II Solutions Average 84, median 83, standard deviation
? Resource. Outline. Access Control and Operating System Security. Access control. Access control matrix. Capabilities. Two implementation concepts
Access Control and Operating System Security John Mitchell Outline Access Control Matrix, ACL, Capabilities Multilevel security (MLS) OS Policies Multics Ring structure Unix File system, Setuid Windows
Module: Cloud Computing Security
Module: Cloud Computing Security Professor Trent Jaeger Penn State University 1 Cloud Computing Is Here Why not use it? Systems and Internet Infrastructure Security (SIIS) Laboratory 2 What s Happening
Virtualization for Cloud Computing
Virtualization for Cloud Computing Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF CLOUD COMPUTING On demand provision of computational resources
Using Minix to Teach Computer Security Courses
Using Minix to Teach Computer Security Courses Wenliang Du and Sankara Narayanan Department of Electrical Engineering and Computer Science Syracuse University, 121 Link Hall, Syracuse, NY 13244 Email:
Using An Instructional Operating System In Teaching Computer Security Courses
Using An Instructional Operating System In Teaching Computer Security Courses Wenliang Du Systems Assurance Institute Department of Electrical Engineering and Computer Science Syracuse University 121 Link
Introduction to Android 5 Security
Introduction to Android 5 Security Lukáš Aron and Petr Hanáček Faculty of Information Technology, Department of Intelligent Systems, Brno University of Technology [email protected] Abstract. This paper
System Calls and Standard I/O
System Calls and Standard I/O Professor Jennifer Rexford http://www.cs.princeton.edu/~jrex 1 Goals of Today s Class System calls o How a user process contacts the Operating System o For advanced services
How To Write A Windows Operating System (Windows) (For Linux) (Windows 2) (Programming) (Operating System) (Permanent) (Powerbook) (Unix) (Amd64) (Win2) (X
(Advanced Topics in) Operating Systems Winter Term 2009 / 2010 Jun.-Prof. Dr.-Ing. André Brinkmann [email protected] Universität Paderborn PC 1 Overview Overview of chapter 3: Case Studies 3.1 Windows Architecture.....3
Security Enhanced (SE) Android: Bringing Flexible MAC to Android
Security Enhanced (SE) Android: Bringing Flexible MAC to Android Stephen Smalley and Robert Craig Trusted Systems Research National Security Agency {sds,rpcraig}@tycho.nsa.gov Abstract The Android software
Example of Standard API
16 Example of Standard API System Call Implementation Typically, a number associated with each system call System call interface maintains a table indexed according to these numbers The system call interface
CS52600: Information Security
CS18000: Programming I CS52600: Information Security Vulnerability Analysis 15 November 2010 Prof. Chris Clifton Vulnerability Analysis Vulnerability: Lapse in enforcement enabling violation of security
CS 665: Computer System Security. Designing Trusted Operating Systems. Trusted? What Makes System Trusted. Information Assurance Module
CS 665: Computer System Security Designing Trusted Operating Systems Bojan Cukic Lane Department of Computer Science and Electrical Engineering West Virginia University 1 Trusted? An operating system is
Using Likewise Enterprise to Boost Compliance with Sarbanes-Oxley
Likewise Enterprise Using Likewise Enterprise to Boost Compliance with Sarbanes-Oxley IMPROVE SOX COMPLIANCE WITH CENTRALIZED ACCESS CONTROL AND AUTHENTICATION With Likewise Enterprise, you get one user,
Access Control. ITS335: IT Security. Sirindhorn International Institute of Technology Thammasat University ITS335. Access Control.
ITS335: IT Security Sirindhorn International Institute of Technology Thammasat University Prepared by Steven Gordon on 10 October 2013 its335y13s2l04, Steve/Courses/2013/s2/its335/lectures/access.tex,
X05. An Overview of Source Code Scanning Tools. Loulwa Salem. Las Vegas, NV. IBM Corporation 2006. IBM System p, AIX 5L & Linux Technical University
X05 An Overview of Source Code Scanning Tools Loulwa Salem Las Vegas, NV Objectives This session will introduce better coding practices and tools available to aid developers in producing more secure code.
Analysis of advanced issues in mobile security in android operating system
Available online atwww.scholarsresearchlibrary.com Archives of Applied Science Research, 2015, 7 (2):34-38 (http://scholarsresearchlibrary.com/archive.html) ISSN 0975-508X CODEN (USA) AASRC9 Analysis of
A Simple Implementation and Performance Evaluation Extended-Role Based Access Control
A Simple Implementation and Performance Evaluation Extended-Role Based Access Control Wook Shin and Hong Kook Kim Dept. of Information and Communications, Gwangju Institute of Science and Technology, 1
Operating Systems Design 16. Networking: Sockets
Operating Systems Design 16. Networking: Sockets Paul Krzyzanowski [email protected] 1 Sockets IP lets us send data between machines TCP & UDP are transport layer protocols Contain port number to identify
Using a Patched Vulnerability to Bypass Windows 8 x64 Driver Signature Enforcement. MJ0011 [email protected]
Using a Patched Vulnerability to Bypass Windows 8 x64 Driver Signature Enforcement MJ0011 [email protected] Agenda Background A Patched Vulnerability: CVE-2010-4398 Bypass DSE on Windows7 x64 Windows8
