Perplex Security Package. Useful security insights for all!

Size: px
Start display at page:

Download "Perplex Security Package. Useful security insights for all!"

Transcription

1 Perplex Security Package Useful security insights for all! Created by: Jeffrey Schoemaker & Daniël Knippers Date first published: Last edit date:

2 Introduction We love Umbraco, we love dashboards in Umbraco and we love security. If you combine all these together you get useful dashboards with a quick overview of a lot of data in Umbraco and we would like to share some of our favourite security dashboards. The package includes: - Several new dashboards - A few new datatypes The ideas of the package is mostly based on the ideas that are described in two blog posts: - I have a dream about user management in Umbraco, by Jeffrey Schoemaker (October 05, 2015): and the mock-up - I have a dream about Umbraco and GDPR, by Jeffrey Schoemaker (December 04, 2017): and the mockup If you have any questions or remarks, please get in contact with us via daniel.knippers@perplex.nl, our website, or preferably via the Umbraco-forum.

3 User section If you have installed the package you ll get a few new dashboards into your user section. Activity log The first added dashboard gives an overview of all user authentication actions in Umbraco. With the introduction of Umbraco 7.7 also came along a few new user-events that are triggered when users perform actions in the Umbraco backoffice ( User actions like login and logout were only logged into the UmbracoLog-file on disk, but that file gets purged by default every 30 days. With this package we hook into these events and store them in a table so you can inspect them when needed. If you go to the User-section you will see this dashboard: In this overview you see all actions, and you can filter on date, specific user, event or IP Adress. You will also see if for example people are trying to guess loginnames. The implemented actions by Umbraco where we hook into are: - Account locked - Account unlocked - Forgot password request

4 - Forgot password changed success - Login failed - Login requires verification - Login success - Logout success - Password changed - Password reset - Reset access failed count All these events are implemented by Umbraco and if one does not trigger correctly, it will not be shown in the dashboard. In that case the best option is to create an issue on issues.umbraco.org.

5 Umbraco Security Settings On this dashboard you see an overview of the most import security settings in Umbraco. We chose to not give editors the possibility to edit these settings over here, but instead extend the Umbraco documentation and reference this. So power users / developers will know where to change these settings, instead of giving editors the possibility to change settings to rubbish settings and restarting the website each time they save the configuration (because they are stored in the web.config). The settings that are shown are: - Minimum password length - Minimum number of non-alphanumeric characters - Maximum Invalid Password Attempts - Password Storage Format - Use Legacy Encoding - Forgot Password link available on Login Page - Automatically logoff after X minutes of inactivity - Umbraco use SSL? - Max Request Length - Disable alternative templates? - Disable find content by id?

6 Lockout s On the last dashboard you can specify whether an administrator will receive an when a user gets locked out of Umbraco. The default behaviour of Umbraco is that when you get locked out, you cannot log in again until an administrator unlocks you, or you ll go into the Forgot password -flow (if available). Wouldn t it be convenient if an administrator gets an that an user was locked out, so he could go into the authentication log and details, and determine whether it were valid attempts, or somebody tries to get into the site. In this dashboard you can specify the receiver of the (an administrator preferably), the subject and the body of the . Within the subject and body of the you can use a few tags to dynamically insert some values: - [#username#]: The username of the locked user - [#datetime#]: The date and time that the account was locked - [#website#]: The name of the website

7 Member section In this section you ll get even more dashboards. Locked accounts A dashboard for locked accounts. This dashboard will work out of the box, because it looks to the Umbraco property Locked. From this dashboard you could lock one or more members directly. Unapproved accounts A dashboard for unapproved accounts: Here you can select one or more members to directly approve or delete them.

8 Activity log This dashboard gives a paginated overview of all events that have happened on a member: From here you can click to the specific member to get an overview of all their actions. This dashboard will only work by adding some custom code to your member login-logic on the frontend. On all the relevante actions you should add some code for the logging like: using PerplexDashboards.Models.MemberDashboard; using PerplexDashboards.Code; // Log a Login action of member, // after member has successfully logged in. int memberid = Members.GetCurrentMemberId(); MemberLogItem.Log(memberId, MemberAuditAction.Login); When implemented they will directly show up in the activity log dashboard.

9 Access log Because of GDPR it s a good habit to register which Umbraco User has viewed or edited data of a member. This data is private to a member and it should be registered when somebody has accessed it. This is shown in this dashboard. Note: To get this data to be shown in the dashboard you ll have to add one datatype to your membertype. - Create a new tab on a membertype called Access Log (or whatever you want to call it). - Add the datatype PerplexDashboards - Member Dashboard - Access Log with the name Access log (or something else). By doing this you ll track the individual view attempts on the user.

10 Password Policy On this dashboard you see an overview of the most import security settings for the member section. The settings that are shown are: - Minimum password length - Minimum number of non-alphanumeric characters - Maximum Invalid Password Attempts - Password Storage Format - Use Legacy Encoding

11 Member Type extension You ll get two additional datatypes that you could add to your Member Type. In the Member Type configuration add the following properties: These will show on an individual member their activity log (login, logout, etcetera) and the access log (who has accessed their data in the backoffice). Figure 1 Member 'Daniel knippers' is viewed several times by Umbracoo User 'techniek@perplex.nl'

12 Added stuff By installing this package you get three new datatypes: - PerplexDashboards - Locked Members ListView - PerplexDashboards - Member Dashboard - Access Log - PerplexDashboards - MemberDashboard - ActivityLog - PerplexDashboards - Unapproved Members ListView The first two are needed to be displayed on the dashboards and the last one is a datatype that you can add to a Member Type in the Member-section. By doing this you will get an overview of all events for that specific user: You have to manually this datatype to your specific Member type! This is not done on install.

13 New tables All events are logged into the tables perplexumbracomemberaccesslog, perplexumbracomemberlog and perplexumbracouserlog which are automatically created by the package. The userlog-table will be automatically filled with relevant data because there are events in Umbraco that are triggered where we hook into. For the memberlog-table you ll have to some lines of code yourself on the relevant places in your code. This can be done with this snippet of code: using PerplexDashboards.Models.MemberDashboard; using PerplexDashboards.Code; // Log a Login action of member, // after member has successfully logged in. int memberid = Members.GetCurrentMemberId(); MemberLogItem.Log(memberId, MemberAuditAction.Login); When implemented they will show up in the member-dashboard.

14 Configuration files The packages need two configuration files that are stored in /config/-folder in your Umbraco solution. Dashboard.config This file is a default Umbraco configuration file, that is used to show dashboards. On startup of Umbraco we will look at the dashboard.config-file (/config/dashboard.config) and we add the following section, if not already present: <section alias="perplexdashboards_memberdashboard"> <areas> <area>member</area> </areas> <tab caption="locked Accounts"> <control showonce="false" addpanel="true">/app_plugins/perplexdashboards/memberdashboard/html/lockedmemberaccounts.html</control> </tab> <tab caption="unapproved Accounts"> <control showonce="false" addpanel="true">/app_plugins/perplexdashboards/memberdashboard/html/unapprovedmemberacco unts.html</control> </tab> <tab caption="activity Log"> <control showonce="false" addpanel="true">/app_plugins/perplexdashboards/memberdashboard/html/memberslog.html</con trol> </tab> </section> <section alias="perplexdashboards_userdashboard"> <areas> <area>users</area> </areas> <tab caption="user Dashboard"> <control showonce="true" addpanel="true" panelcaption="">/app_plugins/perplexdashboards/userdashboard/html/perplex.userdashboard.html</control> </tab> </section> If you want to hide one or more of our dashboards you can remove them over here.

15 userdashboardsettings.config This is a configuration file to store the Lockout- s that can be configured on the tab Lockout s in the User-section. On install it looks like this:

16 Wishlist Hopefully we can extend the functionality in the near future even further. Some of the features we would like to build are: - We would like to extend the Security settings dashboard with some additional properties: o MaxAllowedContentLength o MaxRequestLength (in the Umbraco-folder) o MaxAllowedContentLength (in the Umbraco-folder) - Add the possibility to send the lockout also the involved Umbraco User. Currently it s only possible to send it to the administrator, but it would be really useful if also the user would receive this so he could identify suspicious behaviour - Create a NuGet-packages for this Some known Umbraco issues Our package mostly gives insights for the events that are triggered in the core of Umbraco. We have some known issues that we cannot solve in our package but should be solved in Umbraco Core: - Add UserEvents for enabling and disabling users: - Failed Logon attempts resets to 0 after maximum number of attempts: - PasswordChanged event triggered twice when changing password on Avatar-click: - AccountUnlocked, PasswordChanged AffectedUserId and UserId are switched in the user event: - No affecteduser in UserEvents should be NULL: References - Perplex Internetmarketing, - Package url, - Issue-log Umbraco Our other Umbraco packages: - Umbraco Forms on Perplex Steroids, - PerplexMail, - Official Kraken Image Optimizer plugin for Umbraco,

17

Two options for signing up: Sign in with Google by signing in to Google Drive first and then using this option

Two options for signing up: Sign in with Google by signing in to Google Drive first and then using this option Create an account at http://kidblog.org/home/ Click Sign up for Free Two options for signing up: Sign in with Google by signing in to Google Drive first and then using this option Create a separate login

More information

Getting started with ActiveSecurity MyLogin

Getting started with ActiveSecurity MyLogin 1 (5) Getting started with ActiveSecurity MyLogin 1 Introduction This document contains instructions for starting to use Aventra s ActiveSecurity MyLogin software and explanations of the basic settings.

More information

MANAGING LOCAL AUTHENTICATION IN WINDOWS

MANAGING LOCAL AUTHENTICATION IN WINDOWS MANAGING LOCAL AUTHENTICATION IN WINDOWS Credentials Manager Windows OS has a set of tools that help remedy some of the authentication challenges. For example, the Credential Manager in Windows 7 and newer

More information

Administration Guide. 05 Apr TM and copyright Imagicle spa

Administration Guide. 05 Apr TM and copyright Imagicle spa Administration Guide 05 Apr 2019 TM and copyright 2010-2019 Imagicle spa Table of Contents Administration Guide...1/5 Jabber Gadgets Setup...1/5 Administration Guide Jabber Gadgets Setup The Imagicle Gadget

More information

Mobile Login extension User Manual

Mobile Login extension User Manual extension User Manual Magento 2 allows your customers convenience and security of login through mobile number and OTP. Table of Content 1. Extension Installation Guide 2. Configuration 3. API Settings

More information

Tyler Identity User Account Management New World ERP Foundation

Tyler Identity User Account Management New World ERP Foundation Tyler Identity User Account Management New World ERP Foundation 2018 Tyler Technologies, Inc. Data used to illustrate the reports and screens may include names of individuals, companies, brands, and products.

More information

This user guide covers how existing CSUFEDU Qualtrics account users can migrate their account from the CSUFEDU brand to the Fullerton brand.

This user guide covers how existing CSUFEDU Qualtrics account users can migrate their account from the CSUFEDU brand to the Fullerton brand. Quick Reference Guide Converting Your Qualtrics Account from CSUFEDU This user guide covers how existing CSUFEDU Qualtrics account users can migrate their account from the CSUFEDU brand to the Fullerton

More information

Mediaprotect User manual

Mediaprotect User manual Mediaprotect User manual 1 INTRODUCTION... 4 2 INSTALLATION... 5 2.1 Post install... 5 3 PROTECT MEDIA... 7 3.1 Protect media items... 7 3.1.1 Single User Protection... 8 3.1.2 Role based protection...

More information

Setting Up A WordPress Blog

Setting Up A WordPress Blog Setting Up A WordPress Blog Introduction WordPress can be installed alongside an existing website to be used solely as the 'blog' element of a website, or it can be set up as the foundation for an entire

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. WordPress

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. WordPress About the Tutorial WordPress is an open source Content Management System (CMS), which allows the users to build dynamic websites and blog. WordPress is the most popular blogging system on the web and allows

More information

SkyFormation for Salesforce. Cloud Connector

SkyFormation for Salesforce. Cloud Connector SkyFormation for Salesforce Cloud Connector Overview Salesforce provides a broad set of customers and sales automation and management services delivered as a cloud service. Salesforce helps organizations

More information

Dane County Treasurer s Login Help

Dane County Treasurer s Login Help P a g e 1 Dane County Treasurer s Login Help To gain access to the secure portion of the Treasurer s website, you have to be an AccessDane user associated with a municipality. Go to: https://accessdane.countyofdane.com/account/accountcreate.aspx

More information

USER MANUAL. SEO Suite TABLE OF CONTENTS. Version: 1.4

USER MANUAL. SEO Suite TABLE OF CONTENTS. Version: 1.4 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of SEO Suite... 1 Pre-requisites... 1 Installation... 2 Installation Steps... 2 App Configuration... 5 Contact Us... 11 SEO Suite Version: 1.4 Compatibility:

More information

unsuccessful attempts.

unsuccessful attempts. Step by Step Procedure for Resetting Transaction Password by the User. when the user has been disabled after 3 unsuccessful attempts. The following module helps the Customers in Resetting Transaction password

More information

How to Login, Logout and Manage Password (QRG)

How to Login, Logout and Manage Password (QRG) How to Login, Logout and Manage Password (QRG) This Quick Reference Guide covers the following topics: 1. How to login in to the DCC. How to change (reset) your password 3. What to do if you have forgotten

More information

Quick Start. for Users. Online Banking

Quick Start. for Users. Online Banking Quick Start for Users Online Banking Table of Contents Getting Started... 1 Multifactor Authentication.... 2 Log In.... 3 Reset Your Password.... 4 Reset Your Security Question... 6 Change Your Phone Number....

More information

A*STAR SRDB User Guide

A*STAR SRDB User Guide A*STAR SRDB User Guide Document Version: 5.0 Revised Date: 23 rd March 2010 Document name: ASTAR_UserGuide_5.0.doc Page 1 of 43 Revision History Date Version Author Review By Summary of Changes 9 th July

More information

How can I view my W2 on Vibe?

How can I view my W2 on Vibe? How can I view my W2 on Vibe? Within this document you will find easy How To, step by step instructions for logging onto Vibe and accessing your W2. How to Logon: In your browser s address bar, type the

More information

Source Control. Deployment. What usync Does. usync Versions

Source Control. Deployment. What usync Does. usync Versions usync in an umbraco package that takes the bits of umbraco that are stored in a database and moves them to disk, so you can source control, copy and move your umbraco site between computers and servers.

More information

GETTING STARTED WITH STUDENT LEARNING SPACE Instructions for Students

GETTING STARTED WITH STUDENT LEARNING SPACE Instructions for Students ANNEX A GETTING STARTED WITH STUDENT LEARNING SPACE Instructions for Students SYSTEM REQUIREMENTS 1. The Student Learning Space (SLS) is accessible through the internet browsers on either Windows PC, Mac,

More information

Affinity Provider Portal Training Manual

Affinity Provider Portal Training Manual Training Manual Security Access The provider has the ability to add users from their office to gain access to their information. The role assigned to the user will determine the level of permission for

More information

SECTION 100 LOGIN/LOGOUT

SECTION 100 LOGIN/LOGOUT SECTION 100 LOGIN/LOGOUT SECTION 100 INDEX 101 Login 1-1 101.1 Forgot your password? 1-1 A. View Reminder 1-1 B. Send Password 1-2 102 First Time Users Login 1-2 103 Logout 1-3 SECTION 100: LOGIN/LOGOUT

More information

HOW TO USE WORDPRESS TO BUILD A WEBSITE A STEP-BY-STEP GUIDE

HOW TO USE WORDPRESS TO BUILD A WEBSITE A STEP-BY-STEP GUIDE HOW TO USE WORDPRESS TO BUILD A WEBSITE A STEP-BY-STEP GUIDE YOUR WEBSITE How to login Go to your website and add /wp-admin: www.palondoncourse.co.uk/xxxxxxxxx/wp-admin This will bring up the login screen.

More information

Student Portal. A guide for students. Department of Education and Training, Western Australia,

Student Portal. A guide for students. Department of Education and Training, Western Australia, Student Portal A guide for students Department of Education and Training, Western Australia, 2009 1 Table of Contents What is the Portal?...3 What will I need to access the portal?...3 Safety and responsibility

More information

The New WebEOC (8.1) Guide for Users

The New WebEOC (8.1) Guide for Users The New WebEOC (8.1) Guide for Users September 2016 How do I log on? Your existing username and password have not changed and the logon process is very similar between versions. The key differences besides

More information

Advanced Access Manager

Advanced Access Manager Advanced Access Manager ConfigPress Tutorial V 1.1 Content Advanced Access Manager... 1 ConfigPress Tutorial... 1 Introduction... 3 AAM Configurations... 4 Overview... 4 Caching... 4 Delete Capabilities...

More information

New Password Reset for Dental Connect Provider

New Password Reset for Dental Connect Provider New Password Reset for Dental Connect Provider 1 INDEX Access Dental Connect for Providers:... 3 1. Username verification:... 4 1.1 user name not provided:... 5 1.2 Invalid user name:... 6 1.3 Invalid

More information

Getting Started A GUIDE FOR TEAM MEMBERS

Getting Started A GUIDE FOR TEAM MEMBERS Getting Started A GUIDE FOR TEAM MEMBERS What is CxAlloy Total Quality? 1 User Expectations 1 Your Account 1 Accessing the Site 2 Navigating CxAlloy TQ 2 Updating Issues 4 Uploading Files 5 Completing

More information

CitiManager: Migration Quick Reference Guide for Cardholders

CitiManager: Migration Quick Reference Guide for Cardholders This Quick Reference Guide will help you: 1. How to register for CitiManager? a) Existing online statement cardholders only b) Paper statement cardholders only 2. Important Tips 3. View your Monthly Card

