DBA Data[Home] [Help]

PACKAGE: APPS.JTF_SEC_UTIL_PKG

Source


1 package jtf_sec_util_pkg AUTHID CURRENT_USER AS
2 /* $Header: JTFSECS.pls 115.2 2002/06/17 22:22:39 dehu noship $ */
3 /*
4  * FUNCTION NAME:	conv_special_html_chars
5  * DESCRIPTION:
6  *			converts html special characters to prevent
7  *			cross-site scripting attack.  converts the following
8  *                      characters that have special meanings under
9  *                      HTML spec to their numerical entity representation:
10  *				< > & " '
11  * PARAMETERS:
12  *			html_str IN  HTML string that will be converted
13  */
14 FUNCTION conv_special_html_chars (html_str IN VARCHAR2) RETURN VARCHAR2;
15 END jtf_sec_util_pkg;