CONFIGURING WEBAPP SECURE TO PROTECT AGAINST CREDENTIAL ATTACKS

Size: px
Start display at page:

Download "CONFIGURING WEBAPP SECURE TO PROTECT AGAINST CREDENTIAL ATTACKS"

Transcription

1 APPLICATION NOTE CONFIGURING WEBAPP SECURE TO PROTECT AGAINST CREDENTIAL ATTACKS Protect your Web Applications from Brute Force Credential Attacks Using WebApp Secure and Intrusion Deception Technology Copyright 2014, Juniper Networks, Inc. 1

2 APPLICATION NOTE - Configuring DDoS Secure to Decrypt SSL Traffic Table of Contents Introduction...3 Scope...3 Design Considerations...3 Description and Deployment Scenario...3 Description...3 Prerequisites...3 Analyzing a Failed Login... 4 Analyzing a Successful Login... 4 Deployment and Configuration Scenario... 4 Summary...10 About Juniper Networks Copyright 2014, Juniper Networks, Inc.

3 APPLICATION NOTE - Configuring WebApp Secure to Protect Against Credential Attacks Introduction Given the common reuse of login credentials across Web applications, your company s Web applications face imminent risk of attack whenever usernames, addresses, and passwords are lost in a data breach. Attackers will use a large set of stolen credentials, distribute them to a botnet, and then use the botnet to launch automated attacks that attempt to find a small set of valid credentials for another Web application. Juniper Networks WebApp Secure can add a layer of protection for your Web applications with innovative Intrusion Deception technology. By default, WebApp Secure will provide protection from credential attacks by breaking the automated attacks with a captcha and causing them to error out. But in these cases, the attacker will just try again. WebApp Secure detects the brute force credential attack, whether the attack originates from a distributed botnet or whether the attack is cycling through a list of usernames (trying each username only once, which is harder for most Web applications to detect). This application note takes the protection one step further, by showing how WebApp Secure allows the automation to continue, but deceives attackers, causing their attacks to be unsuccessful (all the stolen credentials will be invalid). In these cases, attacks are completely unsuccessful and the attacker will not try again. Scope This document describes only one of the Intrusion Deception technologies used by WebApp Secure. The features covered include the WebApp Secure security processor called Login Processor, a preconfigured WebApp Secure counterresponse called Break Authentication, and a manually created Auto Response. The Login Processor needs to be configured so that WebApp Secure understands successful and failed login attempts, based on the customer s Web application. The manually created Auto Response needs to be modified based on the customer environment and the frequency of attacks. This document does not cover the ways that WebApp Secure can be deployed within each customer s specific network. Design Considerations In order for the WebApp Secure Login Processor to be configured correctly, the security administrator must understand the customer s Web applications and login process, and must be able to analyze each Web application s HTTP response codes and headers. The response codes and headers will be used as part of the WebApp Secure configuration, which requires the settings for properties that make up a failed login and a successful login. Hardware Requirements: All WebApp Secure form factors, including hardware and virtual machines Software Requirements: Juniper Networks WebApp Secure version 5.0 or later Description and Deployment Scenario Description Before configuring WebApp Secure to detect invalid login attempts and credential attacks, the security administrator must first use an HTTP debugger to analyze and compare the properties of a successful and failed login. For example, successful logins usually return a specific HTTP status code or HTTP header, while failed logins return a different code or header. The three high-level steps are: 1. Edit the Login Processor and create a Protected Login Page. 2. Under Response Rules, create a new Autoresponse. 3. Test the new Autoresponse. Prerequisites Before configuration of WebApp Secure, analysis must be performed that clearly details how the Web application responds to a failed login and a successful login. The example in Figure 1 shows one way to perform this analysis, using information that is displayed by an HTTP debugger called Live HTTP Headers, which is an add-on available for Firefox. Other HTTP debuggers that can be used include Charles Proxy, Fiddler, and Firebug. To view the debugging information, you need to enable the tool, then use the browser to unsuccessfully log into the Web application (on the left of Figure 1), then successfully log into the Web application (on the right of Figure 1). Copyright 2014, Juniper Networks, Inc. 3

4 APPLICATION NOTE - Configuring DDoS Secure to Decrypt SSL Traffic Analyzing a Failed Login Analyzing a Successful Login Unsuccessful login: 1. Login url: wp-login.php 2. Type of login: POST 3. Parameter for the username : log= 4. Parameter for the password : pwd= 5. Response code: 200 OK Successful login: 1. Login url: not shown, but same as before 2. Type of login: POST 3. Parameter for the username : log= 4. Parameter for the password : pwd= 5. Response code: 302 Moved Temporarily Figure 1. Analyzing failed and successful logins The information highlighted above is needed to configure WebApp Secure, and these steps are described in detail below. Note: Your information may be different, depending on your Web application Deployment and Configuration Scenario Log into the WebApp Secure graphical interface and perform the following: 1. Edit the Login Processor and create a Protected Login Page. Under the Configuration Panel, click on Processors 4 Copyright 2014, Juniper Networks, Inc.

5 APPLICATION NOTE - Configuring WebApp Secure to Protect Against Credential Attacks Scroll down and find Login Processor, then click on Edit Settings Scroll down and find PROTECTED LOGIN PAGES and click Add Configure the login page as described below: Name: Enter a name for the login page, e.g., WP-login URL Pattern: Type wp-login.php (this could be different for your Web application) Copyright 2014, Juniper Networks, Inc. 5

