Version 1.0 TECHNICAL NOTE. Restricting Fingerprint DFA Size by Using Variables

Size: px
Start display at page:

Download "Version 1.0 TECHNICAL NOTE. Restricting Fingerprint DFA Size by Using Variables"

Transcription

1 Version 1.0 TECHNICAL NOTE Restricting Fingerprint DFA Size by Using Variables Document version Aug 13, 2004 List of changes First version of the document for StoneGate IPS 1.0 with StoneGate Management Center 3.0.

2 Overview The StoneGate IPS regular expressions are used in fingerprints to match traffic stream byte sequences. Although the flexible syntax provides fine-detailed pattern matching, the regular expression syntax requires careful use. The wildcard characters can be used to represent any byte value. Therefore, the * or + wildcards used in a middle of a pattern can easily result to an expression that has a large number of different matching states. The computed matching pattern can grow exponentially, thus becoming too complex for efficient use on the Sensors. For example, the pattern.*expr-a.*expr-b should not be used because of the.* wildcard between EXPR-A and EXPR-B. Instead, the pattern needs to be divided into manageable chunks by using variables as in Illustration 1.1. ILLUSTRATION 1.1 Replacing wildcard in a middle of a pattern.*expr-a\p{a=1,ignore}.*expr-b\p{a==1->a=0} The wildcard is replaced by dividing the expression into two separate branches. After the first branch.*expr-a matches, the fingerprint does not match for the traffic stream until the second branch.*expr-b has also matched. The ignore keyword indicates that the corresponding first branch is only a partial match for the fingerprint. It does not trigger the response defined for the fingerprint, unless EXPR-B matches after EXPR-A has matched. The technical details are discussed in the following sections: Size Issues with Fingerprint DFAs, on page 2 describes the technical background on this issue. Using Variables in Fingerprint Expressions, on page 4 describes how to use variables in the fingerprints. Size Issues with Fingerprint DFAs The StoneGate IPS fingerprint language syntax is an extended form of regular expressions. Regular expressions are a powerful way of expressing pattern matching that can be divided roughly into two basic methods: deterministic and nondeterministic finite-state automaton (DFA and NFA, respectively). These methods differ in matching speed and memory usage: DFA consumes a lot of memory but it is superior in matching speed compared to NFA. NFA does not consume a lot of memory but the pattern matching is slow when compared to DFA. TECHNICAL NOTE 2

3 StoneGate IPS uses DFA to compile the fingerprint patterns into a binary data structure called fingerprint DFA. The size of this binary structure is directly comparable to the number of matching states it contains. Regular expressions allow using wildcard characters for flexible matching. When wildcards are not used in a middle of a fingerprint expression, the number of states in the fingerprint DFA grows roughly linearly with the number of characters in the expression. If wildcards are used in a middle of a pattern, it is quite possible to end up with a fingerprint DFA that has an exponentially growing number of states as in Illustration 1.2. ILLUSTRATION 1.2 Wildcard use that should be avoided.*expr-a.*expr-b This fingerprint matches when there are zero or more bytes in front of EXPR-A match and zero or more bytes between EXPR-A match and EXPR-B match. In this case, the exponential growth occurs due to the.* wildcard between EXPR-A and EXPR-B. The StoneGate IPS fingerprint syntax provides variables to deal with exponential growth of a fingerprint DFA. By using variables it is possible to reduce the amount of states in the resulting fingerprint DFA. The solution is to replace wildcard characters in a middle of a pattern by using variables. Especially, the * and + wildcards in a middle of a pattern should be replaced. Instead of using.* in the middle of the pattern, the same matching criteria can be expressed with variables as in Illustration 1.3. ILLUSTRATION 1.3 Using variables to replace wildcards in a middle of an expression.*expr-a\p{var_a=1,ignore}.*expr-b\p{var_a==1->var_a=0} The ignore keyword indicates that EXPR-A alone is not considered as a match. EXPR-B alone is not considered as a match either; EXPR-A has to match first so that the var_a is set to 1. Then, EXPR-B matches only when EXPR-A has already matched, as indicated by the condition that the var_a has to be 1 for matching EXPR-B. The var_a=0 expression resets the variable after a successful match. TECHNICAL NOTE 3

4 Using Variables in Fingerprint Expressions Variables can be used for defining related regular expression patterns. These relations can be expressed with the variables, so that the fingerprint matches when all the related patterns match. Each variable is unique within the fingerprint or fingerprint group where the variable is used. The name of a fingerprint variable can be anything consisting of alphanumeric and the underscore characters [A-Za-z_0-9]. The variable name must not begin with a digit. The variable value can be either 0 or 1. The values persist through each individual traffic stream. A variable extension can consist of conditional expressions, value setting expressions, or both. Variables are defined in the fingerprint expressions as in Illustration 1.4. ILLUSTRATION 1.4 Variable syntax for fingerprints \p{conditional_expressions} \p{value_setting_expressions} \p{conditional_expressions->value_setting_expressions} A value setting expression defines the values for one or more variables when the corresponding top-level branch matches. For example: \p{var_a=1} A conditional expression inspects the values defined for one or more variables so that the corresponding top-level branch matches, and the optional variable setting expressions are processed only if the conditional expression is true. For example: \p{var_b==1} When using both variable expression types for the same top-level branch, the -> implication operator must be used. For example: \p{var_a==1->var_a=0} Note that a single equal sign = sets a value for a variable, whereas two consecutive equal signs == evaluate the value of a variable. A variable extension is evaluated when the corresponding top-level branch matches. Variables can be used only in each top-level branch of a fingerprint. Therefore, variables cannot be used inside the () expression grouping parentheses. Also, the variable extension must always be defined at the end of the top-level branch. In Illustration 1.5, valid variable extensions are used in the two top-level branches that are separated by the logical OR symbol. ILLUSTRATION 1.5 Valid use of variables in a fingerprint.*expr-a\p{var_a=1}.*expr-b\p{var_a==1->var_a=0,var_b=1} TECHNICAL NOTE 4

