Dos and Don'ts of Client Authentication on the Web

Total Page:16

File Type:pdf, Size:1020Kb

Dos and Don'ts of Client Authentication on the Web Dos and Don'ts of Client Authentication on the Web Kevin Fu, Emil Sit, Kendra Smith, Nick Feamster fubob, sit, kendras, feamster ¡ @mit.edu MIT Laboratory for Computer Science http://cookies.lcs.mit.edu/ Abstract the client authentication of two systems, gained unautho- rized access on eight, and extracted the secret key used Client authentication has been a continuous source of to mint authenticators from one. problems on the Web. Although many well-studied tech- This is perhaps surprising given the existing client niques exist for authentication, Web sites continue to use authentication mechanisms within HTTP [16] and extremely weak authentication schemes, especially in SSL/TLS [11], two well-studied mechanisms for provid- non-enterprise environments such as store fronts. These ing authentication secure against a range of adversaries. weaknesses often result from careless use of authentica- However, there are many reasons that these mechanisms tors within Web cookies. Of the twenty-seven sites we are not suitable for use on the Web at large. Lack of investigated, we weakened the client authentication on a central infrastructure such as a public-key infrastruc- two systems, gained unauthorized access on eight, and ture or a uniform Kerberos [41] contributes to the pro- extracted the secret key used to mint authenticators from liferation of weak schemes. We also found that many one. Web sites would design their own authentication mecha- nism to provide a better user experience. Unfortunately, We provide a description of the limitations, require- designers and implementers often do not have a back- ments, and security models specific to Web client authen- ground in security and, as a result, do not have a good tication. This includes the introduction of the interrog- understanding of the tools at their disposal. Because of ative adversary, a surprisingly powerful adversary that this lack of control over user interfaces and unavailability can adaptively query a Web site. of a client authentication infrastructure, Web sites con- We propose a set of hints for designing a secure client tinue to reinvent weak home-brew client authentication authentication scheme. Using these hints, we present the schemes. design and analysis of a simple authentication scheme Our goal is to provide designers and implementers secure against forgeries by the interrogative adversary. with a clear framework within which to think about and In conjunction with SSL, our scheme is secure against build secure Web client authentication systems. A key forgeries by the active adversary. contribution of this paper is to realize that the Web is par- ticularly vulnerable to adaptive chosen message attacks. 1 Introduction We call an adversary capable of performing these attacks an interrogative adversary. It turns out that for most sys- tems, every user is potentially an interrogative adversary. Client authentication is a common requirement for Despite having no special access to the network (in com- modern Web sites as more and more personalized and parison to the eavesdropping and active adversary), an in- access-controlled services move online. Unfortunately, terrogative adversary is able to significantly compromise many sites use authentication schemes that are extremely systems by adaptively querying a Web server. We believe weak and vulnerable to attack. These problems are most that, at a minimum, Web client authentication systems often due to careless use of authenticators stored on the should defend against this adversary. However, with this client. We observed this in an informal survey of authen- minimum security, sites may continue to be vulnerable to tication mechanisms used by various popular Web sites. attacks such as eavesdropping, server impersonation, and Of the twenty-seven sites we investigated, we weakened stream tampering. Currently, the best defense against such attacks is to use SSL with some form of client au- This research was supported by a USENIX scholars fellowship and was originally published in the Proceedings of the 10th USENIX Security thentication; see Rescorla [37] for more information on Symposium. Washington, D.C., August, 2001. the security and proper uses of SSL. 1 In Section 2, we describe the limitations, require- The client generally speaks to the server using the Hy- ments, and security models to consider in designing Web pertext Transfer Protocol (HTTP [14]). This may be spo- client authentication. Using these descriptions, we cod- ken over any transport mechanism but is typically either ify the principles underlying the strengths and weak- TCP or SSL. Since HTTP is a stateless, sessionless pro- nesses of existing systems as a set of hints in Section 3. tocol, the client must provide an authentication token or As an example, we design a simple and flexible authenti- authenticator with each request. cation scheme in Section 4. We implemented this scheme and analyzed its security and performance; we present Computation allows the browser to transform inputs these findings in Sections 5 and 6. Section 7 compares before sending them to the server. This computation may the work in this paper to prior and related work. We con- be in a strictly defined manner, such as in HTTP Digest clude with a summary of our results in Section 8. authentication [16] and SSL, or it may be much more flexible. Flexible computation is available via Javascript, Java, Tcl, ActiveX, Flash, and Shockwave. Depending 2 Security models and definitions on the application, these technologies could perhaps as- sist in the authentication process. However, most of these Clients want to ensure that only authorized people can technologies have high startup overhead and mediocre access and modify personal information that they share performance. As a result, users may choose to disable with Web sites. Similarly, Web sites want to ensure that these technologies. Also, these extensions may not be only authorized users have access to the services and available on all operating systems and architectures. Any content it provides. Client authentication addresses the standard authentication scheme should be as portable and needs of both parties. lightweight as possible, and therefore require few or no browser extensions. Thus for today’s use, any authenti- Client authentication involves proving the identity of cation scheme should avoid using client computation for a client (or user) to a server on the Web. We will use deployability reasons. If absolutely necessary, Javascript the term “authentication” to refer to this problem. Server and Java are commonly supported. authentication, the task of authenticating the server to the Client state allows the client’s browser to store and client, is also important but is not the focus this paper. reuse authenticators. However, storage space may be very limited. In the most limited case, the browser In this section, we present an overview of the security can only store passwords associated with realms (as in models and definitions relevant in client authentication. HTTP Basic authentication [16]). A more flexible form We begin by describing the practical limitations of a Web of storage which is commonly available in browsers is authentication system. This is followed by a discussion the cookie [25, 32]. Cookies allow a server store a value of common requirements. We then characterize types of on a client. In subsequent HTTP requests, the client breaks and adversaries. automatically includes the cookie value. A number of attributes can control how long cookies are kept and to 2.1 Practical limitations which servers they are sent. In particular, the server may request that the client discard the cookie immediately Web authentication is primarily a practical problem of or keep it until a specified time. The server may also deployability, user acceptability, and performance. request that the client only return the cookie to certain hosts, domains, ports, URLs, or only over secure trans- Deployability ports. Cookies are the most widely deployed mechanism for maintaining client state. Web authentication protocols differ from traditional User acceptability authentication protocols in part because of the limited in- terface offered by the Web. The goal is to develop an au- Web sites must also consider user acceptability. Be- thentication system by using the protocols and technolo- cause sites want to attract many users, the client authenti- gies commonly available in today’s Web browsers and cation must be as non-confrontational as possible. Users servers. Authentication schemes for the Internet at large will be discouraged by schemes requiring work such as cannot rely on technology not widely deployed. For ex- installing a plug-in or clicking away dialog boxes. ample, Internet kiosks today do not have smart card read- Performance ers. Similarly, home consumers currently have little in- centive to purchase smart card readers or other hardware Stronger security protocols generally cost more in per- token systems. formance. Service providers naturally want to respond 2 to as many requests as possible. Cryptographic solutions authentication is further blurred by the practice of current will usually degrade server performance. Authentication browsers of displaying a single padlock whose meaning should not needlessly consume valuable server resources is ambiguous. such as memory and clock cycles. With current technol- ogy, SSL becomes unattractive because of the computa- Typically, servers choose to provide confidentiality tional cost of its initial handshaking. for only certain special data by using SSL. For exam- ple, financial data require confidentiality. Sites that deal 2.2 Server security requirements with such information, online brokerages, may be auc- tion sites (e.g., ebay.com), banks and other financial The goals of a server’s authentication system depend service providers (e.g., etrade.com), or online mer- on the strength and granularity of authentication desired. chants (e.g., FatBrain.com). Granularity refers to the fact that some servers identify individual users throughout a session, while others iden- Another issue commonly associated with authentica- tify users only during the first request. A fine-grained tion is user privacy.
Recommended publications
  • Mac OS X Server Administrator's Guide
    034-9285.S4AdminPDF 6/27/02 2:07 PM Page 1 Mac OS X Server Administrator’s Guide K Apple Computer, Inc. © 2002 Apple Computer, Inc. All rights reserved. Under the copyright laws, this publication may not be copied, in whole or in part, without the written consent of Apple. The Apple logo is a trademark of Apple Computer, Inc., registered in the U.S. and other countries. Use of the “keyboard” Apple logo (Option-Shift-K) for commercial purposes without the prior written consent of Apple may constitute trademark infringement and unfair competition in violation of federal and state laws. Apple, the Apple logo, AppleScript, AppleShare, AppleTalk, ColorSync, FireWire, Keychain, Mac, Macintosh, Power Macintosh, QuickTime, Sherlock, and WebObjects are trademarks of Apple Computer, Inc., registered in the U.S. and other countries. AirPort, Extensions Manager, Finder, iMac, and Power Mac are trademarks of Apple Computer, Inc. Adobe and PostScript are trademarks of Adobe Systems Incorporated. Java and all Java-based trademarks and logos are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries. Netscape Navigator is a trademark of Netscape Communications Corporation. RealAudio is a trademark of Progressive Networks, Inc. © 1995–2001 The Apache Group. All rights reserved. UNIX is a registered trademark in the United States and other countries, licensed exclusively through X/Open Company, Ltd. 062-9285/7-26-02 LL9285.Book Page 3 Tuesday, June 25, 2002 3:59 PM Contents Preface How to Use This Guide 39 What’s Included
    [Show full text]
  • Bulletin Board System (BBS) for a VAX/VMS Multi-User Environment
    - Bulletin Board System (BBS) for a VAX/VMS Multi-User Environment An Honors Thesis (HONRS 499) by J. Kevin Cooper Advisor: Dr. Earl H. McKinney Ball State University Muncie, Indiana May 1995 Graduation Date: May 6, 1995 - Abstract Overview The BBS (Bulletin Board System) software is a client/server model running on a VAX/VMS com puter system, which allows both interactive, user-friendly access to file bases and online discussion groups, and a versatile database environment with comprehensive security features. This system has been tailored to be platform-independent in its information transfer protocol, while using the specifics of the operating system to benefit both the appearance of the user interface and the efficiency of database m anagem ent. I have attempted to interweave as much functionality as feasibly possible into this project, as to demonstrate what I have learned through the Computer Science program here at Ball State University, as well as through my internship position as a VAX system technician and programmer S.t University Computing Services. Tools Used This project was written using the following software on University-owned VAX machines: DEC Pascal v4.2 for VMS DEC set Module M anagem ent System v2.5 MultiNet -v3.2 shareable TCPIIP network library Open VMS VAX Operating System v6.0, v6.1 This system makes use of system resources such as the VMS Command Language Interpreter (CLI), VMS Message Utility, Run-time Screen Manager Library (SMG), Record Management Services (RM8), and MultiNet's linkable TCP/IP socket library. Acknowledgem ents I would like to thank Dr.
    [Show full text]
  • Guide to Protecting Your Computer &Your Identity for Students
    INFORMATION SECURITY THREATS Identity theft • a form of stealing another person's identity in which someone pretends to be someone else by assuming that person's identity, typically in order to access resources or obtain credit and other benefits in that person's name. The victim of identity theft can suffer adverse financial and criminal consequences if they are held accountable for the perpetrator's actions. Keylogger • software that records everything you type while simultaneously sending it to a covert, remote listening agent. GUIDE TO PROTECTING YOUR Malware • a general term used to describe malicious software designed to trick a computer user or infiltrate or damage a computer. Pharming • a hacker's attack aiming to redirect a website's traffic to fraudulent site, COMPUTER & YOUR IDENTITY often used to mimic legitimate and authoritative sites (e.g. banking, anti-virus). Phishing • deceptive attempt to acquire sensitive information (i. e. usernames, passwords, and credit card details) by an agent masquerading as a trustworthy @ CCNY entity in an email or instant message, or via a web site or telephone call. Rootkit • a stealthy type of malicious software designed to hide the existence of certain processes or programs from normal methods of detection and enables continued FOR STUDENTS privileged access to a computer, uses adaptive behavior to avoid detection and remediation. Spam • the use of electronic messaging systems to send unsolicited bulk messages indiscriminately. Basically junk email. Spyware/ Adware • malware or marketing software whose principal aim is to surreptitiously collect information by “spying” on the user. Trojan • disguised malware that appears to perform a benign or normal action but in fact performs a malicious action, such as transmitting a computer virus.
    [Show full text]
  • Yubikey OS X Login
    yubico YubiKey OS X Login Via Yubico-PAM Challenge-Response Version 1.5 October 12, 2015 YubiKey OS X Login © 2015 Yubico. All rights reserved. Page 1 of 18 yubico About Yubico As the inventors of the YubiKey®, Yubico sets new world standards for secure login across the Internet. Our unique USB and NFC key offers one-touch strong authentication supporting multiple authentication protocols for all devices and platforms - with no driver or client software needed. With successful enterprise deployments in 140 countries, including 7 of the top 10 Internet companies, Yubico is adding the consumer market to its list of strong authentication converts. Founded in 2007, Yubico is privately held with offices in Palo Alto, Calif., Stockholm, and London. For more information visit yubico.com Disclaimer The contents of this document are subject to revision without notice due to continued progress in methodology, design, and manufacturing. Yubico shall have no liability for any error or damages of any kind resulting from the use of this document. The Yubico Software referenced in this document is licensed to you under the terms and conditions accompanying the software or as otherwise agreed between you or the company that you are representing. Trademarks Yubico and YubiKey are trademarks of Yubico Inc. Contact Information Yubico Inc 459 Hamilton Avenue, Suite 304 Palo Alto, CA 94301 USA yubi.co/contact YubiKey OS X Login © 2015 Yubico. All rights reserved. Page 2 of 18 yubico Contents About Yubico ......................................................................................................................................
    [Show full text]
  • Accessing Learning Applications Using a Personal Computer
    Pittsburgh Public Schools Accessing Learning Applications Using a Personal Computer Clever, Microsoft Teams and Schoology Pittsburgh Public Schools | 341 S Bellefield Ave Pittsburgh PA 15213 Support: 412-529-HELP (4357) | [email protected] Logging into Microsoft Teams You may use any browser to navigate to portal.office.com. 1. Enter your PPS email address and select ‘Next’. 2. You will then be prompted to enter in your PPS password. 3. Select the ‘Teams’ icon. *Note: There is also a link to Microsoft Teams inside of your Clever portal. View the next page to learn how to log into Clever. Page 2 Logging into Clever *Brower Requirement: Users must use Firefox, Edge or Chrome. 1. Download the Clever extension You will need to download the extension so that you will be able to access additional Clever resources once you get in. This is a one-time process. Instructions for Google Chrome Instructions for Mozilla Firefox Instructions for Microsoft Edge You will know that you have the Clever extension applied if you see a small Clever icon in the upper right-hand corner of the browser. *Note: If you fail to apply the Clever extension, you will be asked a second time when you attempt to log into any application that requires a district password. Do not update any passwords if prompted, just click on the Clever Extension link provided and download the extension. After you have downloaded the extension, return to the login page to resume accessing the application. Page 3 2. Navigate to www.pghschools.org and Select Clever in the Find it Fast menu You can also navigate directly to www.pghschools.org/clever Staff can also access Clever at mypps.sharepoint.com under the Web Tools menu.
    [Show full text]
  • Advanced Authentication 6.3 Mac OS X Client Installation Guide
    Advanced Authentication 6.3 Mac OS X Client Installation Guide Decemeber 2019 Legal Notices For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government rights, patent policy, and FIPS compliance, see http://www.microfocus.com/about/legal/. © Copyright 2019 Micro Focus or one of its affiliates. 2 Contents About this Book 5 1 System Requirements 7 2 Offline Support for Mac OS X Client 9 3 Configuring the Preliminary Settings 11 Configuring the Mandatory Settings . .11 Setting-up a DNS for Advanced Authentication Server Discovery . .11 Using a Specific Advanced Authentication Server in the Non-DNS Mode . .15 Enabling Remote Login . .16 Configuring the Optional Settings . .16 Disabling 1:N . .17 Configuration Settings for Multitenancy . .17 Customizing a Logo . .18 Configuring Time-Out for Card Waiting . .18 Configuring Time-Out for the U2F Authentication . .19 Selecting an Event . .19 Configuring to Verify Server Certificates . .19 Enabling the Authentication Agent Chain . .20 Configuring the Enforced Cached Logon . .20 Binding Mac to Active Directory. .21 Enabling the Offline Mode . .22 Displaying Other User on the Login Screen in Non-Domain Mode . .22 Creating a Mobile Account for the Offline Mode . .23 Displaying the Authentication Window on Unlock Screen. .23 Configuring the TLS Version . .23 Disabling Linked Chains for Offline Login. .24 Enabling the Profiling Tool . .24 Localizing the Messages for Clients . .25 Configuring in Case of Advanced Authentication as a Service . .26 Configuring to Connect Via HTTP Proxy. .27 4 Installing and Uninstalling Mac OS X Client 29 Installing Mac OS X Client. .29 Uninstalling Mac OS X Client .
    [Show full text]
  • Blue Prism 6.10 Login Agent User Guide
    Blue Prism 6.10 Login Agent User Guide Document Revision: 1.0 Blue Prism 6.10 | Login Agent User Guide Trademarks and Copyright Trademarks and Copyright The information contained in this document is the proprietary and confidential information of Blue Prism Limited and should not be disclosed to a third-party without the written consent of an authorized Blue Prism representative. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying without the written permission of Blue Prism Limited. © Blue Prism Limited, 2001 – 2020 ®Blue Prism is a registered trademark of Blue Prism Limited All trademarks are hereby acknowledged and are used to the benefit of their respective owners. Blue Prism is not responsible for the content of external websites referenced by this document. Blue Prism Limited, 2 Cinnamon Park, Crab Lane, Warrington, WA2 0XP, United Kingdom. Registered in England: Reg. No. 4260035. Tel: +44 870 879 3000. Web: www.blueprism.com Commercial in Confidence Page ii Blue Prism 6.10 | Login Agent User Guide Contents Contents TradeCo ntents ma rks andCo p y righ t Login Agent 1 Security policies 2 Ctrl + Alt + Del – Secure Attention Sequence 2 On-screen pre-login message 3 Display lock screen 3 Install Login Agent 4 Editions of Login Agent 4 Distributable files 4 Prerequisites 4 Install Blue Prism Login Agent 5 Command line installation 7 Advanced installation and configuration 8 Update or customize the Login Agent configuration 8 Set the Blue Prism connection
    [Show full text]
  • Mac OS X Server User Management for Version 10.4 Or Later Second Edition
    Mac OS X Server User Management For Version 10.4 or Later Second Edition K Apple Computer, Inc. Apple, the Apple logo, AirPort, AppleShare, AppleTalk, © 2006 Apple Computer, Inc. All rights reserved. FireWire, iBook, Keychain, LaserWriter, Mac, Mac OS, Macintosh, PowerBook, and QuickTime are trademarks The owner or authorized user of a valid copy of of Apple Computer, Inc., registered in the U.S. and other Mac OS X Server software may reproduce this countries. Extensions Manager, Finder, and SuperDrive publication for the purpose of learning to use such are trademarks of Apple Computer, Inc. software. No part of this publication may be reproduced or transmitted for commercial purposes, such as selling Adobe and PostScript are trademarks of Adobe Systems copies of this publication or for providing paid-for Incorporated. support services. Java and all Java-based trademarks and logos are Every effort has been made to ensure that the trademarks or registered trademarks of Sun information in this manual is accurate. Apple Computer, Microsystems, Inc. in the U.S. and other countries. Inc., is not responsible for printing or clerical errors. UNIX is a registered trademark in the United States and Apple other countries, licensed exclusively through X/Open 1 Infinite Loop Company, Ltd. Cupertino, CA 95014-2084 408-996-1010 Other company and product names mentioned herein www.apple.com are trademarks of their respective companies. Mention of third-party products is for informational purposes Use of the “keyboard” Apple logo (Option-Shift-K) for only and constitutes neither an endorsement nor a commercial purposes without the prior written consent recommendation.
    [Show full text]
  • Student Login Information
    Student Login Information • WebAdvisor • Student Email • Lab Login • Printing • Blackboard • Wi-Fi gaston.edu WebAdvisor Obtaining Your WebAdvisor User ID 1. Go to gaston.edu. 2. Click the WEBADVISOR link. 3. Click “What’s my User ID?”, then type in your Last Name, and enter either your Social Security Number or your College ID#, and click submit. Logging Into WebAdvisor 1. Go to gaston.edu. 2. Click the WEBADVISOR link. 3. Click on Log In (upper right), provide your WebAdvisor User ID and password. Note: Your initial password is your birthday in the form of mmddyy. 4. If you forget your user name or password, click on “What is my User Name?” or “What is my Password?” and follow instructions. Obtaining your 7 Digit College ID# 1. Log into WebAdvisor. 2. Click the Student icon. 3. Select “My Profile” under Academic Profile. Note: Your 7 digit College ID# is located under Personal Information. Password Management for Student Email, Lab, Printing, Wi-Fi and Blackboard One password will access student email, lab, printing, Wi-Fi and Blackboard. Your initial password will be a capital GC# and your personal 7 digit Gaston College ID number (e.g., GC#0123456). Password Management - gcpass.gaston.edu When logging into a lab for the first time you will be required to set up the GC Password Management profile for password recovery. You may access your profile management by selecting QUICK LINKS on gaston.edu, then password reset GC Pass under the Students heading. To use AD Self Password Reset you first need to enroll. Once enrolled you can reset your password and unlock your account by answering several personal security questions.
    [Show full text]
  • Simpboard –A Mongodb Implementation of a Simplified Online Bulletin Board System for Information Dissemination in Tertiary Institutions
    Nigerian Journal of Technology (NIJOTECH) Vol. 36, No. 3, July 2017, pp. 897 – 903 Copyright© Faculty of Engineering, University of Nigeria, Nsukka, Print ISSN: 0331-8443, Electronic ISSN: 2467-8821 www.nijotech.com http://dx.doi.org/10.4314/njt.v36i3.32 SIMPBOARD –A MONGODB IMPLEMENTATION OF A SIMPLIFIED ONLINE BULLETIN BOARD SYSTEM FOR INFORMATION DISSEMINATION IN TERTIARY INSTITUTIONS A. E. Ibor1,*, K. E. Eyong2 and E. B. Edim3 1,2 DEPARTMENT OF COMPUTER SCIENCE, CROSS RIVER UNIVERSITY OF TECHNOLOGY, CALABAR, NIGERIA 3 DEPARTMENT OF COMPUTER SCIENCE, UNIVERSITY OF CALABAR, CALABAR, CROSS RIVER STATE. NIGERIA Email addresses: 1 [email protected], 2 [email protected], 3 [email protected] ABSTRACT Information dissemination is a key concern for most tertiary institutions. While information is relevant for the day-to-day running of a tertiary institution, the rightful information, sometimes, is not available for the appropriate decisions to be taken. The practice, in some institutions, is the use of wooden notice boards for making information available to the academic community. In many cases, such means of information broadcasting has been found to be inefficient, and largely a component of physical presence. However, electronic presence is becoming more and more acceptable for spreading information. To this effect, this paper will discuss the design and implementation of a simplified online bulletin board system called SIMPBOARD that can be accessed through the web browser of a computer or smart phone. Furthermore, the system will allow for anywhere access to bulletins, and possible archiving of same, for reference purposes, through the use of Mongo DB with Meteor JS Framework.
    [Show full text]
  • More Than You Ever Wanted to Know About NT Login Authentication
    A Perspective On Practical Security 2000 More Than You Ever Wanted to Know about NT Login Authentication SystemExperts Corporation Philip C. Cox & Paul B. Hill Abstract Inside The login process is the user's entry-point to the computing • Under the covers for a local NT login environment, the best or perhaps only chance for real • NT & LAN Manager compatibility authentication. No authorization decision has any meaning absent authentication. Taking the rapid adoption of NT as a given, any • Password encryption within the Security Accounts Manager organization must understand exactly how NT login authentication (SAM) database works if it is to determine whether or not NT login can meet the organization's needs. Otherwise, the choices are faith and luck. • User Authentication Process This white paper describes an Interactive NT login and lays the • Use of the LsaLogonUser API groundwork for understanding the Network login. This information is current as of NT 4.0 Service Pack 5. • The groundwork for understanding network login. NT Login Authentication SystemExperts Corporation There are no less than 5 types of “logons” in Windows NT, but only three are commonly used: Interactive, Network, and Service. Boston New York Washington D.C Tampa San Francisco Los Angeles Sacramento 1. Interactive logons are for users logging onto the console and for processes that require “interactive” access. Interactive NT Toll free (USA only): +1 888 749 9800 user authentication itself takes several forms: From outside USA: +1 978 440 9388 - Login with a locally defined user account — no network access is required; the account is authenticated by the machine you are logging into and only by that machine www.systemexperts.com [email protected] Copyright 1997-2001 SystemExperts Corporation.
    [Show full text]
  • Login and Authentication Instructions to Access Webster Web-Link®
    Treasury & Payment Solutions Quick Reference Guide Login and Authentication Instructions to Access Webster Web-Link® The purpose of this guide is to assist users logging in to Web-Link and provide instruction to set up and modify questions and answers associated with the forgotten password and login processes. See the tips on page 3 for password requirements. To log in to Web-Link, you need 3 pieces of information, or “credentials”: a Company ID, User ID, and Password. If you do not know your User ID or Password, work directly with your organization’s Company System Administrator (CSA), or contact your Client Support representative for help. First Time Logging In Make sure you have your Company ID, User ID and temporary password. Your temporary password when first issued is valid for five calendar days. After that, it will expire and will need to be reset. This can be done by your CSA, or assigned Service Specialist. The reset password is valid for three calendar days. Completing your first log in is a four step process. Step 1 – Login 1. Access Web-Link https://websterweblink.com from a supported browser such as Google Chrome, Firefox, Edge or Safari (for MAC). Internet Explorer is not a supported browser. 2. Enter your Company ID 3. Enter your User ID 4. Enter your Temporary Password 5. In the language box leave “English” as the default 6. Click Access Accounts 7. Next you will be prompted to establish login Authentication Credentials Step 2 – Establish login Authentication Credentials Authentication Credentials are a set of three questions and answers that you establish to use if Web-Link ever detects something different during subsequent logs in.
    [Show full text]