6 APPLICATION NOTE - Configuring DDoS Secure to Decrypt SSL Traffic Configure information about the username and password fields. Set the following: Username Field Type: Select POST Parameter Username Field Name Pattern: Type log Username Field Value Pattern: Type.* Username Field Encoding: Select Ascii Password Field Type: Select POST Parameter Password Field Name Pattern: Type pwd Password Field Value Pattern: Type.* Password Field Encoding: Select Ascii 6 Copyright 2014, Juniper Networks, Inc.

7 APPLICATION NOTE - Configuring WebApp Secure to Protect Against Credential Attacks Configure information describing a failed login and a successful login by setting the values below: Failure Pattern Target: Select Status Failure Pattern: Type 200 Failure Pattern Condition: Select Failure On Match Success Pattern Target: Select Status Success Pattern: Type 302 Success Pattern Condition: Select Success On Match Require Captcha After: Leave at 3 Click Save Copyright 2014, Juniper Networks, Inc. 7

8 APPLICATION NOTE - Configuring DDoS Secure to Decrypt SSL Traffic 2. Under Response Rules, create a new autoresponse. Under the Configuration Panel, click on Response Rules In the Autoresponse screen, click on Add Autoresponse In the Basic tab, do the following: In the name field, type Break Authentication In the description field, type: Triggers when a brute force credential attack is detected. The autoresponse will deceive the attacker into thinking all their stolen credentials are invalid, even if there is a valid set. Check the Enabled checkbox Uncheck the Safe mode checkbox Click Save 8 Copyright 2014, Juniper Networks, Inc.

9 APPLICATION NOTE - Configuring WebApp Secure to Protect Against Credential Attacks In the Code tab, do the following: Paste the following code: if ( profile.getincidenttypes( iscode( ) && iscount( >=, 1 ) ).length > 0 && profile.getsessions( isrequestcount( >, 50 ) ).length > 0 && profile.getresponses( iscode( BA ) && isactive() ).length == 0) // Make sure we did not trigger Break Authentication. { mykonos.activateresponsecfg( BA, <config message= Stop the Credential Attack! /> ); console.log( data ); } Note: If you want to be less aggressive, change the comparison checks listed below: iscount( >=, 1 ) checks for the number of Site Login Username scan incidents. isrequestcount( >, 50 ) checks for the number of login requests for that session. Then click Save Copyright 2014, Juniper Networks, Inc. 9

10 APPLICATION NOTE - Configuring DDoS Secure to Decrypt SSL Traffic In the Events tab, do the following: Enable the Run analyzer on profile when it observes a new incident (newincident) checkbox Enable the Run analyzer on profile when it observes any new traffic (newtraffic) checkbox Then click Save 3. Test the new Autoresponse by using an attack tool like w3af, or manually enter invalid credentials through a browser. Summary The steps described in this application note can be used to configure WebApp Secure to protect your Web applications from brute force credential attacks. After configuration of the Login Processor, WebApp Secure will cause automated credential attacks to fail with errors by responding with a captcha by default. By taking an additional step to configure the Break Authentication Autoresponse, WebApp Secure will apply Intrusion Deception that allows the automated attack to continue and finish, but the attack will not be successful since all of the attacker s credentials will be marked invalid. 10 Copyright 2014, Juniper Networks, Inc.

11 APPLICATION NOTE - Configuring WebApp Secure to Protect Against Credential Attacks About Juniper Networks Juniper Networks is in the business of network innovation. From devices to data centers, from consumers to cloud providers, Juniper Networks delivers the software, silicon and systems that transform the experience and economics of networking. The company serves customers and partners worldwide. Additional information can be found at Corporate and Sales Headquarters Juniper Networks, Inc North Mathilda Avenue Sunnyvale, CA USA Phone: 888.JUNIPER ( ) or Fax: APAC and EMEA Headquarters Juniper Networks International B.V. Boeing Avenue PZ Schiphol-Rijk Amsterdam, The Netherlands Phone: Fax: To purchase Juniper Networks solutions, please contact your Juniper Networks representative at or authorized reseller. Copyright 2014 Juniper Networks, Inc. All rights reserved. Juniper Networks, the Juniper Networks logo, Junos, NetScreen, and ScreenOS are registered trademarks of Juniper Networks, Inc. in the United States and other countries. All other trademarks, service marks, registered marks, or registered service marks are the property of their respective owners. Juniper Networks assumes no responsibility for any inaccuracies in this document. Juniper Networks reserves the right to change, modify, transfer, or otherwise revise this publication without notice EN Jan 2014 Printed on recycled paper Copyright 2014, Juniper Networks, Inc. 11

JUNIPER NETWORKS PRODUCT BULLETIN

JUNIPER NETWORKS PRODUCT BULLETIN PRODUCT BULLETIN JUNIPER NETWORKS PRODUCT BULLETIN Junos Pulse Mobile Security Suite 4.2 What s New for Enterprises and Service Providers Bulletin Date January 24, 2013 Bulletin Number 8000022 Applicable

More information

Cluster Upgrade. SRX Series Services Gateways for the Branch Upgrade Junos OS with Minimal Traffic Disruption and a Single Command APPLICATION NOTE

Cluster Upgrade. SRX Series Services Gateways for the Branch Upgrade Junos OS with Minimal Traffic Disruption and a Single Command APPLICATION NOTE APPLICATION NOTE Simple Chassis Cluster Upgrade SRX Series Services Gateways for the Branch Upgrade Junos OS with Minimal Traffic Disruption and a Single Command Copyright 2013, Juniper Networks, Inc.

