Java Security Model COEN 351 ECommerce Security Java

  • Slides: 59
Download presentation
Java Security Model COEN 351: E-Commerce Security

Java Security Model COEN 351: E-Commerce Security

Java Security Model n High-level Features: n Platform Security: Built-in language security features enforced

Java Security Model n High-level Features: n Platform Security: Built-in language security features enforced by the Java compiler and virtual machine: n n n Strong data typing Automatic memory management Bytecode verification Secure class loading Cryptography n Comprehensive API n n n n digital signatures message digests ciphers (symmetric, asymmetric, stream & block) message authentication codes key generators and key factories Support for a wide range of standard algorithms including RSA, DSA, AES, Triple DES, SHA, PKCS#5, RC 2, and RC 4. PKCS#11 cryptographic token support

Java Security Model n High-level Features: n Authentication and Access Control n n Abstract

Java Security Model n High-level Features: n Authentication and Access Control n n Abstract authentication APIs that can incorporate a wide range of login mechanisms through a pluggable architecture. A comprehensive policy and permissions API that allows the developer to create and administer applications requiring fine-grained access to security-sensitive resources

Java Security Model n High-level Features: n Secure Communications APIs and implementations: n n

Java Security Model n High-level Features: n Secure Communications APIs and implementations: n n n Transport Layer Security (TLS), Secure Sockets Layer (SSL), Kerberos (accessible through GSS-API), Simple Authentication and Security Layer (SASL). Support for HTTPS over SSL/TLS.

Java Security Model n High-level Features: n Public Key Infrastructure (PKI) n Tools for

Java Security Model n High-level Features: n Public Key Infrastructure (PKI) n Tools for managing keys and certificates and comprehensive, abstract APIs with support for the following features and algorithms: n Certificates and Certificate Revocation Lists (CRLs): X. 509 n Certification Path Validators and Builders: PKIX (RFC 3280), On-line Certificate Status Protocol (OCSP) n Key. Stores: PKCS#11, PKCS#12 n Certificate Stores (Repositories): LDAP, java. util.