More information

MAXIMUS Provider Billing Application v.3 Sign In and Forgot Password

MAXIMUS Provider Billing Application v.3 Sign In and Forgot Password MAXIMUS Provider Billing Application v.3 Sign In and Forgot Password The following training documentation contains detailed step-by-step instructions and may be used as reference in understanding the Sign

More information

Mobile Login Extension User Manual

Mobile Login Extension User Manual Extension User Manual Magento provides secured and convenient login to Magento stores through mobile number along with OTP. Table of Content 1. Extension Installation Guide 2. API Configuration 3. General

More information

Evoq 8 Content Managers Training Manual

Evoq 8 Content Managers Training Manual Evoq 8 Content Managers Training Manual Table of Contents Chapter 1: User Login... 2 User Login...2 User Login Screen...2 User Logout...2 Chapter 2: Navigating within Evoq 8...3 Editing Bar...3 Dashboard...4

More information

Symantec Security. Setup and Configuration Guide

Symantec  Security. Setup and Configuration Guide Symantec Email Security Setup and Configuration Guide I. Requirements A Symantec Email Security subscription A registered domain name Hosted email service Internet connection 2 II. Getting Started When

More information

AgentWorks Administrator and Manager User Guide - Release 12.5

AgentWorks Administrator and Manager User Guide - Release 12.5 AgentWorks Administrator and Manager User Guide - Release 12.5 March 21, 2013 2012 MoneyGram InternationalAll rights reserved. Table of Contents Registration Overview... 2 1. Initial Log In AgentWorks