5 Value Setting Expressions A value setting expression defines the values for one or more variables when the corresponding top-level branch matches. Variable values are defined as follows: A variable value is defined with variable_name=value. The variable name has to be unique in the fingerprint and the fingerprint group where it is used. For example: \p{var_a=1} Multiple variable values can be defined by separating them with a comma, for example: \p{var_a=0,var_b=1}. The ignore keyword indicates that the corresponding top-level branch is only a partial match for a fingerprint. It does not trigger the response defined for the fingerprint. For the example in Illustration 1.5, the response is triggered only if EXPR-B matches after EXPR-A has matched. ILLUSTRATION 1.6 Using the ignore keyword in fingerprint variables.*expr-a\p{var_a=1,ignore}.*expr-b\p{var_a==1->var_a=0} Conditional Expressions A conditional expression inspects the values defined for one or more variables so that the corresponding top-level branch matches. The variable setting expressions are processed only if the conditional expression is true. If the conditional expression does not match, no variable setting expressions are evaluated, and the top-level branch is ignored just as if the ignore keyword was used in a variable setting expression. The conditional expressions for variables are used as follows: variable_name==value matches when the value of the defined variable is equal to value. For example, \p{var_a==1}. Multiple conditional expressions can be defined by separating them with the && logical AND operator. For example: \p{var_a==1&&var_b==0}. Note that there is no logical OR operation for the conditional variable expressions. TECHNICAL NOTE 5

6 Trademarks and Patents Stonesoft, the Stonesoft logo and StoneGate are all trademarks or registered trademarks of Stonesoft Corporation. Multi-link technology, multi-link VPN, and the StoneGate clustering technology-as well as other technologies included in StoneGate-are protected by patents or pending patent applications in the U.S. and other countries. All other trademarks or registered trademarks are property of their respective owners. Copyright and Disclaimer Copyright Stonesoft Corporation. All rights reserved. These materials, Stonesoft products and related documentation are protected by copyright and other laws, international treaties and conventions. All rights, title and interest in the materials, Stonesoft products and related documentation shall remain with Stonesoft and its licensors. All registered or unregistered trademarks in these materials are the sole property of their respective owners. No part of this document or related Stonesoft products may be reproduced in any form, or by any means without written authorization from Stonesoft Corporation. Stonesoft provides this document for informational purposes only, is subject to change without notice and does not represent a commitment on the part of Stonesoft. Stonesoft assumes no liability for any errors or inaccuracies that may appear in these materials; use these materials at your own risk. Stonesoft does not warrant or endorse any third party products described herein. THESE MATERIALS ARE PROVIDED "AS-IS." STONESOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, AS TO, THE INFORMATION CONTAINED HEREIN. IN ADDITION, STONESOFT MAKES NO EXPRESS OR IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE OR USE WITH RESPECT THE INFORMATION OR TECHNIQUES CONTAINED IN THESE MATERIALS. IN NO EVENT SHALL STONESOFT BE LIABLE FOR ANY INDIRECT, SPECIAL, CONSEQUENTIAL OR INCIDENTAL DAMAGES, INCLUDING, BUT NOT LIMITED TO, LOST PROFITS OR LOSS OR DAMAGE TO DATA ARISING FROM THE USE OF THESE MATERIALS, EVEN IF ADVISED IN ADVANCE OF THE POSSIBILITY OF SUCH DAMAGES. Revision: International Headquarters Stonesoft Corp. Itälahdenkatu 22a FIN Helsinki, Finland tel fax. info.emea@stonesoft.com Business ID: VAT number: FI Americas Headquarters Stonesoft Inc. 115 Perimeter Center Place South Terraces, Suite 1000 Atlanta, GA tel fax. info.americas@stonesoft.com Asia Pacific Headquarters Stonesoft Corp. 90 Cecil Street # Singapore tel fax. info.asiapacific@stonesoft.com

StoneGate Firewall/VPN How-To Installing and Activating StoneGate FW/VPN in VMware ESX Server

StoneGate Firewall/VPN How-To Installing and Activating StoneGate FW/VPN in VMware ESX Server StoneGate Firewall/VPN How-To Installing and Activating StoneGate FW/VPN in VMware ESX Server Created: June 11, 2008 Table of Contents Introduction to Installing and Activating StoneGate FW/VPN in VMware

More information

StoneGate IPS. Hardware Requirements for Version 5.2.0

StoneGate IPS. Hardware Requirements for Version 5.2.0 StoneGate IPS Hardware Requirements for Version 5.2.0 Created: July 9, 2010 Table of Contents StoneGate Appliances... 3 Certified Intel Platforms... 3 Other Intel Platforms... 3 StoneGate Appliances StoneGate

More information

Stonesoft User Agent. Release Notes for Version 1.1.3

Stonesoft User Agent. Release Notes for Version 1.1.3 Stonesoft User Agent Release Notes for Version 1.1.3 Created: November 26, 2012 Table of Contents What s New... 3 Features... 3 Enhancements... 3 Fixes... 3 Changes... 4 System Requirements... 4 General

More information