More information

Juniper Care Plus Advanced Services Credits

Juniper Care Plus Advanced Services Credits Juniper Care Plus Advanced Services Credits Service Overview Today s organizations are under constant pressure to meet dynamic market demands while increasing their return on investment. IT departments

More information

Junos Genius FAQs. What is Junos Genius? How can I access the Junos Genius platform? What learning assets are available on Junos Genius?

Junos Genius FAQs. What is Junos Genius? How can I access the Junos Genius platform? What learning assets are available on Junos Genius? What is Junos Genius? How can I access the Junos Genius platform? How do I download the Junos Genius app? What learning assets are available on Junos Genius? What are the Junos Genius subscription options?

More information

CONFIGURING THE CX111 FOR THE SSG SERIES

CONFIGURING THE CX111 FOR THE SSG SERIES APPLICATION NOTE CONFIGURING THE CX111 FOR THE SSG SERIES How to Configure the SSG Series for 3G Wireless WAN Termination Using the CX111 Cellular Broadband Data Bridge Copyright 2013, Juniper Networks,

More information

VMWARE VIEW WITH JUNIPER NETWORKS SA SERIES SSL VPN APPLIANCES

VMWARE VIEW WITH JUNIPER NETWORKS SA SERIES SSL VPN APPLIANCES APPLICATION NOTE VMWARE VIEW WITH JUNIPER NETWORKS SA SERIES SSL VPN APPLIANCES Configuring Secure SSL VPN Access in a VMware Virtual Desktop Environment Copyright 2010, Juniper Networks, Inc. 1 Table

More information

Secure Remote Access with Comprehensive Client Certificate Management

Secure Remote Access with Comprehensive Client Certificate Management APPLICATION NOTE SA Series SSL VPN Appliances and MultiFactor SecureAuth Solution Secure Remote Access with Comprehensive Client Certificate Management Copyright 2009, Juniper Networks, Inc. 1 Table of

More information

Juniper Sky Enterprise

Juniper Sky Enterprise Juniper Sky Enterprise Product Overview Network complexity is growing exponentially. Traffic levels continue to rise thanks to the proliferation of mobile and Internet of Things (IoT) devices being connected

More information

Juniper Sky Advanced Threat Prevention

Juniper Sky Advanced Threat Prevention Juniper Sky Advanced Threat Prevention Product Overview Juniper Sky Advanced Threat Prevention is a cloud-based service that provides complete advanced malware protection. Integrated with SRX Series Services

More information

Juniper Networks Certification Program

Juniper Networks Certification Program Juniper Networks Certification Program ecertificate Download and Print Instructions OVERVIEW Your JNCP ecertificates are now available in your user account on the Juniper Networks Learning Portal. Please

More information

JUNIPER SKY ADVANCED THREAT PREVENTION

JUNIPER SKY ADVANCED THREAT PREVENTION Data Sheet JUNIPER SKY ADVANCED THREAT PREVENTION Product Overview Juniper Sky Advanced Threat Prevention is a cloud-based service that provides complete advanced malware protection. Integrated with SRX

More information

JUNIPER OPTIMUM CARE SERVICE

JUNIPER OPTIMUM CARE SERVICE SERVICE DESCRIPTION JUNIPER OPTIMUM CARE SERVICE Contents 1. Introduction...1 2. Eligibility and Purchasing....1 3. Service Features and Deliverable Description...1 4. End User Responsibilities...3 5.

More information

Transit VPC Deployment Using AWS CloudFormation Templates. White Paper

Transit VPC Deployment Using AWS CloudFormation Templates. White Paper Transit VPC Deployment Using AWS CloudFormation Templates White Paper Introduction Amazon Web Services(AWS) customers with globally distributed networks commonly need to securely exchange data between

More information

QUICKSTART GUIDE FOR BRANCH SRX SERIES SERVICES GATEWAYS

QUICKSTART GUIDE FOR BRANCH SRX SERIES SERVICES GATEWAYS APPLICATION NOTE QUICKSTART GUIDE FOR BRANCH SRX SERIES SERVICES GATEWAYS Configuring Basic Security and Connectivity on Branch SRX Series Services Gateways Copyright 2009, Juniper Networks, Inc. Table

More information

CONFIGURING THE CX111 FOR THE SSG SERIES

CONFIGURING THE CX111 FOR THE SSG SERIES APPLICATION NOTE CONFIGURING THE CX111 FOR THE SSG SERIES How to Configure the SSG Series for 3G Wireless WAN Termination Using the CX111 Cellular Broadband Data Bridge Copyright 2010, Juniper Networks,

More information

Contrail Networking: Evolve your cloud with Containers

Contrail Networking: Evolve your cloud with Containers Contrail Networking: Evolve your cloud with Containers INSIDE Containers and Microservices Transformation of the Cloud Building a Network for Containers Juniper Networks Contrail Solution BUILD MORE THAN

More information

Topology-Independent In-Service Software Upgrades on the QFX5100

Topology-Independent In-Service Software Upgrades on the QFX5100 Topology-Independent In-Service Software Upgrades on the QFX5100 Juniper Innovation Brings ISSU to Data Center Top-of-Rack Switches 1 Table of Contents Executive Summary... 3 Introduction... 3 Leveraging

More information

J-Care Agility Services Advanced Options