More information

How to use Account Manager

How to use Account Manager How to use Account Manager The application is found on the Aurora4Biz webpage: http://aurora4biz.org Choose My Account, and then click on 'Account Manager'. The main page has links along the top. The links

More information

SIS offline. Getting Started

SIS offline. Getting Started SIS offline We highly recommend using Firefox version 3.0 or newer with the offline SIS. Internet Explorer is specifically not recommended because of its noncompliance with internet standards. Getting

More information

A. Getting Started About e-access Enrolling in e-access: Authenticating your account Login... 5

A. Getting Started About e-access Enrolling in e-access: Authenticating your account Login... 5 Contents A. Getting Started... 3 1. About e-access... 3 2. Enrolling in e-access:... 3 3. Authenticating your account... 5 4. Login... 5 B. Fix a Problem... 6 1. Provided the wrong email address during

More information

Install using the Umbraco Package Manager

Install using the Umbraco Package Manager Installation instructions Using the Umbraco Package Manager This documentation is available and updated online http://www.bendsoft.com/downloads/tools- for- umbraco/sharepoint- doclib- for- umbraco/installation/

More information

Creating Your Parent Account

Creating Your Parent Account Parent Portal Guide for Parents 2016-2017 Creating Your Parent Account Before using the parent portal, you must pick up your access id and password from the school. This information must be picked up in