Version 2.0 HOW-TO GUIDELINES. Setting up a Clustered VPN between StoneGate and Check Point NG TECHN11SG2.1-3/4/03

Version 2.0 HOW-TO GUIDELINES. Setting up a Clustered VPN between StoneGate and Check Point NG TECHN11SG2.1-3/4/03 Version 2.0 HOW-TO GUIDELINES Setting up a Clustered VPN between StoneGate and Check Point NG TECHN11SG2.1-3/4/03 Introduction This document outlines the steps necessary to set up a clustered site-to-site

More information

Stonesoft Firewall/VPN Express. Release Notes for Version 5.5.4

Stonesoft Firewall/VPN Express. Release Notes for Version 5.5.4 Stonesoft Firewall/VPN Express Release Notes for Version 5.5.4 Created: December 17, 2013 Table of Contents What s New... 3 Fixes... 3 System Requirements... 4 Stonesoft Firewall/VPN Appliances... 4 Build

More information

Stonesoft Firewall/VPN Express. Release Notes for Version 5.5.2

Stonesoft Firewall/VPN Express. Release Notes for Version 5.5.2 Stonesoft Firewall/VPN Express Release Notes for Version 5.5.2 Created: September 24, 2013 Table of Contents What s New... 3 Fixes... 3 System Requirements... 4 Stonesoft Firewall/VPN Appliances... 4 Build

More information

StoneGate FW/VPN. Hardware Requirements for Version 5.2.0

StoneGate FW/VPN. Hardware Requirements for Version 5.2.0 StoneGate FW/VPN Hardware Requirements for Version 5.2.0 Created: September 6, 2010 Table of Contents System Requirements... 3 Stonesoft StoneGate Firewall/VPN Appliances... 3 Certified Intel Platforms...

More information

StoneGate Management Center version 5.2. Hardware Requirements

StoneGate Management Center version 5.2. Hardware Requirements StoneGate Management Center version 5.2 Hardware Requirements July 12, 2010 Table of Contents System Requirements... 3 Basic Management System Hardware Requirements... 3 Recommendations for Enterprise

More information

StoneGate IPsec VPN Client Release Notes for Version 4.2.0

StoneGate IPsec VPN Client Release Notes for Version 4.2.0 StoneGate IPsec VPN Client Release Notes for Version 4.2.0 Created: July 24, 2008 Table of Contents What s New... 3 System Requirements... 4 Build Version... 4 Compatibility... 4 IPsec Compliance... 4

More information

Stonesoft Firewall/VPN Express. Release Notes for Version 5.5.1

Stonesoft Firewall/VPN Express. Release Notes for Version 5.5.1 Stonesoft Firewall/VPN Express Release Notes for Version 5.5.1 Created: July 26, 2013 Table of Contents What s New... 3 Enhancements in Firewall/VPN Express... 3 Fixes... 3 System Requirements... 5 Stonesoft

More information

StoneGate IPsec VPN Client Release Notes for Version 5.0.1

StoneGate IPsec VPN Client Release Notes for Version 5.0.1 StoneGate IPsec VPN Client Release Notes for Version 5.0.1 Created: July 2, 2009 Table of Contents What s New... 3 System Requirements... 4 Build Version... 4 Product Binary Checksums... 4 Compatibility...

More information

StoneGate IPsec VPN Client. Release Notes for Version 5.2.1

StoneGate IPsec VPN Client. Release Notes for Version 5.2.1 StoneGate IPsec VPN Client Release Notes for Version 5.2.1 Created: October 1, 2010 Table of Contents What s New... 3 Fixes... 3 System Requirements... 4 General Requirements... 4 Operating Systems...

More information

StoneGate IPsec VPN Client Release Notes for Version 4.3.1

StoneGate IPsec VPN Client Release Notes for Version 4.3.1 StoneGate IPsec VPN Client Release Notes for Version 4.3.1 Created: October 13, 2008 Table of Contents What s New... 3 System Requirements... 4 Build Version... 4 Product Binary Checksums... 4 Compatibility...

More information

StoneGate IPsec VPN Client Release Notes for Version 5.0.0

StoneGate IPsec VPN Client Release Notes for Version 5.0.0 StoneGate IPsec VPN Client Release Notes for Version 5.0.0 Created: April 30, 2009 Table of Contents What s New... 3 System Requirements... 4 Build Version... 4 Product Binary Checksums... 4 Compatibility...

More information

Stonesoft IPsec VPN Client. Release Notes for Version 5.4.1

Stonesoft IPsec VPN Client. Release Notes for Version 5.4.1 Stonesoft IPsec VPN Client Release Notes for Version 5.4.1 Updated: April 14, 2014 Table of Contents What s New... 3 Enhancements... 3 Fixes... 3 System Requirements... 3 General Requirements... 3 Operating

More information

Stonesoft Firewall/VPN Express. Release Notes for Version 5.5.7

Stonesoft Firewall/VPN Express. Release Notes for Version 5.5.7 Stonesoft Firewall/VPN Express Release Notes for Version 5.5.7 Created: April 9, 2014 Table of Contents What s New... 3 Fixes... 3 System Requirements... 5 Stonesoft Firewall/VPN Appliances... 5 Build

More information

TECHNICAL NOTE. Switch Compatibility with Stonesoft Cluster Products

TECHNICAL NOTE. Switch Compatibility with Stonesoft Cluster Products TECHNICAL NOTE Switch Compatibility with Stonesoft Cluster Products Copyright 2000 2003 Stonesoft Corp. All rights reserved. All trademarks or registered trademarks are property of their respective owners.

More information