J-Care Agility Services Advanced Options J-Care Agility Services Advanced Options Focused Technical Support Services Description Table of Contents 1. Introduction...2 2. Eligibility and Purchasing...2 3. Service Features and Deliverable Description...2

More information

JUNOS SCOPE SOFTWARE IP SERVICE MANAGER

JUNOS SCOPE SOFTWARE IP SERVICE MANAGER DATASHEET JUNOS SCOPE SOFTWARE IP SERVICE MANAGER Product Overview Product Description As service providers and enterprises evolve to meet the demands of their customer base, one key to success is the

More information

Wireless LAN. SmartPass Quick Start Guide. Release 9.0. Published: Copyright 2013, Juniper Networks, Inc.

Wireless LAN. SmartPass Quick Start Guide. Release 9.0. Published: Copyright 2013, Juniper Networks, Inc. Wireless LAN SmartPass Quick Start Guide Release 9.0 Published: 2013-07-14 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net All rights reserved.

More information

Software-Defined Secure Networks in Action

Software-Defined Secure Networks in Action Software-Defined Secure Networks in Action Enabling automated threat remediation without impacting business continuity Challenge Businesses need to continuously evolve to fight the increasingly sophisticated

More information

Juniper Networks Champion Program

Juniper Networks Champion Program Juniper Networks Champion Program (FAQs) Table of Contents General Requirements Benefits Getting Started Learning Academy Policies, Progressions, Rewards Juniper Partner Advantage Customer Support General

More information

UNDERSTANDING AND RESPONDING TO THE FIVE PHASES OF WEB APPLICATION ABUSE

UNDERSTANDING AND RESPONDING TO THE FIVE PHASES OF WEB APPLICATION ABUSE White Paper UNDERSTANDING AND RESPONDING TO THE FIVE PHASES OF WEB APPLICATION ABUSE WebApp Secure Provides Real-Time Abuse Detection and Response to Preempt Attacks Before They Can Occur Copyright 2013,

More information

Deployment Guide January-2016 rev. b. Deploying Array Networks APV Series Application Delivery Controllers With IBM WebSphere 8.5

Deployment Guide January-2016 rev. b. Deploying Array Networks APV Series Application Delivery Controllers With IBM WebSphere 8.5 Deployment Guide January-2016 rev. b Deploying Array Networks APV Series Application Delivery Controllers With IBM WebSphere 8.5 Table of Contents 1 Introduction... 3 1.1 Prerequisites and Configuration

More information

Juniper Networks Live-Live Technology

Juniper Networks Live-Live Technology Juniper Networks Live-Live Technology Increasing Resiliency 1 Table of Contents Executive Summary... 3 Introduction... 3 Resiliency Challenges... 3 Juniper s Live-Live Solution...4 Live-Live...4 How MoFRR

More information

NSM Plug-In Users Guide

NSM Plug-In Users Guide Security Threat Response Manager NSM Plug-In Users Guide Release 2010.0 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2010-11-16 Copyright

More information

Deploying Data Center Switching Solutions

Deploying Data Center Switching Solutions Deploying Data Center Switching Solutions Choose the Best Fit for Your Use Case 1 Table of Contents Executive Summary... 3 Introduction... 3 Multivector Scaling... 3 Low On-Chip Memory ASIC Platforms...4

More information

Network and Security Manager (NSM) Release Notes DMI Schema

Network and Security Manager (NSM) Release Notes DMI Schema Network and Security Manager (NSM) Release Notes DMI Schema Release version 233 ver 1.0, 09-06-2012 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net

More information

Deployment Guide Apr-2019 rev. a. Array Networks APV/vAPV Series ADCs and eclinicalworks Application Servers

Deployment Guide Apr-2019 rev. a. Array Networks APV/vAPV Series ADCs and eclinicalworks Application Servers Deployment Guide Apr-2019 rev. a Array Networks APV/vAPV Series ADCs and eclinicalworks Application Servers 1 Introduction... 3 1.1 Prerequisites and Assumptions... 3 1.2 APV Series Application Delivery

More information

Coordinated Threat Control

Coordinated Threat Control Application Note Coordinated Threat Control Juniper Networks Intrusion Detection and Protection (IDP) and Secure Access SSL VPN Interoperability Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale,

More information

SDSN: Dynamic, Adaptive Multicloud Security

SDSN: Dynamic, Adaptive Multicloud Security SDSN: Dynamic, Adaptive Multicloud Security Evolving from firewall to user-intent for flexible in the cloud Challenge Legacy, which do not dynamically adapt to different workflows, must be individually

More information

Network and Security Manager (NSM) Release Notes DMI Schema

Network and Security Manager (NSM) Release Notes DMI Schema Network and Security Manager (NSM) Release Notes DMI Schema Release version 223 ver 1.0, 3-1-2012 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net

More information

Web Device Manager Guide

Web Device Manager Guide Juniper Networks EX2500 Ethernet Switch Web Device Manager Guide Release 3.0 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Part Number: 530-029704-01,

More information

Cisco Service Control Service Security: Outgoing Spam Mitigation Solution Guide, Release 4.1.x

Cisco Service Control Service Security: Outgoing Spam Mitigation Solution Guide, Release 4.1.x CISCO SERVICE CONTROL SOLUTION GUIDE Cisco Service Control Service Security: Outgoing Spam Mitigation Solution Guide, Release 4.1.x 1 Introduction and Scope 2 Functionality Overview 3 Mass-Mailing-Based

More information