More information

BMC FootPrints 12 Integration with Remote Support

BMC FootPrints 12 Integration with Remote Support BMC FootPrints 12 Integration with Remote Support 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are

More information

MyRRMed User Manual. User Manual. Rev. October Rev. October

MyRRMed User Manual. User Manual. Rev. October Rev. October Rev. October 2017 Rev. October 2017 1 Contents Table of Figures... 3 Revision History... 4 Glossary and Acronyms... 5 1.0 General Information... 6 1.1 What is MyRRMed?... 6 1.2 Contacting Technical Support...

More information

How do I sign up for a Canvas account as a parent?

How do I sign up for a Canvas account as a parent? How do I sign up for a Canvas account as a parent? Parents (Observers) can link their Canvas account to their student's account so they can see assignment dues dates, announcements, and other course content.

More information

ATMS ACTION TRACKING MANAGEMENT SYSTEM. Quick Start Guide. The ATMS dev team

ATMS ACTION TRACKING MANAGEMENT SYSTEM. Quick Start Guide. The ATMS dev team ATMS ACTION TRACKING MANAGEMENT SYSTEM Quick Start Guide The ATMS dev team Contents What is ATMS?... 2 How does ATMS work?... 2 I get it, now where can I find more info?... 2 What s next?... 2 Welcome