StoneGate SSL VPN Release Notes for Version 1.2.1

StoneGate SSL VPN Release Notes for Version 1.2.1 StoneGate SSL VPN Release Notes for Version 1.2.1 Created: February 25, 2009 Table of Contents What s New... 3 System Requirements... 4 Build Version... 4 Product Binary Checksums... 4 Compatibility...

More information

StoneGate Management Center. Release Notes for Version 5.1.4

StoneGate Management Center. Release Notes for Version 5.1.4 StoneGate Management Center Release Notes for Version 5.1.4 Created: August 20, 2010 Table of Contents What s New... 3 Enhancements... 3 Fixes... 3 Major Changes Introduced in Version 5.1... 4 System Requirements...

More information

StoneGate SSL VPN Release Notes for Version 1.2.0

StoneGate SSL VPN Release Notes for Version 1.2.0 StoneGate SSL VPN Release Notes for Version 1.2.0 Created: November 6, 2008 Table of Contents What s New... 3 System Requirements... 4 Build Version... 4 Product Binary Checksums... 4 Compatibility...

More information

StoneGate SSL VPN Release Notes for Version 1.3.1

StoneGate SSL VPN Release Notes for Version 1.3.1 StoneGate SSL VPN Release Notes for Version 1.3.1 Created: July 29, 2009 Table of Contents What s New... 3 System Requirements... 4 Build Version... 4 Product Binary Checksums... 4 Compatibility... 5 Upgrade

More information

Stonesoft Management Center. Release Notes for Version 5.6.1

Stonesoft Management Center. Release Notes for Version 5.6.1 Stonesoft Management Center Release Notes for Version 5.6.1 Updated: January 9, 2014 Table of Contents What s New... 3 Fixes... 3 System Requirements... 6 Basic Management System Hardware Requirements...

More information

Stonesoft SSL VPN. Release Notes for Version 1.5.3

Stonesoft SSL VPN. Release Notes for Version 1.5.3 Stonesoft SSL VPN Release Notes for Version 1.5.3 Created: December 1, 2011 Table of Contents What s New... 3 New Features... 3 Enhancements... 3 Fixes... 3 System Requirements... 4 Stonesoft Appliances...

More information

StoneGate Management Center Release Notes for Version 4.2.1

StoneGate Management Center Release Notes for Version 4.2.1 StoneGate Management Center Release Notes for Version 4.2.1 Created: July 24, 2008 Table of Contents What s New... 3 System Requirements... 4 Build Version... 5 Compatibility... 5 Installation Instructions...

More information

RELEASE NOTES. StoneGate Firewall/VPN v for IBM zseries

RELEASE NOTES. StoneGate Firewall/VPN v for IBM zseries RELEASE NOTES StoneGate Firewall/VPN v2.2.10 for IBM zseries Copyright 2006 Stonesoft Corp. All rights reserved. All trademarks or registered trademarks are property of their respective owners. Disclaimer:

More information

StoneGate Management Center. Release Notes for Version 5.3.3

StoneGate Management Center. Release Notes for Version 5.3.3 StoneGate Management Center Release Notes for Version 5.3.3 Created: October 21, 2011 Table of Contents What s New... 3 Fixes... 3 Other Changes... 4 System Requirements... 5 Basic Management System Hardware

More information

StoneGate Management Center. Release Notes for Version 5.3.2

StoneGate Management Center. Release Notes for Version 5.3.2 StoneGate Management Center Release Notes for Version 5.3.2 Created: September 21, 2011 Table of Contents What s New... 3 Enhancements... 3 Fixes... 3 Other Changes... 4 System Requirements... 5 Basic

More information

StoneGate SSL VPN. Release Notes for Version 1.5.0

StoneGate SSL VPN. Release Notes for Version 1.5.0 StoneGate SSL VPN Release Notes for Version 1.5.0 Created: August 10, 2011 Table of Contents What s New... 3 Enhancements... 3 Fixes... 3 System Requirements... 4 StoneGate Appliances... 4 Build Version...

More information

StoneGate SSL VPN. Release Notes for Version 1.4.5

StoneGate SSL VPN. Release Notes for Version 1.4.5 StoneGate SSL VPN Release Notes for Version 1.4.5 Created: March 3, 2011 Table of Contents What s New... 3 Enhancements... 3 Fixes... 3 System Requirements... 4 StoneGate Appliances... 4 Build Version...

More information

StoneGate Management Center. Release Notes for Version 4.0.1

StoneGate Management Center. Release Notes for Version 4.0.1 StoneGate Management Center Release Notes for Version 4.0.1 Table of Contents What s New................................. page 3 System Requirements......................... page 6 Build Version...............................

More information

StoneGate Management Center. Release Notes for Version 5.3.4

StoneGate Management Center. Release Notes for Version 5.3.4 StoneGate Management Center Release Notes for Version 5.3.4 Created: December 20, 2011 Table of Contents What s New... 3 Fixes... 3 Other Changes... 5 System Requirements... 6 Basic Management System Hardware

More information

StoneGate SSL VPN Release Notes for Version 1.3.2

StoneGate SSL VPN Release Notes for Version 1.3.2 StoneGate SSL VPN Release Notes for Version 1.3.2 Created: September 29, 2009 Table of Contents What s New... 3 System Requirements... 5 Build Version... 5 Product Binary Checksums... 5 Compatibility...

More information

Stonesoft Management Center. Release Notes for Version 5.5.1

Stonesoft Management Center. Release Notes for Version 5.5.1 Stonesoft Management Center Release Notes for Version 5.5.1 Updated: December 19, 2013 Table of Contents What s New... 3 Enhancements... 3 Fixes... 3 Other Changes... 5 System Requirements... 6 Basic Management