Instant evolution in the age of digitization. Turn technology into your competitive advantage

Instant evolution in the age of digitization. Turn technology into your competitive advantage Instant evolution in the age of digitization Turn technology into your competitive advantage It s easy to underestimate how far we ve come in such a relatively short space of time, and how much the world

More information

UPGRADING STRM TO R1 PATCH

UPGRADING STRM TO R1 PATCH UPGRADING STRM TO 2012.1.R1 PATCH RELEASE 2012.1 MARCH 2013 This Upgrade Guide provides information on the following: Before You Upgrade Clearing the Cache After You Upgrade Before You Upgrade Upgrade

More information

Implementing AutoVPN Network Design Using the SRX Series with ibgp as the Dynamic Routing Protocol

Implementing AutoVPN Network Design Using the SRX Series with ibgp as the Dynamic Routing Protocol APPLICATION NOTE Introduction to AutoVPN Implementing AutoVPN Network Design Using the SRX Series with ibgp as the Dynamic Routing Protocol Copyright 2013, Juniper Networks, Inc. 1 Table of Contents Introduction...3

More information

Policy Enforcer. Product Description. Data Sheet. Product Overview

Policy Enforcer. Product Description. Data Sheet. Product Overview Policy Enforcer Product Overview Juniper s Software-Defined Secure Network (SDSN) platform leverages the entire network, not just perimeter firewalls, as a threat detection and security enforcement domain.

More information

WX CENTRAL MANAGEMENT SYSTEM

WX CENTRAL MANAGEMENT SYSTEM DATASHEET WX CENTRAL MANAGEMENT SYSTEM Product Overview When it comes to WAN optimization, visibility into the distributed enterprise is absolutely critical to understand how applications are performing,

More information

Product Description. Product Overview. Architecture and Key Components of the MAG Series Junos Pulse Gateways

Product Description. Product Overview. Architecture and Key Components of the MAG Series Junos Pulse Gateways DATASHEET MAG Series Junos Pulse Gateways Product Overview The challenge for today s technology leader is to build an infrastructure that provides easy, secure access to the corporate network for all workers

More information

Network and Security Manager (NSM) Release Notes DMI Schema

Network and Security Manager (NSM) Release Notes DMI Schema Network and Security Manager (NSM) Release Notes DMI Schema Release version 255 ver 1.0.252, November 8, 2012 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net

More information

JUNOS SPACE ROUTE INSIGHT

JUNOS SPACE ROUTE INSIGHT DATASHEET JUNOS SPACE ROUTE INSIGHT Product Overview Junos Space Route Insight is designed for network engineers and operators who manage today s complex, mission critical enterprise and service provider

More information

Intrusion Detection and Prevention Release Notes

Intrusion Detection and Prevention Release Notes Intrusion Detection and Prevention Release Notes Release 4.1r3 December 2008 Contents 1. Version Summary on page 2 2. New Features and Enhancements on page 2 3. Changes to Default Behavior on page 2 4.

More information

JUNIPER CARE SERVICES

JUNIPER CARE SERVICES DATASHEET SERVICES Product Overview Juniper Care Services provide rapid response from Juniper Networks technical service engineers and hardware replacement options that let you choose the right timing

More information

PULSE CONNECT SECURE APPCONNECT

PULSE CONNECT SECURE APPCONNECT PULSE CONNECT SECURE APPCONNECT A Micro VPN That Allows Specific Applications on Mobile Devices to Independently Leverage the Connect Secure Gateway Product Release 8.1 Document Revision 1.0 Published:

More information

Setting Up an STRM Update Server

Setting Up an STRM Update Server Security Threat Response Manager Release 2013.2 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2013-07-19 Copyright Notice Copyright 2013

More information

M120 Class-of-Service Behavior Analysis

M120 Class-of-Service Behavior Analysis Application Note M120 Class-of-Service Behavior Analysis An Overview of M120 Class-of-Service (CoS) Behavior with Notes on Best Practices and Design Considerations Juniper Networks, Inc. 1194 North Mathilda

More information

SETTING UP A JSA SERVER

SETTING UP A JSA SERVER Juniper Secure Analytics SETTING UP A JSA SERVER Release 2014.1 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2014-03-14 Copyright Notice

More information

Junos Pulse Mobile Security Dashboard

Junos Pulse Mobile Security Dashboard Junos Pulse Mobile Security Dashboard User Guide Release 4.1 October 2012 R1 Copyright 2012, Juniper Networks, Inc. . Junos Pulse Mobile Security Dashboard Juniper Networks, Inc. 1194 North Mathilda Avenue

More information

Open Cloud Interconnect: Use Cases for the QFX10000 Coherent DWDM Line Card

Open Cloud Interconnect: Use Cases for the QFX10000 Coherent DWDM Line Card Open Cloud Interconnect: Use Cases for the QFX10000 DWDM Delivering Scale, Security, and Resiliency to Metro, Regional, and Long-Haul Data Center Interconnect 1 Open Cloud Interconnect: Use Cases for the

More information

Juniper Solutions for Turnkey, Managed Cloud Services

Juniper Solutions for Turnkey, Managed Cloud Services Juniper Solutions for Turnkey, Managed Cloud Services Three use cases for hosting and colocation service providers looking to deliver massively scalable, highly differentiated cloud services. Challenge

More information

Subscriber Traffic Redirection

Subscriber Traffic Redirection Subscriber Traffic Redirection Published: 2014-06-06 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net All rights reserved. Juniper Networks,