More information

Secure Single Sign On with FingerTec OFIS

Secure Single Sign On with FingerTec OFIS Secure Single Sign On with FingerTec OFIS User Guide CONTENTS 3 1 INTRODUCTION Welcome to OFIS Gateway 4-11 2 INSTALLATION & SETUP Registering Your OFIS Gateway Installing & Setting Up Your OFIS Gateway

More information

What is Standard APEX? TOOLBOX FLAT DESIGN CARTOON PEOPLE

What is Standard APEX? TOOLBOX FLAT DESIGN CARTOON PEOPLE What is Standard APEX? TOOLBOX FLAT DESIGN CARTOON PEOPLE About me Freelancer since 2010 Consulting and development Oracle databases APEX BI Blog: APEX-AT-WORK Twitter: @tobias_arnhold - Oracle ACE Associate

More information

owncloud Android App Manual

owncloud Android App Manual owncloud Android App Manual Release 2.7.0 The owncloud developers October 30, 2018 CONTENTS 1 Release Notes 1 1.1 Changes in 2.7.0............................................. 1 1.2 Changes in 2.6.0.............................................

More information

FAQ. General Information: Online Support:

FAQ. General Information: Online Support: FAQ General Information: info@cionsystems.com Online Support: support@cionsystems.com CionSystems Inc. Mailing Address: 16625 Redmond Way, Ste M106 Redmond, WA. 98052 http://www.cionsystems.com Phone:

More information

USER MANUAL SafeStick

USER MANUAL SafeStick USER MANUAL SafeStick ------------------------ Sep 2017 ------------------------ Contents About this User Guide 3 System Requirements 4 Recommendations Setup 5 Setup- Windows 6 Setup- Mac 7 Device Initialization

More information

A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin

A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin 1 P a g e Contents 1. Introduction... 5 2. Who is it for?... 6 3. Community v/s PRO Version... 7 3.1. Which version is

More information

Creating Post(s) In WordPress

Creating Post(s) In WordPress Creating Post(s) In WordPress Posts In WordPress: Here is what posts are in WordPress: Posts are regular blog entries i.e. dynamic content. When any Post(s) are published, they appear automatically in

More information

R9.7 erwin License Server:

R9.7 erwin License Server: R9.7 erwin License Server: Installation and Setup This is a quick guide to setting-up a erwin DM License Server. NOTES: - Concurrent licensing is available for only erwin r8.2 and later releases! - Concurrent

More information

Copyright 2017 Softerra, Ltd. All rights reserved