Java 2 Platform Security n Language is type-safe, and easy to use. (So that

Java 2 Platform Security n Language is type-safe, and easy to use. (So that mistakes are less likely. ) n n n Done with language features such as Automatic memory management Garbage collection Range checking on strings and arrays. Code is executed in the Java Virtual Machine (JVM). n n JVM simulates execution of Java Byte Code. Compiler and bytecode verifier ensure that only legitimate Java bytecodes are executed. Bytecode verifier and JVM guarantee language safety at run time. Classloader defines a local name space: n n An untrusted applet cannot interfere with the running of other programs. JVM mediates access to crucial system resources. n Security. Manager class restricts the actions of Java code.

Java 2 Platform Security n Original Sandbox Model n Code is executed in the

Java 2 Platform Security n Original Sandbox Model n Code is executed in the Java Virtual Machine (JVM). n n n JVM simulates execution of Java Byte Code. Sandbox model allows code to run in a very restricted environment. Local code however has full access to valuable system resources.

Java 2 Platform Security n JDK 1. 1: “Signed Applet” n n n Correctly

Java 2 Platform Security n JDK 1. 1: “Signed Applet” n n n Correctly signed applet is treated as trusted applet. Applets and signatures are delivered in the JAR (Java Archive) format. Untrusted applets run in the sandbox.

Java 2 Platform Security n Fine-grained access control. n Previously, the application writer had

Java 2 Platform Security n Fine-grained access control. n Previously, the application writer had to do substantial programming n n n (e. g. , by subclassing and customizing the Security. Manager and Class. Loader classes). The Hot. Java browser 1. 0 allows the user to choose from a small number of different security levels. Easily configurable security policy. Easily extensible access control structure. Extension of security checks to all Java programs, including applications as well as applets. n Trust of local code is no longer a built-in concept.

Java 2 Platform Security

Java 2 Platform Security

Java 2 Platform Security: Protection Domains n n n n Set of objects that

Java 2 Platform Security: Protection Domains n n n n Set of objects that are currently directly accessible by a principal. Principal is an entity in the computer system to which permissions are granted. Serves to group and to isolate between units of protection. Protection domains are either system domains or application domains.

Java 2 Platform Security: Protection Domains

Java 2 Platform Security: Protection Domains

Java 2 Platform Security: Protection Domains n n n A domain conceptually encloses a

Java 2 Platform Security: Protection Domains n n n A domain conceptually encloses a set of classes whose instances are granted the same set of permissions. Protection domains are determined by the policy currently in effect. The Java application environment maintains a mapping from code (classes and instances) to their protection domains and then to their permissions.

Java 2 Platform Security: Protection Domains

Java 2 Platform Security: Protection Domains

Java 2 Platform Security: Protection Domains n n Java thread can completely occur within

Java 2 Platform Security: Protection Domains n n Java thread can completely occur within a single protection domain. Can also involve application domain and system domain. n Examples: n Application prints out a message. n n n Needs to interact with system domain that is the access point to an output stream. AWT system domain calls an applet’s paint method to display it. Important:

Java 2 Platform Security: Protection Domains n Normal rule: n n The permission set

Java 2 Platform Security: Protection Domains n Normal rule: n n The permission set of an execution thread is the intersection of the permissions of all protection domains traversed by the execution thread. Exception: do. Privileged call n n Enables a piece of trusted code to temporarily enable access to more resources than are available directly to the application that called it. Example: n Application may not be allowed direct access to files that contain files, but the system utility displaying those fonts needs to obtain them on behalf of the user.

Java 2 Platform Security: Protection Domains n When access to a critical system resource

Java 2 Platform Security: Protection Domains n When access to a critical system resource (such as file I/O and network I/O) is requested: n the resource-handling code invokes a special Access. Controller class method n n Evaluates the request Decides if the request should be granted or denied.

Java 2 Platform Security: Protection Domains n n Each domain needs to implement additional

Java 2 Platform Security: Protection Domains n n Each domain needs to implement additional protection of internal resources. Example: n Banking application needs to maintain internal concepts of n n n checking accounts deposits withdrawals

Java 2 Platform Security Why: n Original Problem: n n n Users download programs

Java 2 Platform Security Why: n Original Problem: n n n Users download programs that contain viruses and worms (even in commercial software). Java machines executes downloaded codes, which make the problem worse. Early work focuses on this issue: n Java programs are secure because they cannot install, run, or propagate viruses.

Java 2 Platform Security Why: Remote Class Files Signed Class Files Local Class Files

Java 2 Platform Security Why: Remote Class Files Signed Class Files Local Class Files Bytecode Verifier Class Loader Core API Class Files Security Package Key Database Core Java API Security Manager Access Controller Operating System

Java 2 Platform Security Why: n Bytecode verifier: n n n Ensures that Java

Java 2 Platform Security Why: n Bytecode verifier: n n n Ensures that Java class files follow the rules of Java. Enforces memory protections for all Java programs. Class loader: n Class loader sets permissions for each class it loads.

Java 2 Platform Security Why: Remote Class Files Signed Class Files Local Class Files

Java 2 Platform Security Why: Remote Class Files Signed Class Files Local Class Files Bytecode Verifier Class Loader Core API Class Files Security Package Key Database Core Java API Security Manager Access Controller Operating System

Java 2 Platform Security Why: n Access Controller n n n Allows / prevents

Java 2 Platform Security Why: n Access Controller n n n Allows / prevents most access from the core API to the operating system Based on policies set by the end user or system administrator. Security Manager n n n Primary interface between the core API and the OS Responsible for allowing or preventing access to all system resources. Exists mainly for historical reasons: defers actions to access controller.

Java 2 Platform Security Why: Remote Class Files Signed Class Files Local Class Files

Java 2 Platform Security Why: Remote Class Files Signed Class Files Local Class Files Bytecode Verifier Class Loader Core API Class Files Security Package Key Database Core Java API Security Manager Access Controller Operating System

Java 2 Platform Security Why: n Security Package n n n Classes in java.

Java 2 Platform Security Why: n Security Package n n n Classes in java. security package and those in security extensions. Add security features to applications Provides bases for signing Java classes. n n n Message digests Keys and certificates Digital signatures Encryption Authentication

Java 2 Platform Security Why: Remote Class Files Signed Class Files Local Class Files

Java 2 Platform Security Why: Remote Class Files Signed Class Files Local Class Files Bytecode Verifier Class Loader Core API Class Files Security Package Key Database Core Java API Security Manager Access Controller Operating System

Java 2 Platform Security Why: n Key database n Set of keys used by

Java 2 Platform Security Why: n Key database n Set of keys used by the security infrastructure to create or verify digital signatures.

Java 2 Platform Security Why: Remote Class Files Signed Class Files Local Class Files

Java 2 Platform Security Why: Remote Class Files Signed Class Files Local Class Files Bytecode Verifier Class Loader Core API Class Files Security Package Key Database Core Java API Security Manager Access Controller Operating System

Java 2 Platform Security Why: n Java Sandbox n Permissions n n Code sources

Java 2 Platform Security Why: n Java Sandbox n Permissions n n Code sources n n n Association of permissions with a particular code Policy files n n Location from which a class has been loaded (URL) Info on signer (if code is signed) Protection Domains n n Type, name, and action of permission Entries that define protection domains Keystores

Java 2 Platform Security Why: n Comparison with C++ n C++ has same access

Java 2 Platform Security Why: n Comparison with C++ n C++ has same access levels n n However, C++ allows backdoors that give access to protected or private parts of objects n n n private, (default = package in Java), protected, public Casting into an arbitrary memory pointer will do that. This is not a security problem if the code comes from the same entity. It is a security problem if trusted and untrusted code needs to comingle

Java 2 Platform Security Why: n Java provides memory integrity n n Access methods

Java 2 Platform Security Why: n Java provides memory integrity n n Access methods are strictly adhered to. Programs cannot access arbitrary memory locations. n n No pointers in Java. Entities declared as final must not be changed. n Otherwise: n n n A public final variable could be changed. n Attacker changes the values of EAST and WEST in Grid. Bag. Constraints and now all applets will change the layout of maps. A subclass overrides a final method and alters its behavior. n Attacker overrides the Set. Priority() method of the Thread class. A subclass can be created from a final class such as String. n Suddenly, String objects are no longer constants.

Java 2 Platform Security Why: n Java provides memory integrity n Variables may not

Java 2 Platform Security Why: n Java provides memory integrity n Variables may not be used before they are initialized. n n n Array bounds are checked on all array accesses n n Attacker declares a huge variable without initialization. Attacker can then read large part of memory hoping to find interesting stuff. Otherwise, buffer overflows by attacker allows overwriting of adjacent memory. Objects cannot be cast into other objects.

Java 2 Platform Security Why: n Memory integrity does not prevent the owner of

Java 2 Platform Security Why: n Memory integrity does not prevent the owner of the machine to use tools to look at the memory of an applet.

Java 2 Platform Security Why: n Object Serialization and Memory Integrity n Object serialization

Java 2 Platform Security Why: n Object Serialization and Memory Integrity n Object serialization allows an object to be written as a series of bytes. n n Needed to exchange objects between clients and servers. Needed to save objects to disk and recreate them later.

Java 2 Platform Security Why: n Enforcement of language rules: n Compiler enforcement n

Java 2 Platform Security Why: n Enforcement of language rules: n Compiler enforcement n Compiler enforces casting rules, …

Java 2 Platform Security Why: n Enforcement of language rules: n Byte code verifier

Java 2 Platform Security Why: n Enforcement of language rules: n Byte code verifier n A mini-theorem prover: n n n Class file has the correct format. Final classes are not subclassed and final methods are not overridden. Every class has a single superclass. There is no illegal data conversion of primitive types. There is no illegal data conversion of objects. There are no operand stack overflows or underflows. n Java has a data stack (for methods) and an operand stack, the latter is protected.

Java 2 Platform Security Why: n Enforcement of language rules: n Delayed bytecode verification

Java 2 Platform Security Why: n Enforcement of language rules: n Delayed bytecode verification n n Verification of tests for field and method access is delayed until code is actually executed. Runtime enforcement n n Array bounds checking Object casting

Java 2 Platform Security: Security Manager n n n Security Manager provides mechanisms for

Java 2 Platform Security: Security Manager n n n Security Manager provides mechanisms for Java API to see if security related operations are allowed. Access Controller provides bases of the default implementation of the security manager. Class loader encapsulates information about security policies and classes.

Java 2 Platform Security: Security Manager Program Code Java API Native Libraries Security Manager

Java 2 Platform Security: Security Manager Program Code Java API Native Libraries Security Manager Access Controller Operating System Program-Specific resources Coordination of Security Manager and Access Controller

Java 2 Platform Security: Security Manager n n Security Manager is in control of

Java 2 Platform Security: Security Manager n n Security Manager is in control of the security policy of an application. Determines whether particular operations should be permitted or denied. Access controller does pretty much the same. Historical development explains why there are two similar entities. n n Java 2: Security manager relies more on access controller. Java 2: Access controller policies specified by policy files. Java 2: More flexible architecture. Large body of pre-Java 2 code freezes the main interface to security procedures, i. e. the security manager.

Java 2 Platform Security: Security Manager Program Code Java API Native Libraries Security Manager

Java 2 Platform Security: Security Manager Program Code Java API Native Libraries Security Manager Access Controller Operating System Program-Specific resources Coordination of Security Manager and Access Controller

Java 2 Platform Security: Security Manager n Native libraries are still outside of the

Java 2 Platform Security: Security Manager n Native libraries are still outside of the scope of security manager and access controller. n n Ability to load these libraries can be restricted. Security manager sometimes bypasses the access controller.

Java 2 Platform Security: Security Manager n Default setting: n Java applications have no

Java 2 Platform Security: Security Manager n Default setting: n Java applications have no security manager. n Needs to be explicitly installed. n n With the -Djava. security. manager option Java applets have a strict security manager.

Java 2 Platform Security: Security Manager n Example: n n Security exception if run

Java 2 Platform Security: Security Manager n Example: n n Security exception if run as applet. No exception if run as application. n But you’ll end up deleting a directory. Package java. example import java. applet. *; public class Malicious. Applet extends Applet { public void init() { try { Runtime. get. Runtime(). exec(“rmdir foo”); } catch (Exception e) { System. out. println(e); } } public static void main(String args[]) { Malicious. Applet a = new Malicious. Applet(); a. init(); }

Java 2 Platform Security: Security Manager Java API algorithm for a potentially dangerous operation:

Java 2 Platform Security: Security Manager Java API algorithm for a potentially dangerous operation: n 1. 2. 3. 4. Programmer makes request to Java API asks security manager if this is allowed. Security manager either disallows by throwing an exception with the Java API throws back to the program. Otherwise, Java API completes operation and returns normally.

Java 2 Platform Security: Security Manager n n Code with runtime permission create. Security.

Java 2 Platform Security: Security Manager n n Code with runtime permission create. Security. Manager can create and set a Security. Manager object. Security. Manager class provides a complete implementation for sandbox. n n This is the one you call by specifying – Djava. security. manager option to a Java application. Java Plug-in and appletviewer use a modified implementation of this class and install it before they load any applets.

Java 2 Platform Security: Security Manager n Security Manager Methods n File Access n

Java 2 Platform Security: Security Manager n Security Manager Methods n File Access n n reading, writing, deleting Network Access n socket creation and use. n n Protection of virtual machine Protection of threads Protection of system resources n n Prevents: n Rogue applet connects to a third machine over the network. n Rogue applets collects network information and hands it back to the web server. E. g. untrusted classes cannot print, get clipboard, Protection of security aspects n E. g. access to classes, packages, …

Java 2 Platform Security: Access Controller n Access Controller is built upon n n

Java 2 Platform Security: Access Controller n Access Controller is built upon n n Code sources: where did the code come from. Permissions Policies Protection Domains

Java 2 Platform Security: Security Manager Program Code Java API Native Libraries Security Manager

Java 2 Platform Security: Security Manager Program Code Java API Native Libraries Security Manager Access Controller Operating System Program-Specific resources Coordination of Security Manager and Access Controller

Java 2 Platform Security: Access Controller n Code Source Class n Simple object n

Java 2 Platform Security: Access Controller n Code Source Class n Simple object n n n that reflects the URL (http, file, …) from which a class was loaded that contains the keys that were used to sign the class. Class loaders are responsible for creating and manipulating code source objects.

Java 2 Platform Security: Access Controller n Permissions n Consist of n Type n

Java 2 Platform Security: Access Controller n Permissions n Consist of n Type n n Name n n e. g. name of file “show. Window. Without. Warning. Banner” Action n n e. g. java. io. File. Permission read file, write file, delete file Allow Java API to negotiate access to resources. Allow programmer arbitrary permissions for use within their own programs.

Java 2 Platform Security: Access Controller n Policy Class n n Specify which permission

Java 2 Platform Security: Access Controller n Policy Class n n Specify which permission applies to which code source. Only a single instance of policy class can be installed in the virtual machine at any one time.

Java 2 Platform Security: Access Controller n Protection Domain: n n Grouping of code

Java 2 Platform Security: Access Controller n Protection Domain: n n Grouping of code source and permissions. When associated with a class: n n n Given class was loaded from the site specified in the code source. Was signed by the public keys specified in the source code. Has the permissions represented in the permission collection object.

Java 2 Platform Security: Secure Class Loading n Class Loader is responsible for: n

Java 2 Platform Security: Secure Class Loading n Class Loader is responsible for: n n locating and fetching the class file consulting the security policy defining the class object with the appropriate permissions Dynamic class loading: n n n Lazy loading (on demand loading) Link-time checks for type safety. Programmers can define their own class loaders n n n Specify remote locations from which classes are loaded. Assign appropriate security attributes for them. Class loaders provide separate name spaces. n n Example: browser can load applets from different web pages using separate class loaders Thus maintaining a degree of isolation between those applet classes.

Java 2 Platform Security: Secure Class Loading n Multiple instances of class loader objects

Java 2 Platform Security: Secure Class Loading n Multiple instances of class loader objects in JVM: n n n Root is abstract class: java. lang. Class. Loader Has subclass java. security. Secure. Class. Loader Has subclass java. net. URLClass. Loader Utility program Appletviewer uses private class sun. applet. Applet. Class. Loader to load applets. Primordial Class Loader n Implemented in sytem-native language loads classes from the local file system in a platformdependent manner.

Java 2 Platform Security: Secure Class Loading n Class Loader Delegation: n n n

Java 2 Platform Security: Secure Class Loading n Class Loader Delegation: n n n Class loader can either load the class itself Or ask another class loader to do so. Class Resolution Algorithm: n n n Check if the class has already been loaded. If the current class loader has a specified delegation parent, delegate to the parent to try to load this class. If there is no parent, delegate to the primordial class loader. Call a customizable method to find the class elsewhere.

Java 2 Platform Security: Secure Class Loading class C { void f() { D

Java 2 Platform Security: Secure Class Loading class C { void f() { D d = new D(); … } } n Class is defined in a machine-independent binary representation n n Called the class file Example: class file of C contains reference to class D. n n Symbolic reference is resolved at link time. Class loader for C is the initiating loader for class D. Class loader for C can delegate to a second class loader, etc. Delegation relationship is formed at run-time.

Java 2 Platform Security: Secure Class Loading Class loader performs: n 1. 2. 3.

Java 2 Platform Security: Secure Class Loading Class loader performs: n 1. 2. 3. 4. 5. 6. Consults security manager. If class loader has already loaded the class, find previously defined class object. Otherwise, class loader goes to parent to see whether the parent knows how to load the class. (Recursive call) Consults security manager to see if the program is allowed to create the class. Class file is read into a byte array. Create protection domain for the class. n 7. 8. Consult default security model Construct class object from bytecode. Get permissions associated with the code source. Resolve class: any immediate references to other classes must be found.

Java Security Problems n Security model does not protect against all bad things: n

Java Security Problems n Security model does not protect against all bad things: n Applets that perform annoying tasks n n e. g. using up CPU. Installing a local class file or local native library: n An applet can call them if not prevented. n Newer versions of browsers mitigates the adverse potential.