More information

StoneGate SSL VPN. Release Notes for Version 1.4.1

StoneGate SSL VPN. Release Notes for Version 1.4.1 StoneGate SSL VPN Release Notes for Version 1.4.1 Created: April 6, 2010 Table of Contents What s New... 3 Enhancements... 3 Fixes... 3 System Requirements... 4 StoneGate Appliances... 4 Build Version...

More information

StoneGate Management Center. Release Notes for Version 4.1.2

StoneGate Management Center. Release Notes for Version 4.1.2 StoneGate Management Center Release Notes for Version 4.1.2 Table of Contents What s New........................... page 3 System Requirements................... page 8 Build Version.........................

More information

Release Notes for Version

Release Notes for Version Release Notes for Version 1.5.101 Created: September 27, 2012 Table of Contents What s New... 3 Enhancements... 3 Fixes... 3 System Requirements... 4 Stonesoft Appliances... 4 Build Version... 4 Product

More information

Stonesoft Management Center. Release Notes for Version 5.4.3

Stonesoft Management Center. Release Notes for Version 5.4.3 Stonesoft Management Center Release Notes for Version 5.4.3 Created: November 26, 2012 Table of Contents What s New... 3 Fixes... 3 Other Changes... 4 System Requirements... 5 Basic Management System Hardware

More information

StoneGate Firewall/VPN 2.5 TECHNICAL NOTE. Server Pool Monitoring Agent Protocol

StoneGate Firewall/VPN 2.5 TECHNICAL NOTE. Server Pool Monitoring Agent Protocol StoneGate Firewall/VPN 2.5 TECHNICAL NOTE Server Pool Monitoring Agent Protocol Protocol Description This document describes the Server Pool Monitoring Agent Protocol that is used for communications between

More information

Security Platform. Security. Availability. Manageability. Scalability.

Security Platform. Security. Availability. Manageability. Scalability. Security Platform Security. Availability. Manageability. Scalability. security and heavy throughput environments in mind. StoneGate is unique in that it is designed from the ground up, with the demands

More information

StoneGate SG-200 Appliance Installation Guide

StoneGate SG-200 Appliance Installation Guide StoneGate SG-200 Appliance Installation Guide 1 Copyright 2001 2006 Stonesoft Corp. All rights reserved. No part of this book may be reproduced or transmitted in any form or by any means, electronic or

More information

Stonesoft Management Center. Release Notes for Version 5.4.6

Stonesoft Management Center. Release Notes for Version 5.4.6 Stonesoft Management Center Release Notes for Version 5.4.6 Created: June 19, 2013 Table of Contents What s New... 3 Fixes... 3 Other Changes... 4 System Requirements... 6 Basic Management System Hardware

More information

Stonesoft Management Center. Release Notes for Version 5.5.0

Stonesoft Management Center. Release Notes for Version 5.5.0 Stonesoft Management Center Release Notes for Version 5.5.0 Created: May 6, 2013 Table of Contents What s New... 3 Features... 3 Enhancements... 4 Fixes... 6 Other Changes... 7 System Requirements... 8

More information

MyCreditChain Terms of Use

MyCreditChain Terms of Use MyCreditChain Terms of Use Date: February 1, 2018 Overview The following are the terms of an agreement between you and MYCREDITCHAIN. By accessing, or using this Web site, you acknowledge that you have

More information

Mile Terms of Use. Effective Date: February, Version 1.1 Feb 2018 [ Mile ] Mileico.com

Mile Terms of Use. Effective Date: February, Version 1.1 Feb 2018 [ Mile ] Mileico.com Mile Terms of Use Effective Date: February, 2018 Version 1.1 Feb 2018 [ Mile ] Overview The following are the terms of an agreement between you and MILE. By accessing, or using this Web site, you acknowledge

More information

Terms of Use. Changes. General Use.

Terms of Use. Changes. General Use. Terms of Use THESE TERMS AND CONDITIONS (THE TERMS ) ARE A LEGAL CONTRACT BETWEEN YOU AND SPIN TRANSFER TECHNOLOGIES ( SPIN TRANSFER TECHNOLOGIES, STT, WE OR US ). THE TERMS EXPLAIN HOW YOU ARE PERMITTED

More information

IP Address Pool in StoneGate SSL VPN

IP Address Pool in StoneGate SSL VPN Technical Note IP Address Pool in StoneGate SSL VPN How-To Technical Note IP Address Pool in StoneGate SSL VPN 1 Introduction Purpose This document details the configuration steps to implement IP Address

More information

Cisco Jabber IM for iphone Frequently Asked Questions

Cisco Jabber IM for iphone Frequently Asked Questions Frequently Asked Questions Cisco Jabber IM for iphone Frequently Asked Questions Frequently Asked Questions 2 Basics 2 Connectivity 3 Contacts 4 Calls 4 Instant Messaging 4 Meetings 5 Support and Feedback

More information

FOR TCG ACPI Specification

FOR TCG ACPI Specification ERRATA Errata Version 0.3 August 25, 2017 FOR TCG ACPI Specification Specification Version 1.20 Revision 8 January 19th, 2017 Contact: admin@trustedcomputinggroup.org Copyright TCG 2017 Disclaimers, Notices,

More information

Stonesoft Security Engine. Release Notes for Version 5.5.3