Copyright 2017 Softerra, Ltd. All rights reserved Copyright 2017 Softerra, Ltd. All rights reserved Contents Introduction Security Considerations Installation Configuration Uninstallation Automated Bulk Enrollment Troubleshooting Introduction Adaxes Self-Service

More information

ANIXIS Password Reset

ANIXIS Password Reset ANIXIS Password Reset Evaluator s Guide V3.22 Copyright 2003-2018 ANIXIS. All rights reserved. ANIXIS, ANIXIS Password Reset, Password Policy Enforcer, PPE/Web, Password Policy Client, Password Policy

More information

Google Authenticator User Guide

Google Authenticator User Guide The Google Authenticator app on your mobile phone will generate time based one time verification codes, each of which is valid only for thirty seconds. These verification codes are used to log in to the

More information

Setup Guide. Page 0

Setup Guide. Page 0 Email Setup Guide Page 0 Table of Contents Mailbox Setup Guide... 2 Before you Start... 2 Desktop Mail Clients... 3 Outlook 2016 setup... 3 Outlook 2013 setup... 7 Outlook 2010 setup... 12 Windows 10 Mail

More information

HBU Self Service Password Reset

HBU Self Service Password Reset HBU Self Service Password Reset Houston Baptist University implemented self-service password reset in July 2014 to give end users/students a way to manage their own password resetting without relying upon

More information

MYOFFICE VIRTUAL DESKTOP AND SSL VPN ACCESS MYOFFICE

MYOFFICE VIRTUAL DESKTOP AND SSL VPN ACCESS MYOFFICE MYOFFICE VIRTUAL DESKTOP AND SSL VPN ACCESS MYOFFICE 2017 1.0 DOCUMENT INFORMATION 2 Document History Version Modification Author Date 1.0 Manual update Stefano Storoni 17/11/2017 Document Diffusion Internal

More information

ESSR European Space Software Repository

ESSR European Space Software Repository ESSR European Space Software Repository Software User Manual T/ +4 031 424814 F/ +4 0314242816 E/ hello@innobyte.com W/ www.innobyte.com A/ Bl. Regiei, nr.6b, etaj 4-5, Sector 6, București, 060204, România

More information

GUIDE TO POSTING ON THE CSE WEBSITE

GUIDE TO POSTING ON THE CSE WEBSITE GUIDE TO POSTING ON THE CSE WEBSITE CSE Listed Issuer Documentation Prepared by: Sparx Publishing Group LISTED ISSUER DOCUMENTATION VERSION 1.5 User Management... 3 Login Screen... 4 Password Reset...

More information

Things You Will Most Likely Want to Do in TeamSnap

Things You Will Most Likely Want to Do in TeamSnap How to Use TeamSnap for Parents This is a How To Guide for parents of children playing in Beaumont Soccer Association who want to learn how to utilize TeamSnap effectively. TeamSnap helps Managers: Organize

More information

Login Instructions for Falck MyCare

Login Instructions for Falck MyCare Login Instructions for Falck MyCare Because of the new General Data Protection Regulation (GDPR) on the protection of personal data, we have upgraded our Falck MyCare booking system to a newer and safer

More information

Evoq 9 Content Managers Training Manual

Evoq 9 Content Managers Training Manual Evoq 9 Content Managers Training Manual Table of Contents Chapter 1: User Login... 2 User Login...2 User Login Screen...2 User Logout...2 Chapter 2: Navigating within Evoq 9...3 Editing Bar...3 Dashboard...4

More information

PeoplePassword Documentation v6.0

PeoplePassword Documentation v6.0 PeoplePassword Documentation v6.0 Instructions to Configure and Use PeoplePassword v6.0, LLC Contents Overview... 3 Getting Started... 3 Components of PeoplePassword... 3 Core Components... 3 Optional

More information

Theme System: It allows modifying the site view and functionality. It includes images, stylesheet, template files and custom pages.

Theme System: It allows modifying the site view and functionality. It includes images, stylesheet, template files and custom pages. WORDPRESS BASICS Contents WordPress - Overview... 2 WordPress - Dashboard... 4 WordPress - Categories... 6 WordPress - Posts... 7 WordPress - Media Library... 8 WordPress - Links... 9 Master Slider...

More information

BlueTeam Release Notes:

BlueTeam Release Notes: BlueTeam Release Notes: BlueTeam version 4.1.10 1. Incidents routed form IAPro to BlueTeam will carry the sender notes to the yellow sticky note available when the BT user opens the incident. 2. Added

More information

STRS OHIO Telework F5 BIG-IP Edge Client for Mac Systems (Imac, Air, Macbook, Mini) User Guide

STRS OHIO Telework F5 BIG-IP Edge Client for Mac Systems (Imac, Air, Macbook, Mini) User Guide STRS OHIO Telework F5 BIG-IP Edge Client for Mac Systems (Imac, Air, Macbook, Mini) User Guide For assistance, please contact the ITS Service Desk at x4357 or 227-8633. Table of Contents First Time Use

More information

Customer Care Portal User Guide

