Link to home
Start Free TrialLog in
Avatar of Cooker4246
Cooker4246Flag for United States of America

asked on

Citrix Access Gateway 4.5.2 - Disable Auto Complete

I currently have an Citrix Access gateway appliance model 2000, running Access Gateway Standard Edition 4.5.2  Also an W2K3 - Advance Access Control Server running 4.5. And W2K3 - Web Interface server 4.5

Issue How to disable AutoComplete:

HTML "AutoComplete" Form Caching Enabled
Auto completion has not been disabled for potentially sensitive input fields.
Any value entered in such fields will be cached by the browser. Therefore, if another user has access to the browser, they will be able to determine previous values for these fields.


Avatar of zoubi77
zoubi77
Flag of Slovenia image

Hm.. By default it is disabled in WI 4.5. If you want to check it out - look in "loginView.ascx". Find line   <form method="POST" action="<%=PAGE_LOGIN%>" name="NFuseForm" autocomplete=off>

autocomplete should be OFF...


<form method="post" action="<%=PAGE_LOGIN%>" name="NFuseForm" autocomplete="off"> </form>
Avatar of Cooker4246

ASKER

Is this the correct path
c:\inetpub\wwwroot\Citrix\AccessPlatform\app_data\auth\include\loginview.ascx

(do not see any references to auto complete).

<%
// loginView.ascx
// Copyright (c) 2000 - 2006 Citrix Systems, Inc. All Rights Reserved.
// Web Interface 4.5.1.8215
%>

<script runat="server">
  LoginPageControl viewControl = null;
</script>
<%
viewControl = (LoginPageControl)Context.Items["viewControl"];
%>

<!--#include file="../serverscripts/constants.aspxf"-->
<!--#include file="../serverscripts/include.aspxf"-->
<!--#include file="../serverscripts/loginView.aspxf"-->

<!--#include file="loginMainForm.inc"-->
<!--#include file="loginAdvancedOptions.inc"-->
<!--#include file="loginButtons.inc"-->
Hi I'm pressed for time here, can I get a response.

Thanks in advance
Sorry I made a mistake - that was for WI 4.2

in 4.5 you must have a file - Inetpub\wwwroot\Citrix\AccessPlatform\app_data\auth\include\loginButtons.inc

in that file you MUST have this two lines

onClick="this.disabled=true;form.submit()"

and

<form method="POST" action="<%=FormAction%>" name="<%=ID_CITRIX_FORM%>" autocomplete="off">

This should do..

How is the order - layout for the added commands?

<%
// loginButtons.inc
// Copyright (c) 2000 - 2006 Citrix Systems, Inc. All Rights Reserved.
// Web Interface 4.5.1.8215
%>
<tr class="buttons">
    <td colspan="2">
            <input type="submit" name="login"
            value='<%=getString("LogIn", currentLocale)%>'
            title="<%=getString("TipLoginButton", currentLocale)%>"
            onClick="this.disabled=true;form.submit()"
            <form method="POST" action="<%=FormAction%>" name="<%=ID_CITRIX_FORM%>" autocomplete="off">
            <%=viewControl.getAllUIDisabledStr()%>
            class="Apply_Join_Login" />
    </td>
</t
from this I would say that you have AutoComplete turned off as Citrix WI is concerned. You should check caching options on IE7 (and IE8). I use almost the same configuration, but have no problems with autocomplete. Please look into browser options for autocomplete.

Are you refering to my Web Interface Server for caching options on IE7. These are my settings for this server (Auto Complete Settings). Should i turn them all off?

web address -  is on
forms - is off
user names and passwords on forms - is on
prompt me to save password - is on




ASKER CERTIFIED SOLUTION
Avatar of zoubi77
zoubi77
Flag of Slovenia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks..