NOTRACEFIELD (JANUS DEFINE parameter): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
m (remove displaytitle)
 
(11 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{DISPLAYTITLE:NOTRACEFIELD}}
<span class="pageSubtitle">NOTRACEFIELD fieldnamelist &mdash; Prevent tracing of field</span>
<span class="pageSubtitle"><section begin="desc" />NOTRACEFIELD fieldnamelist -- Prevent tracing of field.<section end="desc" /></span>


NOTRACEFIELD is a parameter on [[JANUS DEFINE]], which defines and sets characteristics of a Janus port. See the [[JANUS DEFINE#parmlist|List of JANUS DEFINE parameters]].
<var>NOTRACEFIELD</var> is a parameter on <var>[[JANUS DEFINE]]</var>, which defines and sets characteristics of a Janus port.  


Indicates the form field or fields whose values are not to be traced when the X'04' bit (causes tracing of form field values for web requests) of JANUS TRACE is in effect. This is useful for preventing passwords in form fields from being logged to the audit trail. Multiple form fields names can be specified after NOTRACEFIELD by separating them with an "AND" as in
Indicates the form field or fields whose values are not to be traced when the X'04' bit (causes tracing of form field values for web requests) of <var>JANUS TRACE</var> is in effect. This is useful for preventing passwords in form fields from being logged to the audit trail. Multiple form fields names can be specified after <var>NOTRACEFIELD</var> by separating them with an "AND" as in


<p class="code"> JANUS DEFINE MYWEB 80 WEBSERV 28 -
<p class="code">JANUS DEFINE MYWEB 80 WEBSERV 28 -
NOTRACEFIELD PASSWORD AND NEWPASSWORD
NOTRACEFIELD PASSWORD AND NEWPASSWORD
</p>
</p>
When form field values are being traced because of the X'04' TRACE bit, the values for fields specified in the NOTRACEFIELD clause always appear as asterisk in the trace.  
When form field values are being traced because of the X'04' <var>TRACE</var> bit, the values for fields specified in the <var>NOTRACEFIELD</var> clause always appear as asterisk in the trace.  


NOTRACEFIELD can be used to suppress password fields in forms used by <var>[[NEWSESCMD (JANUS DEFINE parameter)|NEWSESCMD]]</var> processing or other fields that might contain secure information.<blockquote> The NOTRACEFIELD parameter will not prevent the logging of secure fields to the audit trail as part of a TCP trace resulting from the setting of the X'08' bit of JANUS TRACE.</blockquote>
<var>NOTRACEFIELD</var> can be used to suppress password fields in forms used by <var>[[NEWSESCMD (JANUS DEFINE parameter)|NEWSESCMD]]</var> processing or other fields that might contain secure information.


Valid only for WEBSERV ports.
<p class="note">'''Note:''' The <var>NOTRACEFIELD</var> parameter will not prevent the logging of secure fields to the audit trail as part of a TCP trace resulting from the setting of the X'08' bit of <var>JANUS TRACE</var>. </p>


==References==
Valid only for <var>[[JANUS DEFINE#type|WEBSERV]]</var> ports.
 
==See also==
<ul>
<li>[[List of Janus commands]]
<li>[[JANUS DEFINE#parmlist|List of JANUS DEFINE parameters]]
</ul>


See: [[List of Janus commands]] | [[JANUS DEFINE#parmlist|List of JANUS DEFINE parameters]].


[[Category:JANUS DEFINE parameters|NOTRACEFIELD]]
[[Category:JANUS DEFINE parameters|NOTRACEFIELD]]

Latest revision as of 22:53, 7 June 2016

NOTRACEFIELD fieldnamelist — Prevent tracing of field

NOTRACEFIELD is a parameter on JANUS DEFINE, which defines and sets characteristics of a Janus port.

Indicates the form field or fields whose values are not to be traced when the X'04' bit (causes tracing of form field values for web requests) of JANUS TRACE is in effect. This is useful for preventing passwords in form fields from being logged to the audit trail. Multiple form fields names can be specified after NOTRACEFIELD by separating them with an "AND" as in

JANUS DEFINE MYWEB 80 WEBSERV 28 - NOTRACEFIELD PASSWORD AND NEWPASSWORD

When form field values are being traced because of the X'04' TRACE bit, the values for fields specified in the NOTRACEFIELD clause always appear as asterisk in the trace.

NOTRACEFIELD can be used to suppress password fields in forms used by NEWSESCMD processing or other fields that might contain secure information.

Note: The NOTRACEFIELD parameter will not prevent the logging of secure fields to the audit trail as part of a TCP trace resulting from the setting of the X'08' bit of JANUS TRACE.

Valid only for WEBSERV ports.

See also