Customer Care Portal User Guide Customer Care Portal User Guide Table of Contents Logging In...3 Live Chat... 3 Viewing your Cases...4 Logging a Case for Customer Support...4 Projects...6 Knowledge Base....6 Content.....7 Forms...7 Event

More information

Pinterest. What is Pinterest?

Pinterest. What is Pinterest? Pinterest What is Pinterest? Pinterest is like an electronic bulletin board that allows users to save and share photos they find on the internet. Usually when a user pins a photo it is linked to a blog

More information

OneRoof CyberCafePro Client Installation, Setup and User Manual

OneRoof CyberCafePro Client Installation, Setup and User Manual OneRoof CyberCafePro Client Installation, Setup and User Manual Suggestion: View manual on computer at 200% to see screenshot details. Client Manual: Version 6.0.x March 15, 2010 Copyright 2010, OneRoof,

More information

Keep Track of Your Passwords Easily

Keep Track of Your Passwords Easily Keep Track of Your Passwords Easily K 100 / 1 The Useful Free Program that Means You ll Never Forget a Password Again These days, everything you do seems to involve a username, a password or a reference

More information

Mend for Eclipse quick start guide local analysis

Mend for Eclipse quick start guide local analysis The Semmle Mend for Eclipse plugin allows users to view Semmle results in Eclipse. This document describes how to install and use the plugin for local analysis. You can install the plugin using a Semmle

More information

New in isupport v12.7

New in isupport v12.7 New in isupport v12.7 In addition to continued enhancement of code quality, this release contains the following features: Social Client renamed to mysupport Email Processing Email Rules and Rule Groups

More information

The 10 step communication plan

The 10 step communication plan The 10 step communication plan Follow these 10 suggested steps and you will be successful at launching the Specops password reset service. Step 1 Activity: Intranet texts explaining the service Suggested

More information

https://agent.pointandpay.net/pointandpay_counter/

https://agent.pointandpay.net/pointandpay_counter/ Quick Reference Guide 1. How to login Point & Pay Save the Point&Pay Admin Web-URL in your favorites: https://agent.pointandpay.net/pointandpay_counter/ Always use Internet Explorer. Note: Avoid upgrading

More information

Greenville CSD Parent Guide to SchoolTool

Greenville CSD Parent Guide to SchoolTool Accessing your student s on-line SchoolTool school records is now a simple matter. There are several things that need to be done to begin this process. 1. Send your email address to us Your current email

More information

Part 1: Understanding Windows XP Basics

Part 1: Understanding Windows XP Basics 542362 Ch01.qxd 9/18/03 9:54 PM Page 1 Part 1: Understanding Windows XP Basics 1: Starting Up and Logging In 2: Logging Off and Shutting Down 3: Activating Windows 4: Enabling Fast Switching between Users

More information

Please post bugs on our forum on or us on

Please post bugs on our forum on  or  us on Login One! authentication and user plug-in for Joomla! 3.x Trial Edition 2011-2018 INNATO BV - www.innato.nl - All rights reserved **************************************************************************

More information

Portal/Extranet User Guide for Clients

Portal/Extranet User Guide for Clients Portal/Extranet User Guide for Clients Welcome to the ichannel Portal/Extranet. This guide will walk you through logging into your personalized, secure portal/extranet site. It will also show you how to

More information

Open Telekom Cloud Tutorial: Getting Started. Date published: Estimated reading time: 20 minutes Authors: Editorial Team

Open Telekom Cloud Tutorial: Getting Started. Date published: Estimated reading time: 20 minutes Authors: Editorial Team Date published: 03.08.2018 Estimated reading time: 20 minutes Authors: Editorial Team The bookmarks and navigation in this tutorial are optimized for Adobe Reader. Getting Started 1. Introduction 2. Prerequisites

More information

User Guide Dated: 26 January 2018

User Guide Dated: 26 January 2018 User Guide Dated: 26 January 2018 Table Of Contents Understanding Tags and Automations...3 Analytics...4 Settings...6 Tags...11 Automations...11 Example Automation...14 Two Types of Automation Nodes...16

More information

Guide to your CGIAR Network account Self Service tool

Guide to your CGIAR Network account Self Service tool Guide to your CGIAR Network account Self Service tool The self-service tool allows you to: Change Password: Change your current password from anywhere using your web browser. Reset Password: Reset your

More information

End-User Reference Guide Troy University OU Campus Version 10

End-User Reference Guide Troy University OU Campus Version 10 End-User Reference Guide Troy University OU Campus Version 10 omniupdate.com Table of Contents Table of Contents... 2 Introduction... 3 Logging In... 4 Navigating in OU Campus... 6 Dashboard... 6 Content...

More information

DIRECTORY UPDATE V3.0 Quick Start Guide

DIRECTORY UPDATE V3.0 Quick Start Guide DIRECTORY UPDATE V3.0 Quick Start Guide Directory Update is an easy-to-use, customizable, Web-based selfservice utility that allows an end-user to update their own information in the Active Directory and

More information

If your Mac keeps asking for the login keychain password