More information

WX Client. Product Description. Product Overview DATASHEET

WX Client. Product Description. Product Overview DATASHEET DATASHEET Client Product Overview The Client is a leading-edge, Windows-based WAN optimization software for mobile end users and small office/home office end users. The Client improves application response

More information

Junos Pulse Mobile Security Dashboard

Junos Pulse Mobile Security Dashboard Junos Pulse Mobile Security Dashboard User Guide Release 3.2 March 2012 R1 Copyright 2012, Juniper Networks, Inc. . Junos Pulse Mobile Security Dashboard Juniper Networks, Inc. 1194 North Mathilda Avenue

More information

FIREFLY HOST. Product Description. Product Overview DATASHEET

FIREFLY HOST. Product Description. Product Overview DATASHEET DATASHEET FIREFLY HOST Product Overview Juniper Networks Firefly Host is a comprehensive virtualization security solution that includes integrated stateful inspection firewalling, intrusion detection,

More information

NSM Plug-In Users Guide

NSM Plug-In Users Guide Juniper Secure Analytics Release 2014.3 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2014-10-15 Copyright Notice Copyright 2014 Juniper

More information

Juniper Advanced Services: Which Offsite Program Is Right for You?

Juniper Advanced Services: Which Offsite Program Is Right for You? Juniper Advanced Services: Which Offsite Program Is Right for You? INSIDE Three Offsite Advanced Services Programs to Choose From Business Value Delivered by Advanced Services Offsite Programs Reactive

More information

Help Document Series: Connecting to your Exchange mailbox via Outlook from off-campus

Help Document Series: Connecting to your Exchange mailbox via Outlook from off-campus Help Document Series: Connecting to your Exchange mailbox via Outlook from off-campus This document will take you through setting up your Clark Exchange mailbox in Outlook 2003 from off-campus. This will

More information

AppSpider Enterprise. Getting Started Guide

AppSpider Enterprise. Getting Started Guide AppSpider Enterprise Getting Started Guide Contents Contents 2 About AppSpider Enterprise 4 Getting Started (System Administrator) 5 Login 5 Client 6 Add Client 7 Cloud Engines 8 Scanner Groups 8 Account

More information

Extending Enterprise Security to Public and Hybrid Clouds

Extending Enterprise Security to Public and Hybrid Clouds Extending Enterprise Security to Public and Hybrid Clouds Juniper Security for an Ever-Evolving Market Challenge Enterprises are migrating toward public or hybrid clouds much faster than expected, creating

More information

Junos Pulse for Google Android

Junos Pulse for Google Android Junos Pulse for Google Android User Guide Release 2.1 November 2011 R3 Copyright 2011, Juniper Networks, Inc. Juniper Networks, Junos, Steel-Belted Radius, NetScreen, and ScreenOS are registered trademarks

More information

Intrusion Detection and Prevention IDP 4.1r4 Release Notes

Intrusion Detection and Prevention IDP 4.1r4 Release Notes Intrusion Detection and Prevention IDP 4.1r4 Release Notes Build 4.1.134028 September 22, 2009 Revision 02 Contents Overview...2 Supported Hardware...2 Changed Features...2 IDP OS Directory Structure...2

More information

NSM Plug-In Users Guide

NSM Plug-In Users Guide Security Threat Response Manager Release 2013.2 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2013-07-19 Copyright Notice Copyright 2013

More information

Adobe Marketing Cloud Bloodhound for Mac 3.0

Adobe Marketing Cloud Bloodhound for Mac 3.0 Adobe Marketing Cloud Bloodhound for Mac 3.0 Contents Adobe Bloodhound for Mac 3.x for OSX...3 Getting Started...4 Processing Rules Mapping...6 Enable SSL...7 View Hits...8 Save Hits into a Test...9 Compare

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

Cisco UCS C-Series IMC Emulator Quick Start Guide. Cisco IMC Emulator 2 Overview 2 Setting up Cisco IMC Emulator 3 Using Cisco IMC Emulator 9

Cisco UCS C-Series IMC Emulator Quick Start Guide. Cisco IMC Emulator 2 Overview 2 Setting up Cisco IMC Emulator 3 Using Cisco IMC Emulator 9 Cisco UCS C-Series IMC Emulator Quick Start Guide Cisco IMC Emulator 2 Overview 2 Setting up Cisco IMC Emulator 3 Using Cisco IMC Emulator 9 Revised: October 6, 2017, Cisco IMC Emulator Overview About

More information

A10 Thunder ADC with Oracle E-Business Suite 12.2 DEPLOYMENT GUIDE

A10 Thunder ADC with Oracle E-Business Suite 12.2 DEPLOYMENT GUIDE A10 Thunder ADC with Oracle E-Business Suite 12.2 DEPLOYMENT GUIDE Table of Contents 1. Introduction... 2 2 Deployment Prerequisites... 2 3 Oracle E-Business Topology... 3 4 Accessing the Thunder ADC Application

More information

Deployment Guide Feb-2017 rev. a. vapv Installation using Prism Web Console for KVM Hypervisor for Nutanix Xtreme Computing Platform

Deployment Guide Feb-2017 rev. a. vapv Installation using Prism Web Console for KVM Hypervisor for Nutanix Xtreme Computing Platform Deployment Guide Feb-2017 rev. a vapv Installation using Prism Web Console for KVM Hypervisor for Nutanix Xtreme Computing Platform Table of Contents 1 Introduction... 2 1.1 Download the vapv Image to