Stonesoft Security Engine. Release Notes for Version 5.5.3 Stonesoft Security Engine Release Notes for Version 5.5.3 Created: November 8, 2013 Table of Contents What s New... 3 New Features... 3 Enhancements... 4 Fixes... 5 Known Limitations... 7 System Requirements...

More information

Cisco Jabber for Android 10.5 Quick Start Guide

Cisco Jabber for Android 10.5 Quick Start Guide Cisco Jabber for Android 10.5 Quick Start Guide Revised: August 21, 2014, Cisco Jabber Welcome to Cisco Jabber. Use this guide to set up the app and use some key features. After setup, learn more by viewing

More information

Packet Trace Guide. Packet Trace Guide. Technical Note

Packet Trace Guide. Packet Trace Guide. Technical Note Packet Trace Guide Technical Note VERSION: 2.0 UPDATED: JANUARY 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo

More information

SpellCheck for Dynamics GP

SpellCheck for Dynamics GP Title Page SpellCheck for Dynamics GP This documentation is for the builds shown below and higher: v12.0.15 / 14.0.6 / 16.0.3 SpellCheck from WilloWare Incorporated for Dynamics GP 2 Copyright Manual copyright

More information

Release Information. Revision History. Version: build 018 Release Date: 23 rd November 2011

Release Information. Revision History. Version: build 018 Release Date: 23 rd November 2011 Version: 02.00.2 build 018 Release Date: 23 rd November 2011 Release Date Version 02.00.2 Build 018 23 rd November 2011 Release Information Release Type: General Availability Supported Cyberoam Versions:

More information

Bar Code Discovery. Administrator's Guide

Bar Code Discovery. Administrator's Guide Bar Code Discovery Administrator's Guide November 2012 www.lexmark.com Contents 2 Contents Overview...3 Configuring the application...4 Configuring the application...4 Configuring Bar Code Discovery...4

More information

Stonesoft Security Engine. Release Notes for Version 5.4.6

Stonesoft Security Engine. Release Notes for Version 5.4.6 Stonesoft Security Engine Release Notes for Version 5.4.6 Created: September 2, 2013 Table of Contents What s New... 3 New Features in Role... 3 New Features in and Layer 2 Firewall Roles... 4 Enhancements...

More information

User Manual Arabic Name Romanizer Name Geolocation System

User Manual Arabic Name Romanizer Name Geolocation System User Manual Arabic Name Romanizer Name Geolocation System MAPS Ono Lite (Romanizer) Version 2.50 Coverage of this document This document is the full text user manual for MAPSOno Lite (Romanizer) version

More information

Tisio CE Release Notes

Tisio CE Release Notes Tisio CE Release Notes Copyright Copyright 2005, 2006, 2007 and 2008 by ThinPATH Systems, Inc. The information contained in this document is subject to change without notice. ThinPATH Systems, Inc. shall

More information

AT60142H/HT. Rad-Hard 512Kx8 Very Low Power CMOS SRAM ERRATA-SHEET. Active Errata List. Errata History. Abbreviations. 1.

AT60142H/HT. Rad-Hard 512Kx8 Very Low Power CMOS SRAM ERRATA-SHEET. Active Errata List. Errata History. Abbreviations. 1. AT60142H/HT Rad-Hard 512Kx8 Very Low Power CMOS SRAM ERRATA-SHEET Active Errata List 1. Reading Error Errata History Lot Number Errata List All AT60142H lots 1 All AT60142HT lots 1 Abbreviations ATE :

More information

May 2014 Product Shipping Configuration Change Notice

May 2014 Product Shipping Configuration Change Notice May 2014 Product Shipping Configuration Change Notice Engineering Advisory 92278 This engineering advisory provides details about shipping configuration changes planned for May 2014 to Polycom Unified

More information

ESS Utility Android App User Guide

ESS Utility Android App User Guide [01.2017] ESS Utility Android App User Guide 1VV0301574 Rev. 0 2018-12-21 Mod.0818 2017-01 Rev.0 SPECIFICATIONS ARE SUBJECT TO CHANGE WITHOUT NOTICE NOTICE While reasonable efforts have been made to assure

More information

US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.

US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Service Data Objects (SDO) DFED Sample Application README Copyright IBM Corporation, 2012, 2013 US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract

More information

GS2K External Flash based Host Firmware Update Application Note NT11608A Rev

GS2K External Flash based Host Firmware Update Application Note NT11608A Rev GS2K External Flash based Host Firmware Update Application Note 80560NT11608A Rev. 1.0 2017-07-01 SPECIFICATIONS ARE SUBJECT TO CHANGE WITHOUT NOTICE NOTICE While reasonable efforts have been made to assure

More information

Installing Cache Protection for RAID 3108 Card on BigTwin Server. User s Guide. Revision 1.0

Installing Cache Protection for RAID 3108 Card on BigTwin Server. User s Guide. Revision 1.0 Installing Cache Protection for RAID 3108 Card on BigTwin Server User s Guide Revision 1.0 The information in this USER S GUIDE has been carefully reviewed and is believed to be accurate. The vendor assumes

More information

SAML SSO Okta Identity Provider 2

SAML SSO Okta Identity Provider 2 SAML SSO Okta Identity Provider SAML SSO Okta Identity Provider 2 Introduction 2 Configure Okta as Identity Provider 2 Enable SAML SSO on Unified Communications Applications 4 Test SSO on Okta 4 Revised:

More information

Application Launcher User Guide

Application Launcher User Guide Application Launcher User Guide Version 1.0 Published: 2016-09-30 MURAL User Guide Copyright 2016, Cisco Systems, Inc. Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706

More information

Cisco Unified Communications Self Care Portal User Guide, Release 11.5(1)

