Presentation is loading. Please wait.

Presentation is loading. Please wait.

Authentication and Security Joshua Scotton.  Sessions  Login and Authentication.

Similar presentations


Presentation on theme: "Authentication and Security Joshua Scotton.  Sessions  Login and Authentication."— Presentation transcript:

1 Authentication and Security Joshua Scotton

2  Sessions  Login and Authentication

3 Tracking the User

4  Cookies ◦ Store a unique identifier in a cookie for the website  URL Rewriting ◦ Append a unique identifier to the end of each URL  Hidden Form Fields ◦

5  Customization ◦ Adaptive Content ◦ Adaptable Content  Security ◦ Restrict areas of the site based on user ◦ User login tracked using session  User Behaviour ◦ Track page accesses  User Information ◦ Store user settings and information

6  getAttribute(), getAttributeNames(), setAttribute(), removeAttribute() ◦ These methods are used to set, get and remove objects from a user session  getId() ◦ Every session created by the server has a unique 'id' associated with it in order to identify this session from other sessions.  getCreationTime() ◦ Simple returns a long value indicating the date and time this session was created.  getLastAccessedTime() ◦ Returns a long value indicating the last time user accessed any resource on this server.  getMaxInactiveInterval(), setMaxInactiveInterval() ◦ Return and set the maximum inactive interval in seconds for this session respectively.  isNew() ◦ Returns a boolean value indicating if the session is new.  invalidate() ◦ Simply invalidates a session. Can be used for logout

7  Most Java servers will use cookies if the browser supports them, but automatically revert to URL-rewriting when cookies are unsupported or explicitly disabled.

8  Sessions can be accessed and managed by both Servlets and JSPs.  This can happen in combination as in the following demo.

9 public class CounterBean implements Serializable { private Integer count; public CounterBean() { super(); this.count = 0; } public Integer getCount() { return this.count; } public void setCount(Integer count) { this.count = count; } public void incrementCount() { this.count++; } }

10 The counter was: The counter is now:

11 PrintWriter out = response.getWriter(); HttpSession session = request.getSession(true); CounterBean counter; if(session.isNew()) { counter = new CounterBean(); session.setAttribute("counter", counter); } counter = ((CounterBean)session.getAttribute("counter")); counter.incrementCount(); out.println("Counter now: " + counter.getCount()); out.close();

12 Allowing Persistent Storage

13 1. A user accesses a protected page 2. If the user is authenticated and has permission to access the page then the resource is made available. Otherwise a login page is shown 3. If the name and password cannot be authenticated then an error is shown

14  User/Group Database  Access Control List (ACL)  Login Page

15  A Principal is a named entity, commonly representing an individual or corporation.  Principal’s can fill one or more Roles.  Resources can be protected by associating them with Roles.  Principals and Roles are similar to Users and Groups in Linux.

16 ... Protected Page /secretPage.jsp employee employee

17  /members/*  More than one url-pattern in the web- resource-collection

18  Principal getUserPrincipal() ◦ Returns a reference to a java.security.Principal  boolean isUserInRole(String) ◦ Determines whether a user is in a role, specified by the string argument  String getRemoteUser() ◦ Returns the username that was used for login

19  String getAuthType() ◦ Returns the authentication type: BASIC, SSL, or null  boolean isSecure() ◦ Returns true if the connection is HTTPS  String getScheme() ◦ Scheme represents transport mechanism: http, https...

20  Basic authentication  Form-based authentication  Digest authentication  SSL and client certificate authentication

21 ... BASIC Basic Authentication Example...

22  A realm is a database of usernames and passwords  It also contains a list of roles associated with each user  Realms are specific to the server being used

23  JDBCRealm - Accesses authentication information stored in a relational database, accessed via a JDBC driver. JDBCRealm  DataSourceRealm - Accesses authentication information stored in a relational database, accessed via a named JNDI JDBC DataSource. DataSourceRealm  JNDIRealm - Accesses authentication information stored in an LDAP based directory server, accessed via a JNDI provider. JNDIRealm  UserDatabaseRealm - Accesses authentication information stored in an UserDatabase JNDI resource, which is typically backed by an XML document (conf/tomcat-users.xml). UserDatabaseRealm  MemoryRealm - Accesses authentication information stored in an in-memory object collection, which is initialized from an XML document (conf/tomcat-users.xml). MemoryRealm  JAASRealm - Accesses authentication information through the Java Authentication & Authorization Service (JAAS) framework. JAASRealm

24   Serverwide - conf/server.xml  Per Webapp – META-INF/context.xml

25

26  $TOMCAT_HOME/conf/tomcat-users.xml <user username="tomcat" password="tomcat“ roles="tomcat"/> <user username="both" password="tomcat“ roles="tomcat,role1"/> <user username="role1" password="tomcat“ roles="role1"/>

27  members.jsp  web.xml  context.xml

28 User ' ' has been logged out.

29 1. The login form associated with the security constraint is sent to the client and the URL path triggering the authentication is stored by the container. 2. The user is asked to fill out the form, including the username and password fields. 3. The client posts the form back to the server. 4. The container attempts to authenticate the user using the information from the form. 5. If authentication fails, the error page is returned using either a forward or a redirect, and the status code of the response is set to 200. 6. If authentication succeeds, the authenticated user's principal is checked to see if it is in an authorized role for accessing the resource. 7. If the user is authorized, the client is redirected to the resource using the stored URL path.

30  Create custom login page with the following form fields: ◦ j_username  The name of the username field ◦ j_password  The name of the password field ◦ j_security_check  The login form's action

31 FORM /login.jsp /error.jsp

32

33  Use a JDBC Database Realm  Create table of usernames and passwords  Create table of usernames and roles  Column name for the username must be the same in both tables

34  connectionName  connectionPassword  connectionURL  driverName  roleNameCol  userCredCol  userNameCol  userRoleTable  userTable  http://tomcat.apache.org/tomcat-3.3- doc/JDBCRealm-howto.html


Download ppt "Authentication and Security Joshua Scotton.  Sessions  Login and Authentication."

Similar presentations


Ads by Google