More information

Implementation Guide for protecting Juniper SSL VPN with BlackShield ID

Implementation Guide for protecting Juniper SSL VPN with BlackShield ID Implementation Guide for protecting Juniper SSL VPN with BlackShield ID Copyright Copyright 2011, CRYPTOCard All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed,

More information

Juniper Care Plus Services

Juniper Care Plus Services Juniper Care Plus Services Service Overview In today s dynamic marketplace, organizations are under constant pressure to meet market demand while maintaining or increasing return on investment. IT departments

More information

Bomgar SIEM Tool Plugin Installation and Administration

Bomgar SIEM Tool Plugin Installation and Administration Bomgar SIEM Tool Plugin Installation and Administration 2018 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are

More information

SIEM Tool Plugin Installation and Administration

SIEM Tool Plugin Installation and Administration SIEM Tool Plugin Installation and Administration 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are

More information

MULTISERVICE INTERFACE MICS FOR MX SERIES

MULTISERVICE INTERFACE MICS FOR MX SERIES DATASHEET MULTISERVICE INTERFACE MICS FOR MX SERIES Product Overview Juniper Networks MX Series 3D Universal Edge Routers provide industry-leading intelligence, flexibility and efficiency, and they are

More information

Junos Pulse MSS MSG Release 4.2R1

Junos Pulse MSS MSG Release 4.2R1 Access Solutions Junos Pulse MSS MSG Release 4.2R1 MSS MSG 4.2R1 (4.2.1.229) Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408 745 2000 or 888 JUNIPER www.juniper.net January

More information

Deployment Guide Feb-2017 rev. a. vapv Installation using VMware vsphere Web Client for Nutanix Xtreme Computing Platform

Deployment Guide Feb-2017 rev. a. vapv Installation using VMware vsphere Web Client for Nutanix Xtreme Computing Platform Deployment Guide Feb-2017 rev. a vapv Installation using VMware vsphere Web Client for Nutanix Xtreme Computing Platform Table of Contents 1 Introduction... 2 1.1 Download the vapv Image to your Local

More information

SOLUTION BROCHURE. Mobility Changes Everything

SOLUTION BROCHURE. Mobility Changes Everything SOLUTION BROCHURE Simply Connected The New Campus Network Mobility Changes Everything Simply Connected Vision The challenge of the new business network is expectations: Expectations of solving long-standing

More information

QUICK START: SYMANTEC ENDPOINT PROTECTION FOR AMAZON EC2

QUICK START: SYMANTEC ENDPOINT PROTECTION FOR AMAZON EC2 QUICK START: SYMANTEC ENDPOINT PROTECTION FOR AMAZON EC2 Quick Start Guide for Using Symantec Endpoint Protection for Amazon EC2 Quick Start Guide for Using Symantec Endpoint Protection for Amazon EC2

More information

Product Description. Product Overview. Architecture and Key Components of the MAG Series Junos Pulse Gateways

Product Description. Product Overview. Architecture and Key Components of the MAG Series Junos Pulse Gateways DATASHEET MAG Series Junos Pulse Gateways Product Overview The challenge for today s technology leader is to build an infrastructure that provides easy, secure access to the corporate network for all workers

More information

Optimizing CloudEnabled Branch with. Juniper Services and Support. Protect and Ensure the Operational Success of Your Juniper Cloud-Enabled Branch

Optimizing CloudEnabled Branch with. Juniper Services and Support. Protect and Ensure the Operational Success of Your Juniper Cloud-Enabled Branch Optimizing CloudEnabled Branch with Juniper Services and Support Protect and Ensure the Operational Success of Your Juniper Cloud-Enabled Branch Cloud-Enabled Branch Solution Services Overview We live

More information

Load Balancing VMware Workspace Portal/Identity Manager

Load Balancing VMware Workspace Portal/Identity Manager Load Balancing VMware Workspace Portal/Identity Manager Overview VMware Workspace Portal/Identity Manager combines applications and desktops in a single, aggregated workspace. Employees can then access

More information

Juniper Care Plus. 1. Introduction. Contents. 2. Eligibility and Prerequisites. Service Description

Juniper Care Plus. 1. Introduction. Contents. 2. Eligibility and Prerequisites. Service Description Juniper Care Plus Contents 1. Introduction...1 2. Eligibility and Purchasing....1 3. Service Features and Deliverable Description...2 4. End-User Responsibilities..6 5. Availability....7 6. Scope...7 7.

More information

Product Description. Architecture and Key Components of the MAG Series Junos Pulse Gateways. Product Overview DATASHEET

Product Description. Architecture and Key Components of the MAG Series Junos Pulse Gateways. Product Overview DATASHEET DATASHEET MAG Series Junos Pulse Gateways Product Overview The challenge for today s technology leader is to build an infrastructure that provides accelerated, rolebased secure access to the corporate

More information

IDP Detector Engine Release Notes

IDP Detector Engine Release Notes IDP Detector Engine Release Notes Part Number: 530-029025-01 Revision January 15, 2009 Contents Recent Release History...2 IDP Detector Engine Overview...3 Understanding IDP Detector Engine Version Numbers...3

More information

Configuring Dynamic VPN

Configuring Dynamic VPN Configuring Dynamic VPN Version 1.0 October 2009 JUNIPER NETWORKS Page 1 of 15 Table of Contents Introduction...3 Feature License...3 Platform support...3 Limitations...3 Dynamic VPN Example...3 Topology...4