If your Mac keeps asking for the login keychain password If your Mac keeps asking for the login keychain password The password of your macos user account might not match the password of your login keychain. Either create a new login keychain or update it with

More information

STRS OHIO F5 Access Client Setup for ChromeBook Systems User Guide

STRS OHIO F5 Access Client Setup for ChromeBook Systems User Guide STRS OHIO F5 Access Client Setup for ChromeBook Systems User Guide For assistance, please contact the ITS Service Desk at x4357 or 227-8633. Table of Contents First Time Use of Remote Access... 1 F5 Access

More information

PASSPORTAL PLUGIN DOCUMENTATION

PASSPORTAL PLUGIN DOCUMENTATION Contents Requirements... 2 Install or Update Passportal Plugin Solution Center... 3 Configuring Passportal Plugin... 5 Client mapping... 6 User Class Configuration... 7 About the Screens... 8 Passportal

More information

User manual. - Edition 1 - (Last updated: 03/12/2015)

User manual. - Edition 1 - (Last updated: 03/12/2015) User manual - Edition 1 - (Last updated: 03/12/2015) mail2cms user manual 2015 myheimarbeit.de Prolog mail2cms is the email import solution for umbraco 7.1+. With this package you can import emails into

More information

TRAINING GUIDE. Tablet: Cradle to Mobile Configuration and Setup

TRAINING GUIDE. Tablet: Cradle to Mobile Configuration and Setup TRAINING GUIDE Tablet: Cradle to Mobile Configuration and Setup Tablet Cradle to Mobile The Lucity Android Tablet and Lucity ios applications have been designed to work under the same framework as the

More information

IT Access Portal User Guide (Employees)

IT Access Portal User Guide (Employees) IT Access Portal User Guide (Employees) Introduction The University of Salford IT Access Portal provides University employees with secure, off-campus access to core IT applications and resources; for example:

More information

Contents Release Notes System Requirements Using Jive for Office

Contents Release Notes System Requirements Using Jive for Office Jive for Office TOC 2 Contents Release Notes...3 System Requirements... 4 Using Jive for Office... 5 What is Jive for Office?...5 Working with Shared Office Documents... 5 Get set up...6 Get connected

More information

KHEDS Account Creation and Maintenance URL:

KHEDS Account Creation and Maintenance URL: KHEDS Account Creation and Maintenance URL: www.kansasregents.org The KBOR website has both a public and private section. Aggregate reports appropriate for public viewing can be found on the website without

More information

Web Pro Manager: General User Guide

Web Pro Manager: General User Guide Web Pro Manager: General User Guide Version 1.14 (7/2013) Web Pro Manager is an open-source website management platform that is easy to use, intuitive, and highly customizable. Web Pro Manager can be used

More information

Self Service Password Reset

Self Service Password Reset Self Service Password Reset Provided you have already registered for the Self Service Password Reset ability, if you forget your OCC password and would like to reset it, go to http://passwordreset.ocean.edu/

More information

How To Set User Account Password In Windows 7 From Guest

How To Set User Account Password In Windows 7 From Guest How To Set User Account Password In Windows 7 From Guest To change the password of a specific user in windows 7 or 8.1, without knowing How to change or set Windows 7 default font settings to bold, italic?

More information

Password Reset PRO INSTALLATION GUIDE

Password Reset PRO INSTALLATION GUIDE Password Reset PRO INSTALLATION GUIDE This guide covers the new features and settings available in Password Reset PRO. Please read this guide completely to ensure a trouble-free installation. January 2009

More information

Quick Start Guide (CM)

Quick Start Guide (CM) NetBrain Integrated Edition 7.1 Quick Start Guide (CM) Version 7.1 Last Updated 2018-08-20 Copyright 2004-2018 NetBrain Technologies, Inc. All rights reserved. Contents 1. Managing Network Changes... 3

More information

Accounts and Passwords

Accounts and Passwords Accounts and Passwords Hello, I m Kate and we re here to learn how to set up an account on a website. Many websites allow you to create a personal account. Your account will have its own username and password.

More information

End User Password Self Service Procedures

End User Password Self Service Procedures End User Password Self Service Procedures End User Password Self Service Procedures Page 1 of 19 Document Information Name: Author: Phone#: Email ID: End User Password Self Service Procedures Corporate

More information

Getting Started. What is the genuine URL for RHB Now Internet Banking? The genuine URL is Username and Password

Getting Started. What is the genuine URL for RHB Now Internet Banking? The genuine URL is   Username and Password Getting Started What is the genuine URL for RHB Now Internet Banking? The genuine URL is https://rhbnow.rhbgroup.com/kh Username and Password What should I do if I've forgotten my Username? Please access

More information

The following steps guide you through logging in to the Virtual Gateway:

The following steps guide you through logging in to the Virtual Gateway: Logon Process for the Virtual Gateway The following steps guide you through logging in to the Virtual Gateway: 1. Access the Virtual Gateway home page at www.mass.gov/vg and click the Logon link: Click

More information