Cisco Unified Communications Self Care Portal User Guide, Release 11.5(1) Cisco Unified Communications Self Care Portal User Guide, Release 11.5(1) Unified Communications Self Care Portal 2 Unified Communications Self Care Settings 2 Phones 4 Additional Settings 12 Revised:

More information

Daniel MeterLink Software v1.40

Daniel MeterLink Software v1.40 Quick Start Manual P/N 3-9000-763, Rev K June 2017 Daniel MeterLink Software v1.40 for Daniel Gas and Liquid Ultrasonic Flow Meters Software License Agreement PLEASE READ THIS SOFTWARE LICENSE AGREEMENT

More information

Cisco Jabber Video for ipad Frequently Asked Questions

Cisco Jabber Video for ipad Frequently Asked Questions Cisco Jabber Video for ipad Frequently Asked Questions Introduction 2 Basics 2 Connectivity 3 Instant Messaging 5 Calls 6 Cisco WebEx Meetings 7 Contacts, Availability, and Directory Search 8 Recents and

More information

HUAWEI H30-U10. Quick Start Guide

HUAWEI H30-U10. Quick Start Guide HUAWEI H30-U10 Quick Start Guide Dual card dual standby single pass Your phone supports only dual card dual standby single pass, which means you cannot use both SIM cards for calls or data services simultaneously.

More information

2017 WorkPlace Mobile Application

2017 WorkPlace Mobile Application 2017 WorkPlace Mobile Application User Guide Paramount WorkPlace 2017 and Greater Table of Contents OVERVIEW... 3 GETTING STARTED... 3 Communication Architecture... 3 Mobile Device Requirements... 4 Establish

More information

GemBuilder for Java Release Notes

GemBuilder for Java Release Notes GemStone GemBuilder for Java Release Notes Version 3.1.3 November 2016 SYSTEMS INTELLECTUAL PROPERTY OWNERSHIP This documentation is furnished for informational use only and is subject to change without

More information

IBM Proventia Management SiteProtector. Scalability Guidelines Version 2.0, Service Pack 7.0

IBM Proventia Management SiteProtector. Scalability Guidelines Version 2.0, Service Pack 7.0 IBM Proventia Management SiteProtector Scalability Guidelines Version 2.0, Service Pack 7.0 Copyright Statement Copyright IBM Corporation 1994, 2008. IBM Global Services Route 100 Somers, NY 10589 U.S.A.

More information

Splunk. Splunk. Deployment Guide

Splunk. Splunk. Deployment Guide Deployment Guide VERSION: 1.0 UPDATED: JULY 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo are registered trademarks

More information

How to Get Started with Cisco SBA

How to Get Started with Cisco SBA How to Get Started with Cisco SBA Cisco Smart Business Architecture (SBA) helps you design and quickly deploy a full-service business network. A Cisco SBA deployment is prescriptive, out-ofthe-box, scalable,

More information

Polycom Acoustic Fence and Polycom Acoustic Fence with Beam Shaping Technology

Polycom Acoustic Fence and Polycom Acoustic Fence with Beam Shaping Technology TECHNICAL BULLETIN November 2017 3725-84091-002A Polycom Acoustic Fence and Polycom Acoustic Fence with Beam Shaping Technology Introduction Polycom Acoustic Fence and Polycom Acoustic Fence with Beam

More information

Product Release Information

Product Release Information Product Release Information Product: Cyberoam Release Number: 9.4.1 build 2 Release Date: 20 th March, 2007 Compatible versions: 9.4.1. build 0 Upgrade: Auto Upgrade Customer Support: For more information

More information

x10data Smart Client 7.0 for Windows Mobile Installation Guide

x10data Smart Client 7.0 for Windows Mobile Installation Guide x10data Smart Client 7.0 for Windows Mobile Installation Guide Copyright Copyright 2009 Automated Data Capture (ADC) Technologies, Incorporated. All rights reserved. Complying with all applicable copyright

More information

RE866 Interface User Guide

RE866 Interface User Guide RE866 Interface User Guide 1VV0301387 Rev.0 6/16/2017 [04.2016] Mod. 0809 2016-08 Rev.7 SPECIFICATIONS ARE SUBJECT TO CHANGE WITHOUT NOTICE NOTICE While reasonable efforts have been made to assure the

More information

TO OUR VALUED CUSTOMERS

TO OUR VALUED CUSTOMERS SmartMP3 Board is ideal for creating mp3 players and adding audio and music features to your prototype devices, even with lower-performance microcontrollers. TO OUR VALUED CUSTOMERS I want to express my

More information

AN S1401 Using BlueMod+S as Beacon

AN S1401 Using BlueMod+S as Beacon [04.2016] AN S1401 Using BlueMod+S as Beacon 80507NT11471A Rev. 05 2016-08-18 Mod. 0809 2016-08 Rev.7 SPECIFICATIONS ARE SUBJECT TO CHANGE WITHOUT NOTICE NOTICE While reasonable efforts have been made

More information

Aellius LynX Office Lookup Enhancements