More information

Product Description. Product Overview DATASHEET

Product Description. Product Overview DATASHEET DATASHEET VGW Gateway Product Overview Juniper Networks vgw Gateway is a comprehensive virtualization security solution that includes integrated stateful inspection firewalling, intrusion detection, compliance

More information

Webthority can provide single sign-on to web applications using one of the following authentication methods:

Webthority can provide single sign-on to web applications using one of the following authentication methods: Webthority HOW TO Configure Web Single Sign-On Webthority can provide single sign-on to web applications using one of the following authentication methods: HTTP authentication (for example Kerberos, NTLM,

More information

Maximize Bandwidth Utilization with Juniper Networks TE++

Maximize Bandwidth Utilization with Juniper Networks TE++ Maximize Bandwidth Utilization with Juniper Networks TE++ Lower Operations Overhead while Simplifying Network Planning 1 Table of Contents Executive Summary... 3 Introduction: The Bandwidth Challenge...

More information

Junos Pulse Access Control Service

Junos Pulse Access Control Service Junos Pulse Access Control Service RADIUS Server Management Guide Release 4.4 Published: 2013-02-15 Part Number: Juniper Networks, Inc. 1194 rth Mathilda Avenue Sunnyvale, California 94089 USA 408-745-2000

More information

TRUSTED MOBILITY INDEX

TRUSTED MOBILITY INDEX TRUSTED MOBILITY INDEX Published May 2012 A GLOBAL STUDY INDEXING CONSUMER CONFIDENCE IN MOBILITY The mobile ecosystem of devices, services and networks is at a critical inflection point. While the mobile

More information

QUICK START: VERITAS STORAGE FOUNDATION BASIC FOR AMAZON EC2

QUICK START: VERITAS STORAGE FOUNDATION BASIC FOR AMAZON EC2 QUICK START: VERITAS STORAGE FOUNDATION BASIC FOR AMAZON EC2 Quick Start Guide for Using Symantec's Veritas Storage Foundation Basic for Amazon EC2 Quick Start Guide for Using Symantec's Veritas Storage

More information

4TRESS AAA. Out-of-Band Authentication (SMS) and Juniper Secure Access Integration Handbook. Document Version 2.3 Released May hidglobal.

4TRESS AAA. Out-of-Band Authentication (SMS) and Juniper Secure Access Integration Handbook. Document Version 2.3 Released May hidglobal. 4TRESS AAA Out-of-Band Authentication (SMS) and Juniper Secure Access Integration Handbook Document Version 2.3 Released May 2013 hidglobal.com Table of Contents List of Figures... 3 1.0 Introduction...

More information

AMS Device View Installation Guide. Version 2.0 Installation Guide May 2018

AMS Device View Installation Guide. Version 2.0 Installation Guide May 2018 AMS Device View Installation Guide Version 2.0 Installation Guide May 2018 Disclaimer The contents of this publication are presented for informational purposes only, and while every effort has been made

More information

Revised: 08/02/ Click the Start button at bottom left, enter Server Manager in the search box, and select it in the list to open it.

Revised: 08/02/ Click the Start button at bottom left, enter Server Manager in the search box, and select it in the list to open it. Mobile App Windows Authentication & SSL Config Revised: 08/02/2017 Job Aid This Job Aid is intended for agency IT staff and explains how to enable Windows Authentication and SSL for your mobile applications

More information

Network and Security Manager (NSM) Release Notes DMI Schema

Network and Security Manager (NSM) Release Notes DMI Schema Network and Security Manager (NSM) Release Notes DMI Schema Release version 280 ver 1.0.280, Sept 30, 2013 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net

More information

Juniper Networks QFX3500

Juniper Networks QFX3500 Implementation Guide Juniper Networks QFX3500 Switch and QLogic Converged Network Implementation Guide Copyright 2012, Juniper Networks, Inc. 1 Table of Contents Introduction...3 Implementing Converged

More information

Junos Pulse Secure Access Service

Junos Pulse Secure Access Service Junos Pulse Secure Access Service Intrusion Detection and Prevention Sensors Release 8.0 Published: 2013-11-15 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, California 94089 USA 408-745-2000

More information

STRM Getting Started Guide. Release Security Threat Response Manager. Juniper Networks, Inc.

STRM Getting Started Guide. Release Security Threat Response Manager. Juniper Networks, Inc. Security Threat Response Manager STRM Getting Started Guide Release 2013.2 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408-745-2000 www.juniper.net Published: 2013-09-16 Copyright

More information

Privileged Remote Access SIEM Tool Plugin Installation and Administration

Privileged Remote Access SIEM Tool Plugin Installation and Administration Privileged Remote Access SIEM Tool Plugin Installation and Administration 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation.

More information

JUNOS SPACE. Product Description. Product Overview

JUNOS SPACE. Product Description. Product Overview DATASHEET JUNOS SPACE Product Overview Juniper Networks Junos Space is an open software platform designed for deploying and creating Juniperdeveloped, partner, and third-party applications. It consists

More information

F5 Azure Cloud Try User Guide. F5 Networks, Inc. Rev. September 2016

F5 Azure Cloud Try User Guide. F5 Networks, Inc. Rev. September 2016 F5 Azure Cloud Try User Guide F5 Networks, Inc. Rev. September 2016 Azureinfo@f5.com Table of Contents Introduction... 3 F5 Web Application Firewall Solution, (WAF) Review... 3 Configuring SSO/Pre-authentication

More information