Aellius LynX Office Lookup Enhancements Aellius LynX Office Lookup Enhancements August 2013 COPYRIGHT LynX Office Enhancements Copyright 2013, Aellius Professional Research & Consulting, LLC. All rights reserved. LynX Business Integrator (the

More information

Adobe Connect. Adobe Connect. Deployment Guide

Adobe Connect. Adobe Connect. Deployment Guide Deployment Guide VERSION: 1.0 UPDATED: MARCH 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo are registered trademarks

More information

Application Security for Java-based BlackBerry Handhelds

Application Security for Java-based BlackBerry Handhelds Application Security for Java-based Originally posted: February 2003 Latest revision: May 2003 Introduction Corporate data access capabilities supported by the BlackBerry platform enable wireless connectivity

More information

Brocade VDX 6740 Switch Configuration for Use in an HNAS Cluster

Brocade VDX 6740 Switch Configuration for Use in an HNAS Cluster Brocade VDX 6740 Switch Configuration for Use in an HNAS Cluster MK-92HNAS066-00 Notices and Disclaimer Copyright 2015 Corporation. All rights reserved. The performance data contained herein was obtained

More information

x10data Smart Client 6.5 for Windows Mobile Installation Guide

x10data Smart Client 6.5 for Windows Mobile Installation Guide x10data Smart Client 6.5 for Windows Mobile Installation Guide Copyright Copyright 2009 Automated Data Capture (ADC) Technologies, Incorporated. All rights reserved. Complying with all applicable copyright

More information

How to Get Started with Cisco SBA

How to Get Started with Cisco SBA How to Get Started with Cisco SBA Cisco Smart Business Architecture (SBA) helps you design and quickly deploy a full-service business network. A Cisco SBA deployment is prescriptive, out-ofthe-box, scalable,

More information

MAX Shop Paper. Balance Point Technologies, Inc. MAX Shop Paper. User Guide. Certified MAX Integrator

MAX Shop Paper. Balance Point Technologies, Inc.   MAX Shop Paper. User Guide.   Certified MAX Integrator Balance Point Technologies, Inc. www.maxtoolkit.com MAX Shop Paper User Guide 1 P a g e Copyright Manual copyright 2015 Balance Point Technologies, Inc. All Rights reserved. Your right to copy this documentation

More information

Cisco TEO Adapter Guide for Microsoft Windows

Cisco TEO Adapter Guide for Microsoft Windows Cisco TEO Adapter Guide for Microsoft Windows Release 2.3 April 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800

More information

Intel Stress Bitstreams and Encoder (Intel SBE) 2017 AVS2 Release Notes (Version 2.3)

Intel Stress Bitstreams and Encoder (Intel SBE) 2017 AVS2 Release Notes (Version 2.3) Intel Stress Bitstreams and Encoder (Intel SBE) 2017 AVS2 Release Notes (Version 2.3) Overview Changes History Installation Package Contents Known Limitations Attributions Legal Information Overview The

More information

Epic. Epic Systems. Deployment Guide

Epic. Epic Systems. Deployment Guide Epic Systems Deployment Guide VERSION: 1.0 UPDATED: AUGUST 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies logo are

More information

Mobile On the Go (OTG) Server

Mobile On the Go (OTG) Server Mobile On the Go (OTG) Server Installation Guide Paramount Technologies, Inc. 1374 East West Maple Road Walled Lake, MI 48390-3765 Phone 248.960.0909 Fax 248.960.1919 www.paramountworkplace.com Copyright

More information

IF61. IBM Data Capture and Delivery Platform. User s Guide

IF61. IBM Data Capture and Delivery Platform. User s Guide IF61 IBM Data Capture and Delivery Platform User s Guide Intermec Technologies Corporation Worldwide Headquarters 6001 36th Ave.W. Everett, WA 98203 U.S.A. www.intermec.com The information contained herein

More information

Cisco 1000 Series Connected Grid Routers QoS Software Configuration Guide

Cisco 1000 Series Connected Grid Routers QoS Software Configuration Guide Cisco 1000 Series Connected Grid Routers QoS Software Configuration Guide January 17, 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

Cisco FindIT Plugin for Kaseya Quick Start Guide

Cisco FindIT Plugin for Kaseya Quick Start Guide First Published: 2017-10-23 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 THE

More information

Release Notes 1 of 5. Release Notes. BlackBerry 7100g BlackBerry 7290 Wireless Handheld.

Release Notes 1 of 5. Release Notes. BlackBerry 7100g BlackBerry 7290 Wireless Handheld. Release Notes 1 of 5 Release Notes BlackBerry 7100g BlackBerry 7290 Wireless Handheld Release Notes 2 of 5 NOTE This document is provided for informational purposes only, and does not constitute a binding

More information

Microsoft Dynamics GP. Purchase Vouchers

Microsoft Dynamics GP. Purchase Vouchers Microsoft Dynamics GP Purchase Vouchers Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without limiting

More information

One Identity Quick Connect Express

One Identity Quick Connect Express One Identity Quick Connect Express for Active Directory 5.6.0 October 2017 These release notes provide information about the One Identity Quick Connect Express for Active Directory release. About New features

More information

CAP1114. Multiple Channel Capacitive Touch Sensor and LED Driver PRODUCT FEATURES PRODUCT PREVIEW

CAP1114. Multiple Channel Capacitive Touch Sensor and LED Driver PRODUCT FEATURES PRODUCT PREVIEW CAP1114 Multiple Channel Capacitive Touch Sensor and LED Driver PRODUCT FEATURES Data Brief General Description The CAP1114, which incorporates SMSC s RightTouch TM1 technology, is a multiple channel Capacitive

More information

LoadMaster VMware Horizon (with View) 6. Deployment Guide

LoadMaster VMware Horizon (with View) 6. Deployment Guide LoadMaster VMware Horizon (with View) 6 Deployment Guide VERSION: 6.0 UPDATED: MARCH 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the

More information

Migration and Upgrade: Frequently Asked Questions

Migration and Upgrade: Frequently Asked Questions First Published: May 01, 2013 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 THE

More information