Sie sind auf Seite 1von 118

Fortify Security Report

Sep 27, 2011 sandipkumars

Fortify Security Report Executive Summary


Issues Overview
On Sep 27, 2011, a source code review was performed over the garfe_810_SP1 code base. 1894 files, 233658 lines of code were scanned and reviewed for defects that could lead to potential security vulnerabilities. A total of 21880 reviewed findings were uncovered during the analysis.

Issues by Fortify Priority Order Low Medium High 20166 1524 190

Recommendations and Conclusions


The Issues Category section provides Fortify recommendations for addressing issues at a generic level. The recommendations for specific fixes can be extrapolated from those generic recommendations by the development group.

Copyright 2007 Fortify Software Inc.

Page 2 of 118

Fortify Security Report Project Summary


Code Base Summary
Code location: E:\AR Code Scan Number of Files: 1894 Lines of Code: 233658 Build Label: garfe_810_SP1

Scan Information
Scan time: 42:39 SCA Engine version: 5.2.2.0006 Machine Name: dvciis1srv Username running scan: sandipkumars

Results Certification
Results Certification Valid Details: Results Signature: Results signature Valid Rules Signature: There were no custom rules used in this scan

Filter Set Summary


Current Enabled Filter Set: Broad Filter Set Details: Folder Filters: If confidence: is in range [3,5] AND severity: is in range (2,5] Then set folder to Warning If confidence: is in range [4,5] AND severity: is in range (3,5] Then set folder to Hot

Audit Guide Summary


Audit guide not enabled

Copyright 2007 Fortify Software Inc.

Page 3 of 118

Fortify Security Report Results Outline


Overall number of results
The scan found 21880 issues.

Vulnerability Examples by Category Category: Cross-Site Scripting: Reflected (184 Issues) Number of Issues
0 <Unaudited> Not an Issue 25 50 75 100 125 150 175

Analysis

Reliability Issue Unknown Suspicious Exploitable

Abstract:
Sending unvalidated data to a web browser can result in the browser executing malicious code.

Explanation:
Cross-site scripting (XSS) vulnerabilities occur when: 1. Data enters a web application through an untrusted source. In the case of Reflected XSS, the untrusted source is typically a web request, while in the case of Persisted (also known as Stored) XSS it is typically a database or other back-end datastore. 2. The data is included in dynamic content that is sent to a web user without being validated for malicious code. The malicious content sent to the web browser often takes the form of a segment of JavaScript, but may also include HTML, Flash or any other type of code that the browser may execute. The variety of attacks based on XSS is almost limitless, but they commonly include transmitting private data like cookies or other session information to the attacker, redirecting the victim to web content controlled by the attacker, or performing other malicious operations on the user's machine under the guise of the vulnerable site. Example 1: The following JSP code segment reads an employee ID, eid, from an HTTP request and displays it to the user. <% String eid = request.getParameter("eid"); %> ... Employee ID: <%= eid %> The code in this example operates correctly if eid contains only standard alphanumeric text. If eid has a value that includes metacharacters or source code, then the code will be executed by the web browser as it displays the HTTP response. Initially this might not appear to be much of a vulnerability. After all, why would someone enter a URL that causes malicious code to run on their own computer? The real danger is that an attacker will create the malicious URL, then use e-mail or social engineering tricks to lure victims into visiting a link to the URL. When victims click the link, they unwittingly reflect the malicious content through the vulnerable web application back to their own computers. This mechanism of exploiting vulnerable web applications is known as Reflected XSS. Example 2: The following JSP code segment queries a database for an employee with a given ID and prints the corresponding employee's name. <%... Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery("select * from emp where id="+eid); if (rs != null) { rs.next(); Copyright 2007 Fortify Software Inc. Page 4 of 118

Fortify Security Report


String name = rs.getString("name"); %> Employee Name: <%= name %> As in Example 1, this code functions correctly when the values of name are well-behaved, but it does nothing to prevent exploits if they are not. Again, this code can appear less dangerous because the value of name is read from a database, whose contents are apparently managed by the application. However, if the value of name originates from user-supplied data, then the database can be a conduit for malicious content. Without proper input validation on all data stored in the database, an attacker can execute malicious commands in the user's web browser. This type of exploit, known as Persistent (or Stored) XSS, is particularly insidious because the indirection caused by the data store makes it more difficult to identify the threat and increases the possibility that the attack will affect multiple users. XSS got its start in this form with web sites that offered a "guestbook" to visitors. Attackers would include JavaScript in their guestbook entries, and all subsequent visitors to the guestbook page would execute the malicious code. As the examples demonstrate, XSS vulnerabilities are caused by code that includes unvalidated data in an HTTP response. There are three vectors by which an XSS attack can reach a victim: - As in Example 1, data is read directly from the HTTP request and reflected back in the HTTP response. Reflected XSS exploits occur when an attacker causes a user to supply dangerous content to a vulnerable web application, which is then reflected back to the user and executed by the web browser. The most common mechanism for delivering malicious content is to include it as a parameter in a URL that is posted publicly or e-mailed directly to victims. URLs constructed in this manner constitute the core of many phishing schemes, whereby an attacker convinces victims to visit a URL that refers to a vulnerable site. After the site reflects the attacker's content back to the user, the content is executed and proceeds to transfer private information, such as cookies that may include session information, from the user's machine to the attacker or perform other nefarious activities. - As in Example 2, the application stores dangerous data in a database or other trusted data store. The dangerous data is subsequently read back into the application and included in dynamic content. Persistent XSS exploits occur when an attacker injects dangerous content into a data store that is later read and included in dynamic content. From an attacker's perspective, the optimal place to inject malicious content is in an area that is displayed to either many users or particularly interesting users. Interesting users typically have elevated privileges in the application or interact with sensitive data that is valuable to the attacker. If one of these users executes malicious content, the attacker may be able to perform privileged operations on behalf of the user or gain access to sensitive data belonging to the user. - A source outside the application stores dangerous data in a database or other data store, and the dangerous data is subsequently read back into the application as trusted data and included in dynamic content.

Recommendations:
The solution to XSS is to ensure that validation occurs in the correct places and checks for the correct properties. Since XSS vulnerabilities occur when an application includes malicious data in its output, one logical approach is to validate data immediately before it leaves the application. However, because web applications often have complex and intricate code for generating dynamic content, this method is prone to errors of omission (missing validation). An effective way to mitigate this risk is to also perform input validation for XSS. Web applications must validate their input to prevent other vulnerabilities, such as SQL injection, so augmenting an application's existing input validation mechanism to include checks for XSS is generally relatively easy. Despite its value, input validation for XSS does not take the place of rigorous output validation. An application may accept input through a shared data store or other trusted source, and that data store may accept input from a source that does not perform adequate input validation. Therefore, the application cannot implicitly rely on the safety of this or any other data. This means the best way to prevent XSS vulnerabilities is to validate everything that enters the application or leaves the application destined for the user. The most secure approach to validation for XSS is to create a whitelist of safe characters that are allowed to appear in HTTP content and accept input composed exclusively of characters in the approved set. For example, a valid username might only include alpha-numeric characters or a phone number might only include digits 0-9. However, this solution is often infeasible in web applications because many characters that have special meaning to the browser should still be considered valid input once they are encoded, such as a web design bulletin board that must accept HTML fragments from its users. A more flexible, but less secure approach is known as blacklisting, which selectively rejects or escapes potentially dangerous characters before using the input. In order to form such a list, you first need to understand the set of characters that hold special meaning for web browsers. Although the HTML standard defines what characters have special meaning, many web browsers try to correct common mistakes in HTML and may treat other characters as special in certain contexts. The CERT(R) Coordination Center at the Software Engineering Institute at Carnegie Mellon University provides the following details about special characters in various contexts [1]: In the content of a block-level element (in the middle of a paragraph of text): - "<" is special because it introduces a tag. - "&" is special because it introduces a character entity. - ">" is special because some browsers treat it as special, on the assumption that the author of the page intended to include an opening "<", but omitted it in error. The following principles apply to attribute values: - In attribute values enclosed with double quotes, the double quotes are special because they mark the end of the attribute value. - In attribute values enclosed with single quote, the single quotes are special because they mark the end of the attribute value. Copyright 2007 Fortify Software Inc. Page 5 of 118

Fortify Security Report


- In attribute values without any quotes, white-space characters, such as space and tab, are special. - "&" is special when used with certain attributes, because it introduces a character entity. In URLs, for example, a search engine might provide a link within the results page that the user can click to re-run the search. This can be implemented by encoding the search query inside the URL, which introduces additional special characters: - Space, tab, and new line are special because they mark the end of the URL. - "&" is special because it either introduces a character entity or separates CGI parameters. - Non-ASCII characters (that is, everything above 128 in the ISO-8859-1 encoding) are not allowed in URLs, so they are considered to be special in this context. - The "%" symbol must be filtered from input anywhere parameters encoded with HTTP escape sequences are decoded by server -side code. For example, "%" must be filtered if input such as "%68%65%6C%6C%6F" becomes "hello" when it appears on the web page in question. Within the body of a <SCRIPT> </SCRIPT>: - The semicolon, parenthesis, curly braces, and new line should be filtered in situations where text could be inserted directly into a pre-existing script tag. Server-side scripts: - Server-side scripts that convert any exclamation characters (!) in input to double-quote characters (") on output might require additional filtering. Other possibilities: - If an attacker submits a request in UTF-7, the special character '<' appears as '+ADw-' and may bypass filtering. If the output is included in a page that does not explicitly specify an encoding format, then some browsers try to intelligently identify the encoding based on the content (in this case, UTF-7). Once you identify the correct points in an application to perform validation for XSS attacks and what special characters the validation should consider, the next challenge is to identify how your validation handles special characters. If special characters are not considered valid input to the application, then you can reject any input that contains special characters as invalid. A second option in this situation is to remove special characters with filtering. However, filtering has the side effect of changing any visual representation of the filtered content and may be unacceptable in circumstances where the integrity of the input must be preserved for display. If input containing special characters must be accepted and displayed accurately, validation must encode any special characters to remove their significance. A complete list of ISO 8859-1 encoded values for special characters is provided as part of the official HTML specification [2]. Many application servers attempt to limit an application's exposure to cross-site scripting vulnerabilities by providing implementations for the functions responsible for setting certain specific HTTP response content that perform validation for the characters essential to a cross-site scripting attack. Do not rely on the server running your application to make it secure. When an application is developed there are no guarantees about what application servers it will run on during its lifetime. As standards and known exploits evolve, there are no guarantees that application servers will also stay in sync.

Tips:
In Fortify Source Code Analysis Suite, the database is treated as a source of untrusted data for XSS vulnerabilities. If the database is a trusted resource in your environment, customize Audit Workbench to filter out data flow issues generated by database sources. Foritfy RTA adds protection against this category.

AcLvlDepositPaymentApplicationButtons.jsp, line 36 (Cross-Site Scripting: Reflected) Folder: Kingdom: Abstract: Source:


33 34 35 36 37

Hot Input Validation and Representation The method _jspService() in AcLvlDepositPaymentApplicationButtons.jsp sends unvalidated data to a web browser on line 36, which can result in the browser executing malicious code. AcLvlDepositPaymentApplicationButtons.jsp:35 javax.servlet.ServletRequest.getParameter()
</TD> <TD align="right"> <%String paymentConfirmButton = request.getParameter("paymentConfirmButton");%> <a id="paymentConfirmButton" name="paymentConfirmButton" value="true" href="#" onClick="doSubmit(document.forms[0],'<%=paymentConfirmButton%>', true, true)"> <input name="confirmPayment" type="button" class="button" value="Confirm Payment">

Sink:
34

AcLvlDepositPaymentApplicationButtons.jsp:36 javax.servlet.jsp.JspWriter.print()
<TD align="right">

Copyright 2007 Fortify Software Inc.

Page 6 of 118

Fortify Security Report


35 36 37 38 <%String paymentConfirmButton = request.getParameter("paymentConfirmButton");%> <a id="paymentConfirmButton" name="paymentConfirmButton" value="true" href="#" onClick="doSubmit(document.forms[0],'<%=paymentConfirmButton%>', true, true)"> <input name="confirmPayment" type="button" class="button" value="Confirm Payment"> </a>

Copyright 2007 Fortify Software Inc.

Page 7 of 118

Fortify Security Report


Category: Command Injection (4 Issues) Number of Issues
0.0 <Unaudited> Not an Issue 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0

Analysis

Reliability Issue Unknown Suspicious Exploitable

Abstract:
Executing commands from an untrusted source or in an untrusted environment can cause an application to execute malicious commands on behalf of an attacker.

Explanation:
Command injection vulnerabilities take two forms: - An attacker can change the command that the program executes: the attacker explicitly controls what the command is. - An attacker can change the environment in which the command executes: the attacker implicitly controls what the command means. In this case we are primarily concerned with the first scenario, the possibility that an attacker may be able to control the command that is executed. Command injection vulnerabilities of this type occur when: 1. Data enters the application from an untrusted source. 2. The data is used as or as part of a string representing a command that is executed by the application. 3. By executing the command, the application gives an attacker a privilege or capability that the attacker would not otherwise have. Example 1: The following code from a system utility uses the system property APPHOME to determine the directory in which it is installed and then executes an initialization script based on a relative path from the specified directory. ... String home = System.getProperty("APPHOME"); String cmd = home + INITCMD; java.lang.Runtime.getRuntime().exec(cmd); ... The code in Example 1 allows an attacker to execute arbitrary commands with the elevated privilege of the application by modifying the system property APPHOME to point to a different path containing a malicious version of INITCMD. Because the program does not validate the value read from the environment, if an attacker can control the value of the system property APPHOME, then they can fool the application into running malicious code and take control of the system. Example 2: The following code is from an administrative web application designed allow users to kick off a backup of an Oracle database using a batch-file wrapper around the rman utility and then run a cleanup.bat script to delete some temporary files. The script rmanDB.bat accepts a single command line parameter, which specifies what type of backup to perform. Because access to the database is restricted, the application runs the backup as a privileged user. ... String btype = request.getParameter("backuptype"); String cmd = new String("cmd.exe /K \"c:\\util\\rmanDB.bat "+btype+"&&c:\\utl\\cleanup.bat\"") System.Runtime.getRuntime().exec(cmd); ...

Copyright 2007 Fortify Software Inc.

Page 8 of 118

Fortify Security Report


The problem here is that the program does not do any validation on the backuptype parameter read from the user. Typically the Runtime.exec() function will not execute multiple commands, but in this case the program first runs the cmd.exe shell in order to run multiple commands with a single call to Runtime.exec(). Once the shell is invoked, it will happily execute multiple commands separated by two ampersands. If an attacker passes a string of the form "&& del c:\\dbms\\*.*", then the application will execute this command along with the others specified by the program. Because of the nature of the application, it runs with the privileges necessary to interact with the database, which means whatever command the attacker injects will run with those privileges as well. Example 3: The following code is from a web application that allows users access to an interface through which they can update their password on the system. Part of the process for updating passwords in certain network environments is to run a make command in the /var/yp directory, the code for which is shown below. ... System.Runtime.getRuntime().exec("make"); ... The problem here is that the program does not specify an absolute path for make and fails to clean its environment prior to executing the call to Runtime.exec(). If an attacker can modify the $PATH variable to point to a malicious binary called make and cause the program to be executed in their environment, then the malicious binary will be loaded instead of the one intended. Because of the nature of the application, it runs with the privileges necessary to perform system operations, which means the attacker's make will now be run with these privileges, possibly giving the attacker complete control of the system.

Recommendations:
Do not allow users to have direct control over the commands executed by the program. In cases where user input must affect the command to be run, use the input only to make a selection from a predetermined set of safe commands. If the input appears to be malicious, the value passed to the command execution function should either default to some safe selection from this set or the program should decline to execute any command at all. In cases where user input must be used as an argument to a command executed by the program, this approach often becomes impractical because the set of legitimate argument values is too large or too hard to keep track of. Developers often fall back on blacklisting in these situations. Blacklisting selectively rejects or escapes potentially dangerous characters before using the input. Any list of unsafe characters is likely to be incomplete and will be heavily dependant on the system where the commands are executed. A better approach is to create a white list of characters that are allowed to appear in the input and accept input composed exclusively of characters in the approved set. An attacker can indirectly control commands executed by a program by modifying the environment in which they are executed. The environment should not be trusted and precautions should be taken to prevent an attacker from using some manipulation of the environment to perform an attack. Whenever possible, commands should be controlled by the application and executed using an absolute path. In cases where the path is not known at compile time, such as for cross-platform applications, an absolute path should be constructed from trusted values during execution. Command values and paths read from configuration files or the environment should be sanity-checked against a set of invariants that define valid values. Other checks can sometimes be performed to detect if these sources may have been tampered with. For example, if a configuration file is world-writable, the program might refuse to run. In cases where information about the binary to be executed is known in advance, the program may perform checks to verify the identity of the binary. If a binary should always be owned by a particular user or have a particular set of access permissions assigned to it, these properties can be verified programmatically before the binary is executed. Although it may be impossible to completely protect a program from an imaginative attacker bent on controlling the commands the program executes, be sure to apply the principle of least privilege wherever the program executes an external command: do not hold privileges that are not essential to the execution of the command.

Xmlc.java, line 207 (Command Injection) Folder: Kingdom: Abstract: Source:


292 293 294 295 296

Hot Input Validation and Representation The method execute() in Xmlc.java calls exec() with a command built from untrusted data. This call can cause the program to execute malicious commands on behalf of an attacker. Xmlc.java:294 main(0)()
} public static void main(String[] args) { HashMap argsMap = new HashMap();

Sink:
205 206 207 208 209

Xmlc.java:207 java.lang.Runtime.exec()
String _args[] = (String[])args.toArray(new String[args.size()]); Runtime runtime = Runtime.getRuntime(); Process process = runtime.exec(_args); int status = process.waitFor(); if(status != 0)

Copyright 2007 Fortify Software Inc.

Page 9 of 118

Fortify Security Report


Category: Password Management: Hardcoded Password (2 Issues) Number of Issues
0.00 <Unaudited> Not an Issue 0.25 0.50 0.75 1.00 1.25 1.50 1.75 2.00

Analysis

Reliability Issue Unknown Suspicious Exploitable

Abstract:
Hardcoded passwords can compromise system security in a way that cannot be easily remedied.

Explanation:
It is never a good idea to hardcode a password. Not only does hardcoding a password allow all of the project's developers to view the password, it also makes fixing the problem extremely difficult. Once the code is in production, the password cannot be changed without patching the software. If the account protected by the password is compromised, the owners of the system will be forced to choose between security and availability. Example: The following code uses a hardcoded password to connect to a database: ... DriverManager.getConnection(url, "scott", "tiger"); ... This code will run successfully, but anyone who has access to it will have access to the password. Once the program has shipped, there is no going back from the database user "scott" with a password of "tiger" unless the program is patched. A devious employee with access to this information can use it to break into the system. Even worse, if attackers have access to the bytecode for application, they can use the javap -c command to access the disassembled code, which will contain the values of the passwords used. The result of this operation might look something like the following for the example above: javap -c ConnMngr.class 22: ldc #36; //String jdbc:mysql://ixne.com/rxsql 24: ldc #38; //String scott 26: ldc #17; //String tiger

Recommendations:
Passwords should never be hardcoded and should generally be obfuscated and managed in an external source. Storing passwords in plaintext anywhere on the system allows anyone with sufficient permissions to read and potentially misuse the password. Some third party products claim the ability to manage passwords in a more secure way. For example, WebSphere Application Server 4.x uses a simple XOR encryption algorithm for obfuscating values, but be skeptical about such facilities. WebSphere and other application servers offer outdated and relatively weak encryption mechanisms that are insufficient for security-sensitive environments. For a secure solution, the only viable option available today appears to be a proprietary one that you create.

Tips:
The Fortify Java Annotations FortifyPassword and FortifyNotPassword can be used to indicate which fields and variables represent passwords.

WASLogin.java, line 25 (Password Management: Hardcoded Password) Folder: Kingdom: Abstract: Sink:
23 24

Hot Security Features Hardcoded passwords can compromise system security in a way that cannot be easily remedied. WASLogin.java:25 FieldAccess()
//password can be anything according to UAMS

Copyright 2007 Fortify Software Inc.

Page 10 of 118

Fortify Security Report


25 26 27 private static final String PASSWORD = "N/A"; /* (non-Javadoc)

Copyright 2007 Fortify Software Inc.

Page 11 of 118

Fortify Security Report Detailed Project Summary


Files Scanned
Code base location: E:\AR Code Scan Files Scanned: v81_0_SP_1/META-INF/nosec/application.xml398 bytesSep 25, 2011 9:12:50 PM v81_0_SP_1/META-INF/sec/application.xml404 bytesSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/delegates/AccountDelegate.java62 Lines7.5 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/delegates/CMSearchDelegate.java20 Lines2.5 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/handlers/AccountLevelDataHandler.java23 Lines5.1 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/handlers/AccountSearchActionHandler.java252 Lines27.1 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/handlers/AccountSearchDataHandler.java48 Lines7.5 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/handlers/AccountSearchFlowHandler.java55 Lines5.5 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/handlers/AccountSearchRenderHandler.java63 Lines7.2 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/handlers/forms/AccountListForm.java8 Lines1.1 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/handlers/forms/AccountSearchForm.java16 Lines2.4 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/handlers/screens/AccountDetailsScreen.java64 Lines8 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/handlers/screens/AccountInfoScreenFragment.java13 Lines2.9 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/handlers/screens/AccountListScreen.java48 Lines6.6 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/handlers/screens/AccountPaymentListScreen.java2 Lines1.6 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/handlers/screens/AccountSearchScreen.java17 Lines3.7 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/handlers/screens/DefaultAccountActionsScreen.java21 Lines3.3 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/handlers/screens/DefaultAccountQueriesScreen.java165 Lines20.6 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/handlers/screens/DefaultAccountScreen.java46 Lines6.5 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/html/AccountDetailsHTML.java572 Lines45.5 KBSep 25, 2011 10:21:18 PM v81_0_SP_1/amdocs/arClient/account/html/AccountInformationHTML.java253 Lines20.7 KBSep 25, 2011 10:21:20 PM v81_0_SP_1/amdocs/arClient/account/html/AccountListButtonsHTML.java328 Lines26.2 KBSep 25, 2011 10:21:26 PM v81_0_SP_1/amdocs/arClient/account/html/AccountListHTML.java375 Lines29.9 KBSep 25, 2011 10:21:22 PM v81_0_SP_1/amdocs/arClient/account/html/AccountSearchButtonsHTML.java195 Lines16.4 KBSep 25, 2011 10:21:30 PM v81_0_SP_1/amdocs/arClient/account/html/AccountSearchHTML.java526 Lines40.8 KBSep 25, 2011 10:21:28 PM v81_0_SP_1/amdocs/arClient/account/statement/delegates/AccountStatementDelegate.java20 Lines2.4 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/statement/handlers/AccountStatementActionHandler.java78 Lines7.9 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/statement/handlers/AccountStatementDataHandler.java54 Lines7.3 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/statement/handlers/AccountStatementFlowHandler.java23 Lines3.7 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/statement/handlers/AccountStatementRenderHandler.java30 Lines4.1 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/statement/handlers/forms/AccountStatementListForm.java10 Lines1.5 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/statement/handlers/screens/AccountStatementListScreen.java69 Lines10 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/statement/handlers/screens/AccountStatementSearchScreen.java52 Lines7.3 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/statement/html/AccountStatementListHTML.java433 Lines34.2 KBSep 25, 2011 10:21:32 PM Copyright 2007 Fortify Software Inc. Page 12 of 118

Fortify Security Report


v81_0_SP_1/amdocs/arClient/account/statement/html/AccountStatementSearchButtonsHTML.java181 Lines15.5 KBSep 25, 2011 10:21:38 PM v81_0_SP_1/amdocs/arClient/account/statement/html/AccountStatementSearchHTML.java352 Lines26.6 KBSep 25, 2011 10:21:36 PM v81_0_SP_1/amdocs/arClient/account/statement/util/AccountStatementWebKeys.java17 Lines2.4 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/statement/util/PageTotals.java15 Lines2.1 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/statement/util/TotalsForAllPages.java14 Lines1.4 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/account/util/AccountWebKeys.java64 Lines7.5 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/boh/delegates/BOHDelegate.java38 Lines3.8 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/boh/handlers/BOHActionsActionHandler.java29 Lines4.2 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/boh/handlers/BOHActionsDataHandler.java23 Lines2.4 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/boh/handlers/BOHActionsFlowHandler.java17 Lines2.1 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/boh/handlers/BOHActionsRenderHandler.java34 Lines5 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/boh/handlers/forms/BOHTreeForm.java10 Lines1.1 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/boh/handlers/screens/BOHTreeScreen.java72 Lines8 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/boh/html/BOHTreeHTML.java399 Lines33.4 KBSep 25, 2011 10:21:40 PM v81_0_SP_1/amdocs/arClient/boh/util/BOHWebKeys.java197 bytesSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/credit/delegates/CreditDelegate.java85 Lines11.6 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/credit/handlers/CreditActionsActionHandler.java256 Lines24.6 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/credit/handlers/CreditActionsDataHandler.java71 Lines11.5 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/credit/handlers/CreditActionsFlowHandler.java49 Lines5.8 KBSep 25, 2011 9:12:50 PM v81_0_SP_1/amdocs/arClient/credit/handlers/CreditActionsRenderHandler.java55 Lines6.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/CreditNoteQueriesActionHandler.java193 Lines21.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/CreditNoteQueriesDataHandler.java78 Lines13.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/CreditNoteQueriesFlowHandler.java41 Lines5.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/CreditNoteQueriesRenderHandler.java48 Lines6.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/CreditQueriesActionHandler.java219 Lines20.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/CreditQueriesDataHandler.java82 Lines11.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/CreditQueriesFlowHandler.java38 Lines5.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/CreditQueriesRenderHandler.java45 Lines5.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/forms/BillingArrangementListForm.java10 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/forms/CreditAllocationDetailsForm.java33 Lines4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/forms/CreditAllocationListForm.java10 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/forms/CreditDetailsForm.java15 Lines2.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/forms/CreditListForm.java14 Lines2.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/forms/CreditNoteDeleteForm.java7 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/forms/CreditNoteListForm.java10 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/forms/CreditNoteSearchForm.java11 Lines2.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/forms/CreditNoteSummaryListForm.java10 Lines2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/forms/CreditNoteViewDetailsForm.java25 Lines3.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/forms/CreditReversalDetailsForm.java8 Lines1.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/forms/CreditSearchForm.java11 Lines2.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/forms/PendingCreditDetailsForm.java14 Lines2.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/BillingArrangementListScreen.java30 Lines4.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditAllocationConfirmationScreen.java26 Lines5.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditAllocationDetailsScreen.java210 Lines26.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditAllocationListScreen.java37 Lines6.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditConfirmationScreen.java31 Lines6.1 KBSep 25, 2011 9:12:52 PM Copyright 2007 Fortify Software Inc. Page 13 of 118

Fortify Security Report


v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditCreateAllocationConfirmationScreen.java41 Lines8.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditDetailsScreen.java59 Lines9.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditInfoScreenFragment.java19 Lines3.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditListScreen.java69 Lines9.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditNoteDeleteConfirmationScreen.java26 Lines5.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditNoteDeleteDetailsScreen.java46 Lines7.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditNoteFinalizeConfirmationScreen.java27 Lines5.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditNoteFinalizeDetailsScreen.java31 Lines5.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditNoteInfoScreenFragment.java15 Lines3.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditNoteListScreen.java45 Lines6.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditNoteSearchScreen.java30 Lines5.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditNoteSummaryListScreen.java30 Lines5.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditNoteViewConfirmationScreen.java32 Lines5.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditNoteViewDetailsScreen.java70 Lines11.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditReversalConfirmationScreen.java29 Lines6.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditReversalDetailsScreen.java29 Lines4.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/CreditSearchScreen.java24 Lines4.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/PendingCreditConfirmationScreen.java28 Lines5.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/handlers/screens/PendingCreditDetailsScreen.java38 Lines7.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/credit/html/BillingArrangementListButtonsHTML.java174 Lines14.9 KBSep 25, 2011 10:21:46 PM v81_0_SP_1/amdocs/arClient/credit/html/BillingArrangementListHTML.java257 Lines21 KBSep 25, 2011 10:21:42 PM v81_0_SP_1/amdocs/arClient/credit/html/CreateCreditButtonsHTML.java383 Lines30.2 KBSep 25, 2011 10:21:48 PM v81_0_SP_1/amdocs/arClient/credit/html/CreatePendingCreditButtonsHTML.java299 Lines23.5 KBSep 25, 2011 10:21:50 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditAllocationConfirmationButtonsHTML.java178 Lines14.9 KBSep 25, 2011 10:21:56 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditAllocationConfirmationHTML.java311 Lines24.9 KBSep 25, 2011 10:21:54 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditAllocationDetailsButtonsHTML.java353 Lines27 KBSep 25, 2011 10:22:00 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditAllocationDetailsHTML.java701 Lines58.7 KBSep 25, 2011 10:21:58 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditAllocationListButtonsHTML.java164 Lines13.8 KBSep 25, 2011 10:22:06 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditAllocationListHTML.java381 Lines31.4 KBSep 25, 2011 10:22:04 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditConfirmationHTML.java442 Lines34.5 KBSep 25, 2011 10:22:08 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditCreateAllocationConfirmationHTML.java601 Lines47 KBSep 25, 2011 10:22:10 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditDetailsHTML.java762 Lines58.1 KBSep 25, 2011 10:22:12 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditInformationHTML.java418 Lines34.5 KBSep 25, 2011 10:22:16 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditListHTML.java406 Lines33.5 KBSep 25, 2011 10:22:18 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditNoteDeleteConfirmationHTML.java409 Lines32.2 KBSep 25, 2011 10:22:20 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditNoteDeleteDetailsHTML.java499 Lines38.2 KBSep 25, 2011 10:22:22 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditNoteDetailsHTML.java417 Lines32.6 KBSep 25, 2011 10:22:24 PM Copyright 2007 Fortify Software Inc. Page 14 of 118

Fortify Security Report


v81_0_SP_1/amdocs/arClient/credit/html/CreditNoteFinalizeConfirmationHTML.java457 Lines35.2 KBSep 25, 2011 10:22:28 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditNoteInformationHTML.java423 Lines34 KBSep 25, 2011 10:22:30 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditNoteListButtonsHTML.java174 Lines14.9 KBSep 25, 2011 10:22:34 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditNoteListHTML.java343 Lines27.8 KBSep 25, 2011 10:22:32 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditNoteSearchButtonsHTML.java182 Lines15.3 KBSep 25, 2011 10:22:40 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditNoteSearchHTML.java468 Lines35.2 KBSep 25, 2011 10:22:38 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditNoteSummaryListHTML.java273 Lines22.1 KBSep 25, 2011 10:22:42 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditNoteViewConfirmationHTML.java361 Lines28.9 KBSep 25, 2011 10:22:44 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditNoteViewDetailsButtonsHTML.java254 Lines20.1 KBSep 25, 2011 10:22:48 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditNoteViewDetailsHTML.java451 Lines37.1 KBSep 25, 2011 10:22:46 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditReversalConfirmationHTML.java372 Lines29.3 KBSep 25, 2011 10:22:50 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditReversalDetailsHTML.java373 Lines28.3 KBSep 25, 2011 10:22:54 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditSearchButtonsHTML.java182 Lines15.1 KBSep 25, 2011 10:22:58 PM v81_0_SP_1/amdocs/arClient/credit/html/CreditSearchHTML.java460 Lines33.8 KBSep 25, 2011 10:22:56 PM v81_0_SP_1/amdocs/arClient/credit/html/PendingCreditConfirmationHTML.java409 Lines31.9 KBSep 25, 2011 10:23:00 PM v81_0_SP_1/amdocs/arClient/credit/html/PendingCreditDetailsHTML.java464 Lines34.1 KBSep 25, 2011 10:23:02 PM v81_0_SP_1/amdocs/arClient/credit/util/CreditWebKeys.java61 Lines7.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/delegates/DebitDelegate.java18 Lines2.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/DebitActionsActionHandler.java38 Lines5.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/DebitActionsDataHandler.java22 Lines3.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/DebitActionsFlowHandler.java18 Lines2.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/DebitActionsRenderHandler.java25 Lines3.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/DebitQueriesActionHandler.java277 Lines26.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/DebitQueriesDataHandler.java93 Lines12.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/DebitQueriesFlowHandler.java51 Lines5.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/DebitQueriesRenderHandler.java56 Lines5.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/forms/ChargeLevelCreditDetailsForm.java14 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/forms/ChargeLevelDisputeDetailsForm.java13 Lines1.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/forms/ChargeLevelPendingCreditDetailsForm.java12 Lines1.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/forms/CreditNoteDebitListForm.java10 Lines1.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/forms/DebitDetailsForm.java9 Lines1.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/forms/DebitListForm.java11 Lines2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/forms/DebitSearchForm.java11 Lines1.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/screens/ChargeLevelCreditAllocationConfirmationScreen.java41 Lines6.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/screens/ChargeLevelCreditConfirmationScreen.java29 Lines4.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/screens/ChargeLevelCreditDetailsScreen.java43 Lines6.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/screens/ChargeLevelDisputeConfirmationScreen.java25 Lines4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/screens/ChargeLevelDisputeDetailsScreen.java37 Lines5.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/screens/ChargeLevelPendingCreditConfirmationScreen.java25 Lines4.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/screens/ChargeLevelPendingCreditDetailsScreen.java28 Lines4.9 KBSep 25, 2011 9:12:52 PM Copyright 2007 Fortify Software Inc. Page 15 of 118

Fortify Security Report


v81_0_SP_1/amdocs/arClient/debit/handlers/screens/CreditNoteListDebitScreen.java30 Lines4.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/screens/DebitConfirmationScreen.java24 Lines3.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/screens/DebitDetailsScreen.java24 Lines4.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/screens/DebitInfoScreenFragment.java17 Lines3.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/screens/DebitListScreen.java45 Lines6.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/handlers/screens/DebitSearchScreen.java34 Lines4.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/html/ChargeLevelCreditAllocationConfirmationHTML.java569 Lines44.3 KBSep 25, 2011 10:23:04 PM v81_0_SP_1/amdocs/arClient/debit/html/ChargeLevelCreditConfirmationHTML.java452 Lines35.1 KBSep 25, 2011 10:23:08 PM v81_0_SP_1/amdocs/arClient/debit/html/ChargeLevelCreditDetailsHTML.java830 Lines62.5 KBSep 25, 2011 10:23:10 PM v81_0_SP_1/amdocs/arClient/debit/html/ChargeLevelDisputeConfirmationHTML.java414 Lines31.9 KBSep 25, 2011 10:23:12 PM v81_0_SP_1/amdocs/arClient/debit/html/ChargeLevelDisputeDetailsHTML.java525 Lines38.9 KBSep 25, 2011 10:23:16 PM v81_0_SP_1/amdocs/arClient/debit/html/ChargeLevelPendingCreditConfirmationHTML.java414 Lines31.9 KBSep 25, 2011 10:23:18 PM v81_0_SP_1/amdocs/arClient/debit/html/ChargeLevelPendingCreditDetailsHTML.java531 Lines39.3 KBSep 25, 2011 10:23:20 PM v81_0_SP_1/amdocs/arClient/debit/html/DebitConfirmationHTML.java380 Lines28.9 KBSep 25, 2011 10:23:22 PM v81_0_SP_1/amdocs/arClient/debit/html/DebitDetailsHTML.java390 Lines28.8 KBSep 25, 2011 10:23:26 PM v81_0_SP_1/amdocs/arClient/debit/html/DebitInformationHTML.java521 Lines41.9 KBSep 25, 2011 10:23:28 PM v81_0_SP_1/amdocs/arClient/debit/html/DebitListHTML.java413 Lines33.8 KBSep 25, 2011 10:23:30 PM v81_0_SP_1/amdocs/arClient/debit/html/DebitSearchButtonsHTML.java182 Lines15.1 KBSep 25, 2011 10:23:36 PM v81_0_SP_1/amdocs/arClient/debit/html/DebitSearchHTML.java526 Lines38.2 KBSep 25, 2011 10:23:32 PM v81_0_SP_1/amdocs/arClient/debit/util/DebitQueriesWebKeys.java13 Lines1.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/debit/util/DebitWebKeys.java43 Lines4.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/delegates/DepositDelegate.java65 Lines9.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/DepositActionsActionHandler.java131 Lines13.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/DepositActionsDataHandler.java56 Lines7.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/DepositActionsFlowHandler.java26 Lines4.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/DepositActionsRenderHandler.java33 Lines4.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/DepositQueriesActionHandler.java216 Lines20.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/DepositQueriesDataHandler.java73 Lines11.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/DepositQueriesFlowHandler.java50 Lines5.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/DepositQueriesRenderHandler.java57 Lines5.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/forms/BillingArrangementListForm.java10 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/forms/DepositCancelForm.java13 Lines2.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/forms/DepositDecreaseForm.java14 Lines2.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/forms/DepositDetailsForm.java16 Lines2.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/forms/DepositIncreaseForm.java17 Lines3.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/forms/DepositListForm.java12 Lines2.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/forms/DepositReleaseForm.java14 Lines2.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/forms/DepositSearchForm.java14 Lines2.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/screens/BillingArrangementListScreen.java30 Lines4.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/screens/DepositCancelDetailsScreen.java30 Lines6.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/screens/DepositConfirmationScreen.java36 Lines6.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/screens/DepositDecreaseScreen.java60 Lines9.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/screens/DepositDetailsScreen.java63 Lines9.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/screens/DepositIncreaseScreen.java72 Lines11.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/screens/DepositListScreen.java77 Lines9.3 KBSep 25, 2011 9:12:52 PM Copyright 2007 Fortify Software Inc. Page 16 of 118

Fortify Security Report


v81_0_SP_1/amdocs/arClient/deposit/handlers/screens/DepositReleaseDetailsScreen.java49 Lines8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/screens/DepositSearchScreen.java26 Lines5.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/handlers/screens/DepositViewScreen.java34 Lines5.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/deposit/html/BillingArrangementListButtonsHTML.java174 Lines14.9 KBSep 25, 2011 10:23:40 PM v81_0_SP_1/amdocs/arClient/deposit/html/BillingArrangementListHTML.java257 Lines21 KBSep 25, 2011 10:23:38 PM v81_0_SP_1/amdocs/arClient/deposit/html/CreateDepositButtonsHTML.java276 Lines21.2 KBSep 25, 2011 10:23:42 PM v81_0_SP_1/amdocs/arClient/deposit/html/DepositCancelButtonsHTML.java182 Lines15.2 KBSep 25, 2011 10:23:48 PM v81_0_SP_1/amdocs/arClient/deposit/html/DepositCancelHTML.java422 Lines32.6 KBSep 25, 2011 10:23:44 PM v81_0_SP_1/amdocs/arClient/deposit/html/DepositConfirmationHTML.java544 Lines42.5 KBSep 25, 2011 10:23:50 PM v81_0_SP_1/amdocs/arClient/deposit/html/DepositDecreaseButtonsHTML.java276 Lines21.2 KBSep 25, 2011 10:23:56 PM v81_0_SP_1/amdocs/arClient/deposit/html/DepositDecreaseHTML.java971 Lines75.9 KBSep 25, 2011 10:23:52 PM v81_0_SP_1/amdocs/arClient/deposit/html/DepositDetailsHTML.java720 Lines53.3 KBSep 25, 2011 10:23:58 PM v81_0_SP_1/amdocs/arClient/deposit/html/DepositIncreaseButtonsHTML.java280 Lines21.5 KBSep 25, 2011 10:24:04 PM v81_0_SP_1/amdocs/arClient/deposit/html/DepositIncreaseHTML.java1057 Lines82 KBSep 25, 2011 10:24:02 PM v81_0_SP_1/amdocs/arClient/deposit/html/DepositListHTML.java935 Lines71 KBSep 25, 2011 10:24:06 PM v81_0_SP_1/amdocs/arClient/deposit/html/DepositReleaseButtonsHTML.java182 Lines15.3 KBSep 25, 2011 10:24:12 PM v81_0_SP_1/amdocs/arClient/deposit/html/DepositReleaseHTML.java937 Lines73 KBSep 25, 2011 10:24:08 PM v81_0_SP_1/amdocs/arClient/deposit/html/DepositSearchButtonsHTML.java182 Lines15.2 KBSep 25, 2011 10:24:16 PM v81_0_SP_1/amdocs/arClient/deposit/html/DepositSearchHTML.java608 Lines44.7 KBSep 25, 2011 10:24:14 PM v81_0_SP_1/amdocs/arClient/deposit/html/DepositViewHTML.java925 Lines72.1 KBSep 25, 2011 10:24:18 PM v81_0_SP_1/amdocs/arClient/deposit/util/DepositWebKeys.java40 Lines5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/DirectDebitActionsActionHandler.java82 Lines11.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/DirectDebitActionsDataHandler.java34 Lines6.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/DirectDebitActionsFlowHandler.java20 Lines3.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/DirectDebitActionsRenderHandler.java27 Lines4.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/DirectDebitQueriesActionHandler.java133 Lines17.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/DirectDebitQueriesDataHandler.java72 Lines14.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/DirectDebitQueriesFlowHandler.java33 Lines4.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/DirectDebitQueriesRenderHandler.java39 Lines5.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/forms/DirectDebitDetailsForm.java20 Lines3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/forms/DirectDebitListForm.java10 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/forms/DirectDebitSearchForm.java32 Lines5.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/forms/DirectDebitUpdateDetailsForm.java22 Lines5.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/screens/DirectDebitConfirmationScreen.java41 Lines7.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/screens/DirectDebitDetailsScreen.java91 Lines14 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/screens/DirectDebitInfoScreenFragment.java15 Lines3.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/screens/DirectDebitListScreen.java125 Lines18.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/screens/DirectDebitReissueScreen.java23 Lines3.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/screens/DirectDebitSearchScreen.java54 Lines9.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/screens/DirectDebitUpdateBaseScreen.java127 Lines15.4 KBSep 25, 2011 Copyright 2007 Fortify Software Inc. Page 17 of 118

Fortify Security Report


9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/screens/DirectDebitUpdateConfirmationScreen.java50 Lines8.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/screens/DirectDebitUpdateDetailsScreen.java34 Lines4.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/handlers/screens/DirectDebitUpdateStatusScreen.java34 Lines4.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/directdebit/html/DirectDebitConfirmationHTML.java705 Lines53.5 KBSep 25, 2011 10:24:22 PM v81_0_SP_1/amdocs/arClient/directdebit/html/DirectDebitDetailsHTML.java989 Lines72.6 KBSep 25, 2011 10:24:24 PM v81_0_SP_1/amdocs/arClient/directdebit/html/DirectDebitInformationHTML.java361 Lines30 KBSep 25, 2011 10:24:26 PM v81_0_SP_1/amdocs/arClient/directdebit/html/DirectDebitListHTML.java1401 Lines108.5 KBSep 25, 2011 10:24:30 PM v81_0_SP_1/amdocs/arClient/directdebit/html/DirectDebitSearchButtonsHTML.java182 Lines15.4 KBSep 25, 2011 10:24:34 PM v81_0_SP_1/amdocs/arClient/directdebit/html/DirectDebitSearchHTML.java1121 Lines79.1 KBSep 25, 2011 10:24:32 PM v81_0_SP_1/amdocs/arClient/directdebit/html/DirectDebitUpdateConfirmationHTML.java746 Lines57 KBSep 25, 2011 10:24:38 PM v81_0_SP_1/amdocs/arClient/directdebit/html/DirectDebitUpdateDetailsHTML.java1067 Lines81.5 KBSep 25, 2011 10:24:40 PM v81_0_SP_1/amdocs/arClient/directdebit/util/DirectDebitWebKeys.java36 Lines4.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/delegates/DisputeDelegate.java48 Lines7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/DisputeActionsActionHandler.java133 Lines14 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/DisputeActionsDataHandler.java43 Lines6.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/DisputeActionsFlowHandler.java26 Lines4.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/DisputeActionsRenderHandler.java33 Lines5.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/DisputeQueriesActionHandler.java239 Lines22.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/DisputeQueriesDataHandler.java78 Lines10.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/DisputeQueriesFlowHandler.java50 Lines5.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/DisputeQueriesRenderHandler.java57 Lines7.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/forms/DisputeCancelForm.java14 Lines2.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/forms/DisputeDetailsForm.java13 Lines2.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/forms/DisputeJustifyForm.java15 Lines2.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/forms/DisputeListForm.java17 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/forms/DisputeRejectForm.java14 Lines2.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/forms/DisputeSearchForm.java12 Lines2.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/forms/DisputeUpdateForm.java15 Lines2.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/forms/DisputeViewForm.java13 Lines1.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/screens/DisputeCancelConfirmationScreen.java26 Lines5.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/screens/DisputeCancelDetailsScreen.java36 Lines6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/screens/DisputeConfirmationScreen.java27 Lines5.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/screens/DisputeDetailsScreen.java30 Lines5.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/screens/DisputeJustifyConfirmationScreen.java31 Lines5.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/screens/DisputeJustifyDetailsScreen.java29 Lines5.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/screens/DisputeListScreen.java76 Lines10.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/screens/DisputeRejectConfirmationScreen.java26 Lines5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/screens/DisputeRejectDetailsScreen.java36 Lines6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/screens/DisputeSearchScreen.java32 Lines6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/screens/DisputeUpdateConfirmationScreen.java26 Lines5.1 KBSep 25, 2011 9:12:52 PM Copyright 2007 Fortify Software Inc. Page 18 of 118

Fortify Security Report


v81_0_SP_1/amdocs/arClient/dispute/handlers/screens/DisputeUpdateDetailsScreen.java27 Lines4.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/handlers/screens/DisputeViewScreen.java82 Lines10.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/dispute/html/CreateDisputeButtonsHTML.java383 Lines30.2 KBSep 25, 2011 10:24:42 PM v81_0_SP_1/amdocs/arClient/dispute/html/DisputeCancelButtonsHTML.java182 Lines15.2 KBSep 25, 2011 10:24:48 PM v81_0_SP_1/amdocs/arClient/dispute/html/DisputeCancelConfirmationHTML.java339 Lines26.5 KBSep 25, 2011 10:24:50 PM v81_0_SP_1/amdocs/arClient/dispute/html/DisputeCancelHTML.java432 Lines33.2 KBSep 25, 2011 10:24:46 PM v81_0_SP_1/amdocs/arClient/dispute/html/DisputeConfirmationHTML.java376 Lines29.1 KBSep 25, 2011 10:24:54 PM v81_0_SP_1/amdocs/arClient/dispute/html/DisputeDetailsHTML.java474 Lines34.7 KBSep 25, 2011 10:24:56 PM v81_0_SP_1/amdocs/arClient/dispute/html/DisputeInformationHTML.java418 Lines34.6 KBSep 25, 2011 10:24:58 PM v81_0_SP_1/amdocs/arClient/dispute/html/DisputeJustifyButtonsHTML.java182 Lines15.3 KBSep 25, 2011 10:25:04 PM v81_0_SP_1/amdocs/arClient/dispute/html/DisputeJustifyConfirmationHTML.java360 Lines28.3 KBSep 25, 2011 10:25:06 PM v81_0_SP_1/amdocs/arClient/dispute/html/DisputeJustifyHTML.java523 Lines39.4 KBSep 25, 2011 10:25:02 PM v81_0_SP_1/amdocs/arClient/dispute/html/DisputeListHTML.java448 Lines37.7 KBSep 25, 2011 10:25:08 PM v81_0_SP_1/amdocs/arClient/dispute/html/DisputeRejectButtonsHTML.java182 Lines15.2 KBSep 25, 2011 10:25:14 PM v81_0_SP_1/amdocs/arClient/dispute/html/DisputeRejectConfirmationHTML.java339 Lines26.5 KBSep 25, 2011 10:25:16 PM v81_0_SP_1/amdocs/arClient/dispute/html/DisputeRejectHTML.java432 Lines33.2 KBSep 25, 2011 10:25:12 PM v81_0_SP_1/amdocs/arClient/dispute/html/DisputeSearchHTML.java501 Lines36.7 KBSep 25, 2011 10:25:18 PM v81_0_SP_1/amdocs/arClient/dispute/html/DisputeUpdateButtonsHTML.java182 Lines15.2 KBSep 25, 2011 10:25:22 PM v81_0_SP_1/amdocs/arClient/dispute/html/DisputeUpdateConfirmationHTML.java339 Lines26.4 KBSep 25, 2011 10:25:26 PM v81_0_SP_1/amdocs/arClient/dispute/html/DisputeUpdateHTML.java474 Lines35.1 KBSep 25, 2011 10:25:20 PM v81_0_SP_1/amdocs/arClient/dispute/html/DisputeViewHTML.java447 Lines35.2 KBSep 25, 2011 10:25:28 PM v81_0_SP_1/amdocs/arClient/dispute/util/DisputeWebKeys.java36 Lines4.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/appservices/ARBean.java107 Lines12.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/appservices/ARClientEnvironment.java122 Lines12.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/appservices/ARClientMessages.java26 Lines3.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/appservices/ARClientScreenText.properties10.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/appservices/ARClientValidationMessages.properties1.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/appservices/ARFEHighAvailabilityCommandsImpl.java38 Lines3.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/appservices/BOHSessionUtils.java35 Lines4.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/appservices/ClientShutDownClass.java7 Lines1.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/appservices/HtmlClassFactory.java41 Lines3.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/appservices/IJAASLogin.java891 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/appservices/JNDILookupFactory.java55 Lines10 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/appservices/MessageController.java1 Lines4.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/appservices/PersistencyBean.java62 Lines10.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/appservices/SecurityController.java61 Lines6.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/appservices/WASLogin.java24 Lines2.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/datatypes/BasicDatatype.java33 Lines2.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/datatypes/ButtonSettings.java10 Lines1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/datatypes/DoDepositPaymentSubmit.java4 Lines1.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/datatypes/DoDirectDebitUpdateSubmit.java5 Lines998 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/datatypes/DoPaymentSubmit.java5 Lines1017 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/datatypes/DoSubmit.java33 Lines2.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/datatypes/PersistencyClientInfo.java16 Lines1.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/delegates/AbstractDelegate.java4 Lines536 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/delegates/CurrencyDelegate.java55 Lines4.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/exceptions/ARClientException.java2 Lines272 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/exceptions/ActionNotAllowedException.java6 Lines775 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/exceptions/RenderingException.java1 Lines298 bytesSep 25, 2011 9:12:52 PM Copyright 2007 Fortify Software Inc. Page 19 of 118

Fortify Security Report


v81_0_SP_1/amdocs/arClient/general/exceptions/ValidationException.java12 Lines1.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/ARActionHandler.java31 Lines4.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/ARDataHandler.java219 Lines30.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/ARFlowHandler.java8 Lines1.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/ARRenderHandler.java2 Lines815 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/ActionHandler.java7 Lines2.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/DataHandler.java2 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/DefaultDelegateExceptionHandler.java24 Lines2.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/FlowHandler.java43 Lines6.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/ListHandler.java14 Lines1.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/RenderHandler.java2 Lines853 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/forms/AbstractForm.java16 Lines1.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/forms/Form.java501 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/screens/AbstractRenderer.java31 Lines3.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/screens/AbstractScreenRenderer.java37 Lines3.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/screens/AbstractTemplate.java100 Lines11.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/screens/DefaultQueriesScreen.java5 Lines1.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/screens/DefaultScreen.java68 Lines8.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/screens/ErrorScreen.java3 Lines1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/screens/ListTemplate.java74 Lines6.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/screens/MainTemplate.java125 Lines14.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/screens/MessageScreen.java3 Lines1.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/screens/PopupTemplate.java18 Lines2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/screens/Renderer.java413 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/screens/Screen.java882 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/screens/Template.java413 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/handlers/screens/TemplateFactory.java9 Lines571 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/html/BlankTemplateHTML.java192 Lines15.3 KBSep 25, 2011 10:25:30 PM v81_0_SP_1/amdocs/arClient/general/html/DeleteButtonHTML.java178 Lines14.6 KBSep 25, 2011 10:25:32 PM v81_0_SP_1/amdocs/arClient/general/html/ErrorHTML.java187 Lines14.5 KBSep 25, 2011 10:25:34 PM v81_0_SP_1/amdocs/arClient/general/html/GenericButtonsHTML.java278 Lines21.3 KBSep 25, 2011 10:25:38 PM v81_0_SP_1/amdocs/arClient/general/html/HeaderHTML.java147 Lines12 KBSep 25, 2011 10:25:40 PM v81_0_SP_1/amdocs/arClient/general/html/LeftBarHTML.java151 Lines12.2 KBSep 25, 2011 10:25:42 PM v81_0_SP_1/amdocs/arClient/general/html/LeftMenuActionsHTML.java1059 Lines77.8 KBSep 25, 2011 10:25:44 PM v81_0_SP_1/amdocs/arClient/general/html/LeftMenuInvoiceQueriesHTML.java1202 Lines79 KBSep 25, 2011 10:25:48 PM v81_0_SP_1/amdocs/arClient/general/html/LeftMenuQueriesHTML.java4706 Lines347.4 KBSep 25, 2011 10:25:50 PM v81_0_SP_1/amdocs/arClient/general/html/ListTemplateHTML.java1040 Lines72.7 KBSep 25, 2011 10:25:54 PM v81_0_SP_1/amdocs/arClient/general/html/MainTemplateHTML.java1269 Lines89.4 KBSep 25, 2011 10:25:56 PM v81_0_SP_1/amdocs/arClient/general/html/MenuAccountHTML.java895 Lines66 KBSep 25, 2011 10:26:00 PM v81_0_SP_1/amdocs/arClient/general/html/MenuHTML.java1005 Lines73.6 KBSep 25, 2011 10:25:58 PM v81_0_SP_1/amdocs/arClient/general/html/MessageButtonsHTML.java186 Lines15 KBSep 25, 2011 10:26:06 PM v81_0_SP_1/amdocs/arClient/general/html/MessageHTML.java187 Lines14.6 KBSep 25, 2011 10:26:04 PM v81_0_SP_1/amdocs/arClient/general/html/PaginationButtonsHTML.java211 Lines17.3 KBSep 25, 2011 10:26:08 PM v81_0_SP_1/amdocs/arClient/general/html/PopupTemplateHTML.java613 Lines43.9 KBSep 25, 2011 10:26:10 PM v81_0_SP_1/amdocs/arClient/general/util/AppUtils.java71 Lines19.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/util/CurrencyConverterServlet.java26 Lines3.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/util/DateUtils.java75 Lines8.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/util/DomUtils.java101 Lines16.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/util/Helper.java25 Lines1.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/util/JNDINames.java25 Lines3.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/util/LoginFilter.java20 Lines1.6 KBSep 25, 2011 9:12:52 PM Copyright 2007 Fortify Software Inc. Page 20 of 118

Fortify Security Report


v81_0_SP_1/amdocs/arClient/general/util/MessageUtils.java10 Lines2.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/util/PaginationUtils.java22 Lines2.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/util/ReferenceDataListMethod.java15 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/util/ReferenceDataManager.java612 Lines47.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/util/ResourceFilter.java42 Lines3.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/util/SensitiveDataUtils.java37 Lines4.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/util/ServletResponseWrapper.java18 Lines1.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/util/SessionAttributeListener.java15 Lines2.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/util/SingleWindowFilter.java53 Lines9.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/util/StringUtils.java66 Lines14 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/util/WebKeys.java321 Lines28.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/util/WebUtils.java33 Lines5.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/general/util/Xmlc.java180 Lines16.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1/amdocs/arClient/invoice/delegates/InvoiceDelegate.java52 Lines10.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/InvoiceQueriesActionHandler.java397 Lines36 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/InvoiceQueriesDataHandler.java111 Lines15.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/InvoiceQueriesFlowHandler.java56 Lines6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/InvoiceQueriesRenderHandler.java63 Lines8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/forms/InvoiceAllocationDetailsForm.java27 Lines3.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/forms/InvoiceAllocationListForm.java10 Lines2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/forms/InvoiceCreditListForm.java10 Lines1.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/forms/InvoiceLevelCreditForm.java13 Lines1.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/forms/InvoiceLevelDisputeForm.java12 Lines1.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/forms/InvoiceLevelPendingCreditForm.java11 Lines1.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/forms/InvoiceListForm.java10 Lines2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/forms/InvoiceSearchForm.java13 Lines2.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/screens/InvoiceAllocationConfirmationScreen.java28 Lines5.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/screens/InvoiceAllocationDetailsScreen.java120 Lines13.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/screens/InvoiceAllocationListScreen.java39 Lines6.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/screens/InvoiceCreditListScreen.java30 Lines4.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/screens/InvoiceInfoScreenFragment.java26 Lines4.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/screens/InvoiceLevelCreditAllocationConfirmationScreen.java40 Lines9.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/screens/InvoiceLevelCreditConfirmationScreen.java31 Lines4.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/screens/InvoiceLevelCreditScreen.java41 Lines7.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/screens/InvoiceLevelDisputeConfirmationScreen.java29 Lines4.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/screens/InvoiceLevelDisputeScreen.java27 Lines5.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/screens/InvoiceLevelPendingCreditConfirmationScreen.java31 Lines4.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/screens/InvoiceLevelPendingCreditScreen.java25 Lines4.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/screens/InvoiceListScreen.java51 Lines7.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/handlers/screens/InvoiceSearchScreen.java31 Lines5.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceAllocationConfirmationButtonsHTML.java178 Lines14.9 KBSep 25, 2011 Copyright 2007 Fortify Software Inc. Page 21 of 118

Fortify Security Report


10:26:16 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceAllocationConfirmationHTML.java270 Lines22.5 KBSep 25, 2011 10:26:14 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceAllocationDetailsButtonsHTML.java292 Lines22.3 KBSep 25, 2011 10:26:22 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceAllocationDetailsHTML.java583 Lines46.8 KBSep 25, 2011 10:26:18 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceAllocationListButtonsHTML.java164 Lines13.8 KBSep 25, 2011 10:26:26 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceAllocationListHTML.java363 Lines29.1 KBSep 25, 2011 10:26:24 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceHistoryHTML.java358 Lines25.5 KBSep 25, 2011 10:26:28 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceInformationHTML.java541 Lines44 KBSep 25, 2011 10:26:30 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceLevelCreditAllocationConfirmationScreenHTML.java569 Lines44.4 KBSep 25, 2011 10:26:34 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceLevelCreditConfirmationHTML.java448 Lines35.3 KBSep 25, 2011 10:26:36 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceLevelCreditDetailsHTML.java863 Lines66 KBSep 25, 2011 10:26:38 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceLevelDisputeConfirmationHTML.java404 Lines31.2 KBSep 25, 2011 10:26:40 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceLevelDisputeDetailsHTML.java564 Lines42.7 KBSep 25, 2011 10:26:44 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceLevelPendingCreditConfirmationHTML.java404 Lines31.2 KBSep 25, 2011 10:26:46 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceLevelPendingCreditDetailsHTML.java570 Lines43.1 KBSep 25, 2011 10:26:48 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceListButtonsHTML.java174 Lines14.8 KBSep 25, 2011 10:26:54 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceListHTML.java452 Lines37.5 KBSep 25, 2011 10:26:52 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceSearchButtonsHTML.java182 Lines15.2 KBSep 25, 2011 10:27:00 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceSearchHTML.java497 Lines36.4 KBSep 25, 2011 10:26:56 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceSummaryListHTML.java193 Lines14.8 KBSep 25, 2011 10:27:02 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceWriteOffConfirmationHTML.java405 Lines28.6 KBSep 25, 2011 10:27:06 PM v81_0_SP_1/amdocs/arClient/invoice/html/InvoiceWriteOffHTML.java419 Lines28.9 KBSep 25, 2011 10:27:04 PM v81_0_SP_1/amdocs/arClient/invoice/util/InvoiceWebKeys.java50 Lines5.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/delegates/PaymentDelegate.java98 Lines13.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentAbstractActionHandler.java40 Lines4.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentAbstractDataHandler.java42 Lines6.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentAbstractFlowHandler.java4 Lines1.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentAbstractRenderHandler.java15 Lines2.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentActionsActionHandler.java212 Lines25.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentActionsDataHandler.java72 Lines10.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentActionsFlowHandler.java27 Lines3.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentActionsRenderHandler.java34 Lines4.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentBackoutActionHandler.java152 Lines16.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentBackoutDataHandler.java67 Lines8.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentBackoutFlowHandler.java36 Lines6.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentBackoutRenderHandler.java35 Lines4.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentCreateActionHandler.java160 Lines15.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentCreateDataHandler.java71 Lines10.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentCreateFlowHandler.java32 Lines5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentCreateRenderHandler.java35 Lines4.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentQueriesActionHandler.java375 Lines33.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentQueriesDataHandler.java126 Lines17.7 KBSep 25, 2011 9:12:54 PM Copyright 2007 Fortify Software Inc. Page 22 of 118

Fortify Security Report


v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentQueriesFlowHandler.java60 Lines5.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentQueriesRenderHandler.java56 Lines5.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentSearchActionHandler.java195 Lines22.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentSearchDataHandler.java50 Lines7.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentSearchFlowHandler.java39 Lines5.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/PaymentSearchRenderHandler.java36 Lines5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/forms/AcLvlDepositPaymentApplicationForm.java42 Lines4.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/forms/AcLvlPaymentApplicationForm.java2 Lines755 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/forms/AcLvlPaymentDetailsForm.java27 Lines3.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/forms/DepositListForm.java10 Lines1.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/forms/PaymentAccountSearchForm.java10 Lines1.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/forms/PaymentAllocationListForm.java10 Lines2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/forms/PaymentApplicationForm.java41 Lines5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/forms/PaymentBackoutDetailsForm.java14 Lines2.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/forms/PaymentDetailsForm.java27 Lines4.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/forms/PaymentFundsTransferForm.java34 Lines4.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/forms/PaymentListForm.java8 Lines979 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/forms/PaymentSearchForm.java39 Lines5.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/forms/RefundPaymentDetailsForm.java10 Lines1.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/AcLvlDepositPaymentApplicationScreen.java84 Lines16.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/AcLvlPaymentApplicationScreen.java92 Lines13.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/AcLvlPaymentConfirmationScreen.java5 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/AcLvlPaymentDetailsScreen.java52 Lines7.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/AcLvlPaymentListScreen.java11 Lines2.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/AcLvlPaymentSearchScreen.java18 Lines2.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/DepositListScreen.java42 Lines5.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/PaymentAccountSearchScreen.java12 Lines2.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/PaymentAllocationListScreen.java87 Lines6.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/PaymentApplicationScreen.java98 Lines13.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/PaymentBackoutConfirmationScreen.java27 Lines4.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/PaymentBackoutDetailsScreen.java64 Lines8.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/PaymentBackoutInfoScreenFragment.java22 Lines3.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/PaymentConfirmationScreen.java52 Lines6.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/PaymentDetailsScreen.java44 Lines7.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/PaymentFundsTransferConfirmationScreen.java86 Lines6 KBSep 25, Copyright 2007 Fortify Software Inc. Page 23 of 118

Fortify Security Report


2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/PaymentFundsTransferDetailsScreen.java117 Lines17.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/PaymentHistoryScreen.java29 Lines4.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/PaymentInfoScreenFragment.java17 Lines3.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/PaymentListDetailsScreen.java71 Lines10.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/PaymentListScreen.java85 Lines10.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/PaymentRefundConfirmationScreen.java18 Lines3.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/PaymentRefundDetailsScreen.java28 Lines5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/handlers/screens/PaymentSearchScreen.java88 Lines15.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/payment/html/AcLvlDepositPaymentApplicationButtonsHTML.java424 Lines31.9 KBSep 25, 2011 10:27:12 PM v81_0_SP_1/amdocs/arClient/payment/html/AcLvlDepositPaymentApplicationHTML.java1132 Lines88.9 KBSep 25, 2011 10:27:10 PM v81_0_SP_1/amdocs/arClient/payment/html/AcLvlPaymentApplicationHTML.java900 Lines73 KBSep 25, 2011 10:27:14 PM v81_0_SP_1/amdocs/arClient/payment/html/AcLvlPaymentConfirmationHTML.java490 Lines34.4 KBSep 25, 2011 10:27:16 PM v81_0_SP_1/amdocs/arClient/payment/html/AcLvlPaymentDetailsHTML.java1165 Lines82.7 KBSep 25, 2011 10:27:20 PM v81_0_SP_1/amdocs/arClient/payment/html/BackoutPaymentConfirmationButtonsHTML.java164 Lines14 KBSep 25, 2011 10:27:22 PM v81_0_SP_1/amdocs/arClient/payment/html/BackoutPaymentDetailsButtonsHTML.java280 Lines22.3 KBSep 25, 2011 10:27:24 PM v81_0_SP_1/amdocs/arClient/payment/html/BackoutPaymentListButtonsHTML.java164 Lines13.7 KBSep 25, 2011 10:27:28 PM v81_0_SP_1/amdocs/arClient/payment/html/DepositListButtonsHTML.java248 Lines20.2 KBSep 25, 2011 10:27:32 PM v81_0_SP_1/amdocs/arClient/payment/html/DepositListHTML.java374 Lines29.3 KBSep 25, 2011 10:27:30 PM v81_0_SP_1/amdocs/arClient/payment/html/FundsTransferButtonsHTML.java427 Lines33 KBSep 25, 2011 10:27:34 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentAllocationConfirmationButtonsHTML.java186 Lines15.4 KBSep 25, 2011 10:27:40 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentAllocationConfirmationHTML.java256 Lines21.6 KBSep 25, 2011 10:27:38 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentAllocationDetailsButtonsHTML.java267 Lines20.8 KBSep 25, 2011 10:27:46 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentAllocationDetailsHTML.java556 Lines44.8 KBSep 25, 2011 10:27:42 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentAllocationListButtonsHTML.java164 Lines13.8 KBSep 25, 2011 10:27:50 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentAllocationListHTML.java355 Lines30.4 KBSep 25, 2011 10:27:48 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentApplicationButtonsHTML.java362 Lines28.1 KBSep 25, 2011 10:27:56 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentApplicationHTML.java875 Lines71.1 KBSep 25, 2011 10:27:54 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentBackoutConfirmationHTML.java387 Lines30.4 KBSep 25, 2011 10:27:58 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentBackoutDetailsHTML.java546 Lines44.9 KBSep 25, 2011 10:28:00 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentBackoutInformationHTML.java414 Lines34 KBSep 25, 2011 10:28:02 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentConfirmationButtonsHTML.java235 Lines18.7 KBSep 25, 2011 10:28:08 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentConfirmationHTML.java348 Lines31.2 KBSep 25, 2011 10:28:06 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentDetailsButtonsHTML.java337 Lines27.5 KBSep 25, 2011 10:28:12 PM Copyright 2007 Fortify Software Inc. Page 24 of 118

Fortify Security Report


v81_0_SP_1/amdocs/arClient/payment/html/PaymentDetailsHTML.java1020 Lines72.2 KBSep 25, 2011 10:28:10 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentFundsTransferApplicationHTML.java903 Lines70.9 KBSep 25, 2011 10:28:16 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentFundsTransferConfirmationHTML.java359 Lines29.9 KBSep 25, 2011 10:28:18 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentHistoryHTML.java356 Lines30 KBSep 25, 2011 10:28:20 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentInformationHTML.java414 Lines34 KBSep 25, 2011 10:28:22 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentListButtonsHTML.java339 Lines27.6 KBSep 25, 2011 10:28:28 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentListHTML.java543 Lines46.6 KBSep 25, 2011 10:28:26 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentRefundConfirmationHTML.java373 Lines29.4 KBSep 25, 2011 10:28:30 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentRefundDetailsHTML.java426 Lines32.6 KBSep 25, 2011 10:28:32 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentSearchButtonsHTML.java182 Lines15.2 KBSep 25, 2011 10:28:38 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentSearchHTML.java1472 Lines106.5 KBSep 25, 2011 10:28:36 PM v81_0_SP_1/amdocs/arClient/payment/html/PaymentViewDetailsHTML.java555 Lines44.2 KBSep 25, 2011 10:28:40 PM v81_0_SP_1/amdocs/arClient/payment/html/RefundPaymentDetailsButtonsHTML.java273 Lines21.2 KBSep 25, 2011 10:28:42 PM v81_0_SP_1/amdocs/arClient/payment/html/RefundPaymentListButtonsHTML.java164 Lines13.7 KBSep 25, 2011 10:28:46 PM v81_0_SP_1/amdocs/arClient/payment/util/PaymentWebKeys.java70 Lines7.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/pendingcredit/handlers/PendingCreditQueriesActionHandler.java140 Lines16.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/pendingcredit/handlers/PendingCreditQueriesDataHandler.java60 Lines9.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/pendingcredit/handlers/PendingCreditQueriesFlowHandler.java29 Lines4.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/pendingcredit/handlers/PendingCreditQueriesRenderHandler.java36 Lines5.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/pendingcredit/handlers/forms/PendingCreditListForm.java14 Lines2.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/pendingcredit/handlers/forms/PendingCreditReversalDetailsForm.java8 Lines2.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/pendingcredit/handlers/forms/PendingCreditSearchForm.java11 Lines2.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/pendingcredit/handlers/screens/PendingCreditInfoScreenFragment.java19 Lines3.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/pendingcredit/handlers/screens/PendingCreditListScreen.java69 Lines10.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/pendingcredit/handlers/screens/PendingCreditReversalConfirmationScreen.java29 Lines6.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/pendingcredit/handlers/screens/PendingCreditReversalDetailsScreen.java29 Lines5.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/pendingcredit/handlers/screens/PendingCreditSearchScreen.java24 Lines4.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/pendingcredit/html/BillingArrangementListButtonsHTML.java174 Lines14.9 KBSep 25, 2011 10:28:50 PM v81_0_SP_1/amdocs/arClient/pendingcredit/html/BillingArrangementListHTML.java257 Lines21 KBSep 25, 2011 10:28:48 PM v81_0_SP_1/amdocs/arClient/pendingcredit/html/PendingCreditListHTML.java383 Lines31.6 KBSep 25, 2011 10:28:52 PM v81_0_SP_1/amdocs/arClient/pendingcredit/html/PendingCreditReversalConfirmationHTML.java372 Lines29.4 KBSep 25, 2011 10:28:56 PM v81_0_SP_1/amdocs/arClient/pendingcredit/html/PendingCreditReversalDetailsHTML.java373 Lines28.4 KBSep 25, 2011 10:28:58 PM Copyright 2007 Fortify Software Inc. Page 25 of 118

Fortify Security Report


v81_0_SP_1/amdocs/arClient/pendingcredit/html/PendingCreditSearchButtonsHTML.java182 Lines15.2 KBSep 25, 2011 10:29:02 PM v81_0_SP_1/amdocs/arClient/pendingcredit/html/PendingCreditSearchHTML.java460 Lines33.8 KBSep 25, 2011 10:29:00 PM v81_0_SP_1/amdocs/arClient/pendingcredit/util/PendingCreditWebKeys.java58 Lines7.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/delegates/RefundDelegate.java32 Lines5.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/handlers/RefundActionsActionHandler.java55 Lines5.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/handlers/RefundActionsDataHandler.java24 Lines3.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/handlers/RefundActionsFlowHandler.java24 Lines3.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/handlers/RefundActionsRenderHandler.java27 Lines3.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/handlers/RefundQueriesActionHandler.java86 Lines9.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/handlers/RefundQueriesDataHandler.java54 Lines6.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/handlers/RefundQueriesFlowHandler.java27 Lines3.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/handlers/RefundQueriesRenderHandler.java31 Lines3.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/handlers/forms/RefundDetailsForm.java10 Lines1.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/handlers/forms/RefundListForm.java10 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/handlers/forms/RefundReversalDetailsForm.java11 Lines1.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/handlers/forms/RefundSearchForm.java11 Lines1.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/handlers/screens/RefundConfirmationScreen.java33 Lines5.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/handlers/screens/RefundDetailsScreen.java35 Lines6.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/handlers/screens/RefundInfoScreenFragment.java29 Lines5.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/handlers/screens/RefundListScreen.java72 Lines9.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/handlers/screens/RefundReversalConfirmationScreen.java97 Lines7.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/handlers/screens/RefundReversalDetailsScreen.java40 Lines6.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/handlers/screens/RefundSearchScreen.java30 Lines4.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/refund/html/RefundConfirmationHTML.java392 Lines30.4 KBSep 25, 2011 10:29:04 PM v81_0_SP_1/amdocs/arClient/refund/html/RefundDetailsHTML.java459 Lines34.4 KBSep 25, 2011 10:29:08 PM v81_0_SP_1/amdocs/arClient/refund/html/RefundInformationHTML.java486 Lines39.9 KBSep 25, 2011 10:29:10 PM v81_0_SP_1/amdocs/arClient/refund/html/RefundListHTML.java397 Lines33.6 KBSep 25, 2011 10:29:12 PM v81_0_SP_1/amdocs/arClient/refund/html/RefundReversalConfirmationHTML.java380 Lines29.4 KBSep 25, 2011 10:29:14 PM v81_0_SP_1/amdocs/arClient/refund/html/RefundReversalDetailsHTML.java405 Lines30.2 KBSep 25, 2011 10:29:18 PM v81_0_SP_1/amdocs/arClient/refund/html/RefundSearchButtonsHTML.java182 Lines15.2 KBSep 25, 2011 10:29:22 PM v81_0_SP_1/amdocs/arClient/refund/html/RefundSearchHTML.java411 Lines30.4 KBSep 25, 2011 10:29:20 PM v81_0_SP_1/amdocs/arClient/refund/util/RefundWebKeys.java47 Lines4.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/uams/html/loginHTML.java477 Lines32.8 KBSep 25, 2011 10:29:26 PM v81_0_SP_1/amdocs/arClient/writeoff/handlers/WriteOffActionsActionHandler.java50 Lines6.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/writeoff/handlers/WriteOffActionsDataHandler.java24 Lines5.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/writeoff/handlers/WriteOffActionsFlowHandler.java21 Lines4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/writeoff/handlers/WriteOffActionsRenderHandler.java27 Lines4.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/writeoff/handlers/WriteOffQueriesActionHandler.java81 Lines9.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/writeoff/handlers/WriteOffQueriesDataHandler.java49 Lines9.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/writeoff/handlers/WriteOffQueriesFlowHandler.java24 Lines4.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/writeoff/handlers/WriteOffQueriesRenderHandler.java30 Lines4.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/writeoff/handlers/forms/WriteOffDetailsForm.java11 Lines2.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/writeoff/handlers/forms/WriteOffListForm.java13 Lines2.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/writeoff/handlers/forms/WriteOffReversalDetailsForm.java11 Lines2.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/writeoff/handlers/screens/WriteOffConfirmationScreen.java24 Lines5.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/writeoff/handlers/screens/WriteOffDetailsScreen.java33 Lines5.5 KBSep 25, 2011 9:12:54 PM Copyright 2007 Fortify Software Inc. Page 26 of 118

Fortify Security Report


v81_0_SP_1/amdocs/arClient/writeoff/handlers/screens/WriteOffInfoScreenFragment.java17 Lines3.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/writeoff/handlers/screens/WriteOffListScreen.java67 Lines9.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/writeoff/handlers/screens/WriteOffReversalConfirmationScreen.java30 Lines6.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/writeoff/handlers/screens/WriteOffReversalDetailsScreen.java33 Lines6.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/amdocs/arClient/writeoff/html/WriteOffConfirmationHTML.java335 Lines26.3 KBSep 25, 2011 10:29:28 PM v81_0_SP_1/amdocs/arClient/writeoff/html/WriteOffDetailsHTML.java386 Lines29.6 KBSep 25, 2011 10:29:30 PM v81_0_SP_1/amdocs/arClient/writeoff/html/WriteOffInformationHTML.java441 Lines35.8 KBSep 25, 2011 10:29:32 PM v81_0_SP_1/amdocs/arClient/writeoff/html/WriteOffListHTML.java369 Lines30 KBSep 25, 2011 10:29:36 PM v81_0_SP_1/amdocs/arClient/writeoff/html/WriteOffReversalConfirmationHTML.java336 Lines26.8 KBSep 25, 2011 10:29:38 PM v81_0_SP_1/amdocs/arClient/writeoff/html/WriteOffReversalDetailsHTML.java375 Lines28.6 KBSep 25, 2011 10:29:40 PM v81_0_SP_1/amdocs/arClient/writeoff/util/WriteOffWebKeys.java17 Lines2.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/build.properties869 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/build.xml2.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/build_garfe.xml3.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/public/properties/AR1Client.properties3.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/public/properties/ARFE_settings.properties1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/public/properties/SONARApplicationsConfiguration.xml1.3 KBSep 25, 2011 10:21:16 PM v81_0_SP_1/public/properties/SONARmessageHandling1.xml2.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/public/properties/applicationsConfiguration.xml252 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/public/properties/sonarTemplateBuilder.config117 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/public/static/ARClientMessages_en.xml4.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/public/static/MessageHandlingServices.xml1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/WEB-INF/log4j.xml2.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/WEB-INF/web.xml16 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/WEB-INF/weblogic.xml272 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/account/AccountSearchValidations.js18 Lines2.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/account/statement/StatementSearchValidations.js3 Lines978 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/boh/tree.js42 Lines1.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/common/CheckEnter.js3 Lines132 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/common/Validator.html1 Lines4.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/common/calendar.js338 Lines21.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/common/calendar_example.js3 Lines897 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/common/common.js89 Lines6.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/common/dateFormatMask.js415 Lines25.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/common/dateValidate.js189 Lines14.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/common/menu.js17 Lines682 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/common/menuAccount.js13 Lines521 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/common/overlib_mini.js550 Lines23.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/common/rollOver.js6 Lines275 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/common/scripts.js30 Lines3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/common/showDetails.js8 Lines413 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/common/validate.js324 Lines27.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/credit/CreditAllocationDetailsValidations.js20 Lines2.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/credit/CreditDetailsValidations.js7 Lines1.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/credit/CreditNoteReversalDetailsValidations.js3 Lines1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/credit/CreditNoteSearchValidations.js5 Lines1.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/credit/CreditReversalDetailsValidations.js4 Lines1.1 KBSep 25, 2011 9:12:54 PM Copyright 2007 Fortify Software Inc. Page 27 of 118

Fortify Security Report


v81_0_SP_1/webAppRoot/js/credit/CreditReversalValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/credit/CreditSearchValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/credit/PendingCreditDetailsValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/credit/credit.js77 Lines5.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/debit/ChargeLevelCreditValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/debit/ChargeLevelDisputeValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/debit/ChargeLevelPendingCreditValidations.js5 Lines1.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/debit/DebitDetailsValidations.js5 Lines1.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/debit/DebitSearchValidations.js7 Lines1.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/deposit/DepositCancelValidations.js4 Lines1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/deposit/DepositDecreaseValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/deposit/DepositDetailsValidations.js13 Lines1.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/deposit/DepositIncreaseValidations.js13 Lines1.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/deposit/DepositReleaseValidations.js4 Lines1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/directdebit/DirectDebit.js15 Lines774 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/directdebit/DirectDebitDetailsValidations.js16 Lines2.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/directdebit/DirectDebitSearchValidations.js16 Lines2.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/directdebit/DirectDebitUpdateDetailsValidations.js13 Lines2.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/dispute/Dispute.js1 Lines160 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/dispute/DisputeCancelValidations.js4 Lines1.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/dispute/DisputeDetailsValidations.js7 Lines1.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/dispute/DisputeJustifyValidations.js3 Lines1002 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/dispute/DisputeRejectValidations.js4 Lines1.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/dispute/DisputeSearchValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/dispute/DisputeUpdateValidations.js3 Lines1002 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/invoice/InvoiceAllocationDetailsValidations.js5 Lines1.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/invoice/InvoiceLevelCreditValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/invoice/InvoiceLevelDisputeValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/invoice/InvoiceLevelPendingCreditValidations.js5 Lines1.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/invoice/InvoiceSearchValidations.js7 Lines1.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/invoice/invoice.js36 Lines2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/payment/PaymentApplicationValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/payment/PaymentBackoutDetailsValidations.js5 Lines1.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/payment/PaymentDetailsValidations.js15 Lines1.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/payment/PaymentFundsTransferApplicationValidations.js7 Lines1.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/payment/PaymentRefundDetailsValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/payment/PaymentSearchValidations.js19 Lines2.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/payment/directdebit.js8 Lines541 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/payment/payment.js159 Lines12 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/refund/RefundDetailsValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/refund/RefundReversalDetailsValidations.js4 Lines1.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/refund/RefundSearchValidations.js5 Lines1.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/writeoff/WriteOffDetailsValidations.js4 Lines1.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/js/writeoff/WriteOffReversalDetailsValidations.js4 Lines1.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/jsp/UamsForms/ChangePasswordForm.jsp21 Lines3.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/jsp/UamsForms/ChooseEnvForm.jsp29 Lines3.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/jsp/UamsForms/ClientChangePasswordForm.jsp42 Lines6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/jsp/UamsForms/FailurePage.jsp6 Lines1.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/jsp/UamsForms/LoginForm.jsp25 Lines3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/jsp/UamsForms/LogoutPage.jsp8 Lines1.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/jsp/UamsForms/RejectPage.jsp5 Lines1.7 KBSep 25, 2011 9:12:54 PM Copyright 2007 Fortify Software Inc. Page 28 of 118

Fortify Security Report


v81_0_SP_1/webAppRoot/jsp/account/controllers/WelcomeMain.jsp6 Lines223 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/jsp/general/controllers/ErrorMsg.jsp43 Lines2.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/jsp/general/controllers/first.jsp5 Lines460 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/jsp/general/controllers/login.jsp2 Lines791 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/jsp/general/controllers/switch.jsp9 Lines2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/jsp/general/controllers/welcome.jsp2 Lines133 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/prototype/screens/AcLvlCreditConfirmationScreen.jsp1 Lines799 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/prototype/screens/AcLvlCreditScreen.jsp1 Lines877 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/prototype/screens/AcLvlDepositPaymentApplicationScreen.jsp2 Lines812 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/prototype/screens/AcLvlPaymentApplicationScreen.jsp1 Lines796 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/prototype/screens/AcLvlPaymentConfirmationScreen.jsp1 Lines775 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1/webAppRoot/prototype/screens/AcLvlPaymentDetailsScreen.jsp1 Lines707 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/AcLvlPaymentListScreen.jsp1 Lines537 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/AcLvlPaymentSearchScreen.jsp1 Lines738 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/AcLvlWriteOffConfirmationScreen.jsp1 Lines629 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/AcLvlWriteOffScreen.jsp1 Lines704 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/AccountDetailsScreen.jsp1 Lines491 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/AccountListScreen.jsp1 Lines611 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/AccountSearchScreen.jsp1 Lines614 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/AccountStatementListScreen.jsp2 Lines519 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/AdjustmentListScreen.jsp1 Lines496 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/AdjustmentReversalConfirmationScreen.jsp1 Lines672 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/AdjustmentReversalScreen.jsp1 Lines757 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/BackoutPaymentConfirmationScreen.jsp1 Lines620 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/BackoutPaymentDetailsScreen.jsp1 Lines681 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/BackoutPaymentListScreen.jsp1 Lines608 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/BackoutPaymentSearchScreen.jsp1 Lines608 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/ChargeLevelCreditConfirmationScreen.jsp1 Lines733 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/ChargeLevelCreditScreen.jsp1 Lines905 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/CreditAllocationConfirmationScreen.jsp1 Lines676 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/CreditAllocationDetailsScreen.jsp1 Lines794 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/CreditAllocationScreen.jsp1 Lines664 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/CreditListScreen.jsp1 Lines486 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/CreditNoteCancelConfirmationScreen.jsp1 Lines731 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/CreditNoteCancelScreen.jsp1 Lines822 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/CreditNoteDeleteConfirmationScreen.jsp1 Lines731 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/CreditNoteDeleteScreen.jsp1 Lines822 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/CreditNoteFinalizeConfirmationScreen.jsp1 Lines735 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/CreditNoteFinalizeScreen.jsp1 Lines826 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/CreditNoteListScreen.jsp1 Lines493 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/CreditNoteLookUpScreen.jsp1 Lines602 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/CreditNoteSearchScreen.jsp1 Lines659 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/CreditNoteViewDetailsConfirmationScreen.jsp1 Lines736 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/CreditNoteViewDetailsScreen.jsp1 Lines862 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/CreditReversalConfirmationScreen.jsp1 Lines724 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/CreditReversalScreen.jsp1 Lines825 bytesSep 25, 2011 9:12:56 PM Copyright 2007 Fortify Software Inc. Page 29 of 118

Fortify Security Report


v81_0_SP_1/webAppRoot/prototype/screens/CreditSearchScreen.jsp1 Lines636 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/DebitListScreen.jsp1 Lines483 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/DebitSearchScreen.jsp1 Lines628 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/DepositCancelScreen.jsp2 Lines559 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/DepositDecreaseScreen.jsp2 Lines565 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/DepositIncreaseScreen.jsp2 Lines564 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/DepositListScreen.jsp2 Lines498 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/DepositReleaseScreen.jsp2 Lines562 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/DepositSearchScreen.jsp2 Lines654 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/DepositViewScreen.jsp2 Lines496 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/DirectDebitListScreen.jsp1 Lines459 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/DirectDebitScreen.jsp1 Lines738 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/DirectDebitSearchScreen.jsp1 Lines675 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/FundsTransferConfirmationScreen.jsp1 Lines701 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/FundsTransferScreen.jsp1 Lines902 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/InvoiceAllocationConfirmationScreen.jsp1 Lines681 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/InvoiceAllocationDetailsScreen.jsp1 Lines798 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/InvoiceAllocationScreen.jsp1 Lines669 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/InvoiceCreditConfirmationScreen.jsp1 Lines736 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/InvoiceCreditScreen.jsp1 Lines911 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/InvoiceHistoryScreen.jsp1 Lines499 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/InvoiceListScreen.jsp1 Lines489 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/InvoiceLookUpScreen.jsp1 Lines597 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/InvoiceSearchScreen.jsp1 Lines642 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/InvoiceWriteOffConfirmationScreen.jsp1 Lines807 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/InvoiceWriteOffScreen.jsp1 Lines826 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/LoginScreen.jsp1 Lines239 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/MenuActionsScreen.jsp1 Lines499 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/MenuQueriesScreen.jsp1 Lines499 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/MessageScreen.jsp1 Lines551 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/OneTimeDebitConfirmationScreen.jsp1 Lines722 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/OneTimeDebitScreen.jsp1 Lines790 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/OneTimeDirectDebitConfirmationScreen.jsp1 Lines741 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/OneTimeDirectDebitScreen.jsp1 Lines815 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/PaymentAccountListScreen.jsp1 Lines612 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/PaymentAccountSearchScreen.jsp2 Lines626 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/PaymentAllocationConfirmationScreen.jsp1 Lines674 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/PaymentAllocationDetailsScreen.jsp1 Lines817 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/PaymentAllocationScreen.jsp1 Lines752 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/PaymentApplicationScreen.jsp1 Lines888 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/PaymentConfirmationScreen.jsp1 Lines725 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/PaymentDetailsScreen.jsp1 Lines644 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/PaymentHistoryScreen.jsp1 Lines499 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/PaymentListDetailsScreen.jsp1 Lines480 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/PaymentListScreen.jsp1 Lines615 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/PaymentSearchScreen.jsp1 Lines609 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/RefundConfirmationScreen.jsp1 Lines616 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/RefundDetailsScreen.jsp1 Lines684 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/RefundListScreen.jsp1 Lines484 bytesSep 25, 2011 9:12:56 PM Copyright 2007 Fortify Software Inc. Page 30 of 118

Fortify Security Report


v81_0_SP_1/webAppRoot/prototype/screens/RefundPaymentConfirmationScreen.jsp1 Lines694 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/RefundPaymentDetailsScreen.jsp1 Lines710 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/RefundPaymentListScreen.jsp1 Lines606 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/RefundPaymentSearchScreen.jsp1 Lines613 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/RefundReversalConfirmationScreen.jsp1 Lines734 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/RefundReversalScreen.jsp1 Lines820 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/RefundSearchScreen.jsp1 Lines634 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/UpdateDirectDebitConfirmationScreen.jsp1 Lines728 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/UpdateDirectDebitScreen.jsp1 Lines815 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/WriteOffListScreen.jsp1 Lines491 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/WriteOffReversalConfirmationScreen.jsp1 Lines641 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/prototype/screens/WriteOffReversalScreen.jsp1 Lines751 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/account/html/AccountDetails.jsp1 Lines3.7 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/account/html/AccountInformation.jsp1 Lines794 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/account/html/AccountList.jsp1 Lines1.2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/account/html/AccountListButtons.jsp10 Lines1.5 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/account/html/AccountSearch.jsp1 Lines3.4 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/account/html/AccountSearchButtons.jsp4 Lines712 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/account/statement/html/AccountStatementList.jsp3 Lines1.5 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/account/statement/html/AccountStatementSearchButtons.jsp4 Lines734 bytes Sep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/boh/html/BOHTree.jsp1 Lines1.8 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/BillingArrangementList.jsp1 Lines834 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/BillingArrangementListButtons.jsp2 Lines624 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/CreateCreditButtons.jsp10 Lines1.4 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/CreatePendingCreditButtons.jsp7 Lines1.1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditAllocationConfirmation.jsp1 Lines1.1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditAllocationConfirmationButtons.jsp6 Lines762 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditAllocationDetails.jsp4 Lines6.3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditAllocationDetailsButtons.jsp9 Lines1.3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditAllocationList.jsp3 Lines1.6 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditAllocationListButtons.jsp4 Lines637 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditInformation.jsp1 Lines1.5 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditList.jsp3 Lines1.7 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditNoteInformation.jsp1 Lines1.6 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditNoteListButtons.jsp6 Lines822 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditNoteSearchButtons.jsp4 Lines698 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditNoteSummaryList.jsp1 Lines846 bytesSep 25, 2011 9:12:56 PM Copyright 2007 Fortify Software Inc. Page 31 of 118

Fortify Security Report


v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditNoteViewDetailsButtons.jsp7 Lines987 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditReversalConfirmation.jsp3 Lines1.7 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditReversalDetails.jsp3 Lines1.7 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditSearchButtons.jsp4 Lines659 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/debit/html/DebitInformation.jsp1 Lines2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/debit/html/DebitSearchButtons.jsp4 Lines661 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/deposit/html/BillingArrangementList.jsp1 Lines834 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/deposit/html/BillingArrangementListButtons.jsp2 Lines624 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/deposit/html/CreateDepositButtons.jsp7 Lines1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/deposit/html/DepositCancel.jsp3 Lines2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/deposit/html/DepositCancelButtons.jsp4 Lines674 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/deposit/html/DepositDecreaseButtons.jsp7 Lines1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/deposit/html/DepositIncreaseButtons.jsp7 Lines1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/deposit/html/DepositList.jsp3 Lines3.9 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/deposit/html/DepositRelease.jsp3 Lines4.5 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/deposit/html/DepositReleaseButtons.jsp4 Lines681 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/deposit/html/DepositSearchButtons.jsp4 Lines666 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/deposit/html/DepositView.jsp3 Lines4 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/directdebit/html/DirectDebitConfirmation.jsp3 Lines3.1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/directdebit/html/DirectDebitDetails.jsp3 Lines5.3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/directdebit/html/DirectDebitInformation.jsp1 Lines1.2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/directdebit/html/DirectDebitList.jsp3 Lines7 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/directdebit/html/DirectDebitSearch.jsp3 Lines5.7 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/directdebit/html/DirectDebitSearchButtons.jsp4 Lines690 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/directdebit/html/DirectDebitUpdateConfirmation.jsp3 Lines3.3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/directdebit/html/DirectDebitUpdateDetails.jsp3 Lines9.6 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/dispute/html/CreateDisputeButtons.jsp10 Lines1.4 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeCancel.jsp3 Lines2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeCancelButtons.jsp4 Lines674 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeInformation.jsp1 Lines1.5 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeJustify.jsp3 Lines2.4 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeJustifyButtons.jsp4 Lines681 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeList.jsp3 Lines1.9 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeReject.jsp3 Lines2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeRejectButtons.jsp4 Lines674 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeUpdate.jsp3 Lines2.6 KBSep 25, 2011 9:12:56 PM Copyright 2007 Fortify Software Inc. Page 32 of 118

Fortify Security Report


v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeUpdateButtons.jsp4 Lines674 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeView.jsp3 Lines2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/general/html/DeleteButton.jsp4 Lines609 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/general/html/Error.jsp1 Lines778 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/general/html/GenericButtons.jsp7 Lines1020 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/general/html/Header.jsp1 Lines467 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/general/html/LeftBar.jsp1 Lines449 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/general/html/LeftMenuActions.jsp1 Lines4.9 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/general/html/LeftMenuInvoiceQueries.jsp21 Lines5.1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/general/html/LeftMenuQueries.jsp58 Lines24.5 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/general/html/Menu.jsp1 Lines4.3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/general/html/MenuAccount.jsp1 Lines3.9 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/general/html/Message.jsp1 Lines768 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/general/html/MessageButtons.jsp4 Lines607 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/general/html/PaginationButtons.jsp4 Lines765 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/invoice/html/InvoiceAllocationConfirmation.jsp1 Lines901 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/invoice/html/InvoiceAllocationConfirmationButtons.jsp6 Lines759 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/invoice/html/InvoiceAllocationDetails.jsp4 Lines3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/invoice/html/InvoiceAllocationDetailsButtons.jsp7 Lines1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/invoice/html/InvoiceAllocationListButtons.jsp4 Lines636 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/invoice/html/InvoiceInformation.jsp1 Lines2.1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/invoice/html/InvoiceListButtons.jsp6 Lines810 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/invoice/html/InvoiceSearchButtons.jsp4 Lines669 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/invoice/html/InvoiceSummaryList.jsp1 Lines634 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/AcLvlDepositPaymentApplication.jsp3 Lines4.6 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/AcLvlDepositPaymentApplicationButtons.jsp9 Lines1.8 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/AcLvlPaymentApplication.jsp6 Lines3.9 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/AcLvlPaymentConfirmation.jsp1 Lines2.4 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/BackoutPaymentConfirmationButtons.jsp4 Lines655 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/BackoutPaymentDetailsButtons.jsp7 Lines1.2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/BackoutPaymentListButtons.jsp4 Lines612 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/DepositList.jsp1 Lines1.2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/DepositListButtons.jsp4 Lines955 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/FundsTransferButtons.jsp14 Lines1.9 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentAllocationConfirmation.jsp1 Lines819 bytesSep 25, Copyright 2007 Fortify Software Inc. Page 33 of 118

Fortify Security Report


2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentAllocationConfirmationButtons.jsp6 Lines785 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentAllocationDetails.jsp4 Lines2.9 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentAllocationDetailsButtons.jsp7 Lines1001 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentAllocationList.jsp3 Lines1.5 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentAllocationListButtons.jsp4 Lines638 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentApplication.jsp6 Lines3.8 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentApplicationButtons.jsp9 Lines1.5 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentBackoutConfirmation.jsp3 Lines1.7 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentBackoutDetails.jsp3 Lines4.6 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentBackoutInformation.jsp1 Lines1.3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentConfirmation.jsp3 Lines1.2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentConfirmationButtons.jsp7 Lines1018 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentDetails.jsp1 Lines4.8 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentDetailsButtons.jsp7 Lines1.3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentFundsTransferApplication.jsp6 Lines4.1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentFundsTransferConfirmation.jsp3 Lines1.6 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentHistory.jsp3 Lines1.9 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentInformation.jsp1 Lines1.3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentList.jsp1 Lines2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentListButtons.jsp6 Lines1.4 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentRefundConfirmation.jsp3 Lines1.6 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentRefundDetails.jsp3 Lines2.3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentSearch.jsp4 Lines7.1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentSearchButtons.jsp4 Lines669 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentViewDetails.jsp1 Lines2.6 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/RefundPaymentDetailsButtons.jsp7 Lines1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/payment/html/RefundPaymentListButtons.jsp4 Lines602 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/pendingcredit/html/BillingArrangementList.jsp1 Lines834 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/pendingcredit/html/BillingArrangementListButtons.jsp2 Lines624 bytesSep 25, 2011 9:12:56 PM Copyright 2007 Fortify Software Inc. Page 34 of 118

Fortify Security Report


v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/pendingcredit/html/PendingCreditList.jsp3 Lines1.6 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/pendingcredit/html/PendingCreditReversalConfirmation.jsp3 Lines1.7 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/pendingcredit/html/PendingCreditReversalDetails.jsp3 Lines1.7 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/pendingcredit/html/PendingCreditSearchButtons.jsp4 Lines659 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/refund/html/RefundInformation.jsp1 Lines1.8 KBSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/refund/html/RefundSearchButtons.jsp4 Lines664 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1/webAppRoot/xmlc/amdocs/arClient/writeoff/html/WriteOffInformation.jsp1 Lines1.5 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/META-INF/nosec/application.xml398 bytesSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/META-INF/sec/application.xml404 bytesSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/delegates/AccountDelegate.java62 Lines7.5 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/delegates/CMSearchDelegate.java20 Lines2.5 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/handlers/AccountLevelDataHandler.java23 Lines5.1 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/handlers/AccountSearchActionHandler.java252 Lines27.1 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/handlers/AccountSearchDataHandler.java48 Lines7.5 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/handlers/AccountSearchFlowHandler.java55 Lines5.5 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/handlers/AccountSearchRenderHandler.java63 Lines7.2 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/handlers/forms/AccountListForm.java8 Lines1.1 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/handlers/forms/AccountSearchForm.java16 Lines2.4 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/handlers/screens/AccountDetailsScreen.java64 Lines8 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/handlers/screens/AccountInfoScreenFragment.java13 Lines2.9 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/handlers/screens/AccountListScreen.java48 Lines6.6 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/handlers/screens/AccountPaymentListScreen.java2 Lines1.6 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/handlers/screens/AccountSearchScreen.java17 Lines3.7 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/handlers/screens/DefaultAccountActionsScreen.java21 Lines3.3 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/handlers/screens/DefaultAccountQueriesScreen.java165 Lines20.6 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/handlers/screens/DefaultAccountScreen.java46 Lines6.5 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/html/AccountDetailsHTML.java572 Lines45.5 KBSep 25, 2011 10:21:18 PM v81_0_SP_1_Sandip/amdocs/arClient/account/html/AccountInformationHTML.java253 Lines20.7 KBSep 25, 2011 10:21:20 PM v81_0_SP_1_Sandip/amdocs/arClient/account/html/AccountListButtonsHTML.java328 Lines26.2 KBSep 25, 2011 10:21:26 PM v81_0_SP_1_Sandip/amdocs/arClient/account/html/AccountListHTML.java375 Lines29.9 KBSep 25, 2011 10:21:22 PM v81_0_SP_1_Sandip/amdocs/arClient/account/html/AccountSearchButtonsHTML.java195 Lines16.4 KBSep 25, 2011 10:21:30 PM v81_0_SP_1_Sandip/amdocs/arClient/account/html/AccountSearchHTML.java526 Lines40.8 KBSep 25, 2011 10:21:28 PM v81_0_SP_1_Sandip/amdocs/arClient/account/statement/delegates/AccountStatementDelegate.java20 Lines2.4 KBSep 25, 2011 9:12:50 PM Copyright 2007 Fortify Software Inc. Page 35 of 118

Fortify Security Report


v81_0_SP_1_Sandip/amdocs/arClient/account/statement/handlers/AccountStatementActionHandler.java78 Lines7.9 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/statement/handlers/AccountStatementDataHandler.java54 Lines7.3 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/statement/handlers/AccountStatementFlowHandler.java23 Lines3.7 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/statement/handlers/AccountStatementRenderHandler.java30 Lines4.1 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/statement/handlers/forms/AccountStatementListForm.java10 Lines1.5 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/statement/handlers/screens/AccountStatementListScreen.java69 Lines10 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/statement/handlers/screens/AccountStatementSearchScreen.java52 Lines7.3 KB Sep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/statement/html/AccountStatementListHTML.java433 Lines34.2 KBSep 25, 2011 10:21:32 PM v81_0_SP_1_Sandip/amdocs/arClient/account/statement/html/AccountStatementSearchButtonsHTML.java181 Lines15.5 KBSep 25, 2011 10:21:38 PM v81_0_SP_1_Sandip/amdocs/arClient/account/statement/html/AccountStatementSearchHTML.java352 Lines26.6 KBSep 25, 2011 10:21:36 PM v81_0_SP_1_Sandip/amdocs/arClient/account/statement/util/AccountStatementWebKeys.java17 Lines2.4 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/statement/util/PageTotals.java15 Lines2.1 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/statement/util/TotalsForAllPages.java14 Lines1.4 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/account/util/AccountWebKeys.java64 Lines7.5 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/boh/delegates/BOHDelegate.java38 Lines3.8 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/boh/handlers/BOHActionsActionHandler.java29 Lines4.2 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/boh/handlers/BOHActionsDataHandler.java23 Lines2.4 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/boh/handlers/BOHActionsFlowHandler.java17 Lines2.1 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/boh/handlers/BOHActionsRenderHandler.java34 Lines5 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/boh/handlers/forms/BOHTreeForm.java10 Lines1.1 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/boh/handlers/screens/BOHTreeScreen.java72 Lines8 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/boh/html/BOHTreeHTML.java399 Lines33.4 KBSep 25, 2011 10:21:40 PM v81_0_SP_1_Sandip/amdocs/arClient/boh/util/BOHWebKeys.java197 bytesSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/delegates/CreditDelegate.java85 Lines11.6 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/CreditActionsActionHandler.java256 Lines24.6 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/CreditActionsDataHandler.java71 Lines11.5 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/CreditActionsFlowHandler.java49 Lines5.8 KBSep 25, 2011 9:12:50 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/CreditActionsRenderHandler.java55 Lines6.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/CreditNoteQueriesActionHandler.java193 Lines21.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/CreditNoteQueriesDataHandler.java78 Lines13.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/CreditNoteQueriesFlowHandler.java41 Lines5.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/CreditNoteQueriesRenderHandler.java48 Lines6.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/CreditQueriesActionHandler.java219 Lines20.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/CreditQueriesDataHandler.java82 Lines11.7 KBSep 25, 2011 9:12:52 PM Copyright 2007 Fortify Software Inc. Page 36 of 118

Fortify Security Report


v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/CreditQueriesFlowHandler.java38 Lines5.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/CreditQueriesRenderHandler.java45 Lines5.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/forms/BillingArrangementListForm.java10 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/forms/CreditAllocationDetailsForm.java33 Lines4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/forms/CreditAllocationListForm.java10 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/forms/CreditDetailsForm.java15 Lines2.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/forms/CreditListForm.java14 Lines2.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/forms/CreditNoteDeleteForm.java7 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/forms/CreditNoteListForm.java10 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/forms/CreditNoteSearchForm.java11 Lines2.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/forms/CreditNoteSummaryListForm.java10 Lines2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/forms/CreditNoteViewDetailsForm.java25 Lines3.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/forms/CreditReversalDetailsForm.java8 Lines1.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/forms/CreditSearchForm.java11 Lines2.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/forms/PendingCreditDetailsForm.java14 Lines2.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/BillingArrangementListScreen.java30 Lines4.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditAllocationConfirmationScreen.java26 Lines5.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditAllocationDetailsScreen.java210 Lines26.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditAllocationListScreen.java37 Lines6.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditConfirmationScreen.java31 Lines6.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditCreateAllocationConfirmationScreen.java41 Lines8.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditDetailsScreen.java59 Lines9.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditInfoScreenFragment.java19 Lines3.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditListScreen.java69 Lines9.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditNoteDeleteConfirmationScreen.java26 Lines5.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditNoteDeleteDetailsScreen.java46 Lines7.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditNoteFinalizeConfirmationScreen.java27 Lines5.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditNoteFinalizeDetailsScreen.java31 Lines5.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditNoteInfoScreenFragment.java15 Lines3.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditNoteListScreen.java45 Lines6.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditNoteSearchScreen.java30 Lines5.3 KBSep 25, 2011 9:12:52 PM Copyright 2007 Fortify Software Inc. Page 37 of 118

Fortify Security Report


v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditNoteSummaryListScreen.java30 Lines5.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditNoteViewConfirmationScreen.java32 Lines5.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditNoteViewDetailsScreen.java70 Lines11.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditReversalConfirmationScreen.java29 Lines6.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditReversalDetailsScreen.java29 Lines4.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/CreditSearchScreen.java24 Lines4.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/PendingCreditConfirmationScreen.java28 Lines5.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/handlers/screens/PendingCreditDetailsScreen.java38 Lines7.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/BillingArrangementListButtonsHTML.java174 Lines14.9 KBSep 25, 2011 10:21:46 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/BillingArrangementListHTML.java257 Lines21 KBSep 25, 2011 10:21:42 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreateCreditButtonsHTML.java383 Lines30.2 KBSep 25, 2011 10:21:48 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreatePendingCreditButtonsHTML.java299 Lines23.5 KBSep 25, 2011 10:21:50 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditAllocationConfirmationButtonsHTML.java178 Lines14.9 KBSep 25, 2011 10:21:56 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditAllocationConfirmationHTML.java311 Lines24.9 KBSep 25, 2011 10:21:54 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditAllocationDetailsButtonsHTML.java353 Lines27 KBSep 25, 2011 10:22:00 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditAllocationDetailsHTML.java701 Lines58.7 KBSep 25, 2011 10:21:58 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditAllocationListButtonsHTML.java164 Lines13.8 KBSep 25, 2011 10:22:06 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditAllocationListHTML.java381 Lines31.4 KBSep 25, 2011 10:22:04 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditConfirmationHTML.java442 Lines34.5 KBSep 25, 2011 10:22:08 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditCreateAllocationConfirmationHTML.java601 Lines47 KBSep 25, 2011 10:22:10 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditDetailsHTML.java762 Lines58.1 KBSep 25, 2011 10:22:12 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditInformationHTML.java418 Lines34.5 KBSep 25, 2011 10:22:16 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditListHTML.java406 Lines33.5 KBSep 25, 2011 10:22:18 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditNoteDeleteConfirmationHTML.java409 Lines32.2 KBSep 25, 2011 10:22:20 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditNoteDeleteDetailsHTML.java499 Lines38.2 KBSep 25, 2011 10:22:22 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditNoteDetailsHTML.java417 Lines32.6 KBSep 25, 2011 10:22:24 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditNoteFinalizeConfirmationHTML.java457 Lines35.2 KBSep 25, 2011 10:22:28 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditNoteInformationHTML.java423 Lines34 KBSep 25, 2011 10:22:30 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditNoteListButtonsHTML.java174 Lines14.9 KBSep 25, 2011 10:22:34 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditNoteListHTML.java343 Lines27.8 KBSep 25, 2011 10:22:32 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditNoteSearchButtonsHTML.java182 Lines15.3 KBSep 25, 2011 10:22:40 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditNoteSearchHTML.java468 Lines35.2 KBSep 25, 2011 10:22:38 PM Copyright 2007 Fortify Software Inc. Page 38 of 118

Fortify Security Report


v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditNoteSummaryListHTML.java273 Lines22.1 KBSep 25, 2011 10:22:42 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditNoteViewConfirmationHTML.java361 Lines28.9 KBSep 25, 2011 10:22:44 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditNoteViewDetailsButtonsHTML.java254 Lines20.1 KBSep 25, 2011 10:22:48 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditNoteViewDetailsHTML.java451 Lines37.1 KBSep 25, 2011 10:22:46 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditReversalConfirmationHTML.java372 Lines29.3 KBSep 25, 2011 10:22:50 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditReversalDetailsHTML.java373 Lines28.3 KBSep 25, 2011 10:22:54 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditSearchButtonsHTML.java182 Lines15.1 KBSep 25, 2011 10:22:58 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/CreditSearchHTML.java460 Lines33.8 KBSep 25, 2011 10:22:56 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/PendingCreditConfirmationHTML.java409 Lines31.9 KBSep 25, 2011 10:23:00 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/html/PendingCreditDetailsHTML.java464 Lines34.1 KBSep 25, 2011 10:23:02 PM v81_0_SP_1_Sandip/amdocs/arClient/credit/util/CreditWebKeys.java61 Lines7.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/delegates/DebitDelegate.java18 Lines2.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/DebitActionsActionHandler.java38 Lines5.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/DebitActionsDataHandler.java22 Lines3.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/DebitActionsFlowHandler.java18 Lines2.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/DebitActionsRenderHandler.java25 Lines3.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/DebitQueriesActionHandler.java277 Lines26.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/DebitQueriesDataHandler.java93 Lines12.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/DebitQueriesFlowHandler.java51 Lines5.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/DebitQueriesRenderHandler.java56 Lines5.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/forms/ChargeLevelCreditDetailsForm.java14 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/forms/ChargeLevelDisputeDetailsForm.java13 Lines1.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/forms/ChargeLevelPendingCreditDetailsForm.java12 Lines1.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/forms/CreditNoteDebitListForm.java10 Lines1.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/forms/DebitDetailsForm.java9 Lines1.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/forms/DebitListForm.java11 Lines2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/forms/DebitSearchForm.java11 Lines1.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/screens/ChargeLevelCreditAllocationConfirmationScreen.java41 Lines6.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/screens/ChargeLevelCreditConfirmationScreen.java29 Lines4.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/screens/ChargeLevelCreditDetailsScreen.java43 Lines6.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/screens/ChargeLevelDisputeConfirmationScreen.java25 Lines4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/screens/ChargeLevelDisputeDetailsScreen.java37 Lines5.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/screens/ChargeLevelPendingCreditConfirmationScreen.java25 Lines4.5 KB Sep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/screens/ChargeLevelPendingCreditDetailsScreen.java28 Lines4.9 KBSep 25, 2011 9:12:52 PM Copyright 2007 Fortify Software Inc. Page 39 of 118

Fortify Security Report


v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/screens/CreditNoteListDebitScreen.java30 Lines4.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/screens/DebitConfirmationScreen.java24 Lines3.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/screens/DebitDetailsScreen.java24 Lines4.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/screens/DebitInfoScreenFragment.java17 Lines3.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/screens/DebitListScreen.java45 Lines6.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/handlers/screens/DebitSearchScreen.java34 Lines4.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/html/ChargeLevelCreditAllocationConfirmationHTML.java569 Lines44.3 KBSep 25, 2011 10:23:04 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/html/ChargeLevelCreditConfirmationHTML.java452 Lines35.1 KBSep 25, 2011 10:23:08 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/html/ChargeLevelCreditDetailsHTML.java830 Lines62.5 KBSep 25, 2011 10:23:10 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/html/ChargeLevelDisputeConfirmationHTML.java414 Lines31.9 KBSep 25, 2011 10:23:12 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/html/ChargeLevelDisputeDetailsHTML.java525 Lines38.9 KBSep 25, 2011 10:23:16 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/html/ChargeLevelPendingCreditConfirmationHTML.java414 Lines31.9 KBSep 25, 2011 10:23:18 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/html/ChargeLevelPendingCreditDetailsHTML.java531 Lines39.3 KBSep 25, 2011 10:23:20 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/html/DebitConfirmationHTML.java380 Lines28.9 KBSep 25, 2011 10:23:22 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/html/DebitDetailsHTML.java390 Lines28.8 KBSep 25, 2011 10:23:26 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/html/DebitInformationHTML.java521 Lines41.9 KBSep 25, 2011 10:23:28 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/html/DebitListHTML.java413 Lines33.8 KBSep 25, 2011 10:23:30 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/html/DebitSearchButtonsHTML.java182 Lines15.1 KBSep 25, 2011 10:23:36 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/html/DebitSearchHTML.java526 Lines38.2 KBSep 25, 2011 10:23:32 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/util/DebitQueriesWebKeys.java13 Lines1.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/debit/util/DebitWebKeys.java43 Lines4.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/delegates/DepositDelegate.java65 Lines9.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/DepositActionsActionHandler.java131 Lines13.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/DepositActionsDataHandler.java56 Lines7.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/DepositActionsFlowHandler.java26 Lines4.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/DepositActionsRenderHandler.java33 Lines4.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/DepositQueriesActionHandler.java216 Lines20.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/DepositQueriesDataHandler.java73 Lines11.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/DepositQueriesFlowHandler.java50 Lines5.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/DepositQueriesRenderHandler.java57 Lines5.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/forms/BillingArrangementListForm.java10 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/forms/DepositCancelForm.java13 Lines2.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/forms/DepositDecreaseForm.java14 Lines2.8 KBSep 25, 2011 9:12:52 Copyright 2007 Fortify Software Inc. Page 40 of 118

Fortify Security Report


PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/forms/DepositDetailsForm.java16 Lines2.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/forms/DepositIncreaseForm.java17 Lines3.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/forms/DepositListForm.java12 Lines2.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/forms/DepositReleaseForm.java14 Lines2.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/forms/DepositSearchForm.java14 Lines2.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/screens/BillingArrangementListScreen.java30 Lines4.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/screens/DepositCancelDetailsScreen.java30 Lines6.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/screens/DepositConfirmationScreen.java36 Lines6.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/screens/DepositDecreaseScreen.java60 Lines9.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/screens/DepositDetailsScreen.java63 Lines9.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/screens/DepositIncreaseScreen.java72 Lines11.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/screens/DepositListScreen.java77 Lines9.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/screens/DepositReleaseDetailsScreen.java49 Lines8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/screens/DepositSearchScreen.java26 Lines5.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/handlers/screens/DepositViewScreen.java34 Lines5.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/html/BillingArrangementListButtonsHTML.java174 Lines14.9 KBSep 25, 2011 10:23:40 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/html/BillingArrangementListHTML.java257 Lines21 KBSep 25, 2011 10:23:38 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/html/CreateDepositButtonsHTML.java276 Lines21.2 KBSep 25, 2011 10:23:42 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/html/DepositCancelButtonsHTML.java182 Lines15.2 KBSep 25, 2011 10:23:48 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/html/DepositCancelHTML.java422 Lines32.6 KBSep 25, 2011 10:23:44 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/html/DepositConfirmationHTML.java544 Lines42.5 KBSep 25, 2011 10:23:50 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/html/DepositDecreaseButtonsHTML.java276 Lines21.2 KBSep 25, 2011 10:23:56 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/html/DepositDecreaseHTML.java971 Lines75.9 KBSep 25, 2011 10:23:52 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/html/DepositDetailsHTML.java720 Lines53.3 KBSep 25, 2011 10:23:58 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/html/DepositIncreaseButtonsHTML.java280 Lines21.5 KBSep 25, 2011 10:24:04 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/html/DepositIncreaseHTML.java1057 Lines82 KBSep 25, 2011 10:24:02 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/html/DepositListHTML.java935 Lines71 KBSep 25, 2011 10:24:06 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/html/DepositReleaseButtonsHTML.java182 Lines15.3 KBSep 25, 2011 10:24:12 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/html/DepositReleaseHTML.java937 Lines73 KBSep 25, 2011 10:24:08 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/html/DepositSearchButtonsHTML.java182 Lines15.2 KBSep 25, 2011 10:24:16 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/html/DepositSearchHTML.java608 Lines44.7 KBSep 25, 2011 10:24:14 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/html/DepositViewHTML.java925 Lines72.1 KBSep 25, 2011 10:24:18 PM v81_0_SP_1_Sandip/amdocs/arClient/deposit/util/DepositWebKeys.java40 Lines5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/DirectDebitActionsActionHandler.java82 Lines11.1 KBSep 25, 2011 Copyright 2007 Fortify Software Inc. Page 41 of 118

Fortify Security Report


9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/DirectDebitActionsDataHandler.java34 Lines6.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/DirectDebitActionsFlowHandler.java20 Lines3.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/DirectDebitActionsRenderHandler.java27 Lines4.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/DirectDebitQueriesActionHandler.java133 Lines17.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/DirectDebitQueriesDataHandler.java72 Lines14.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/DirectDebitQueriesFlowHandler.java33 Lines4.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/DirectDebitQueriesRenderHandler.java39 Lines5.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/forms/DirectDebitDetailsForm.java20 Lines3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/forms/DirectDebitListForm.java10 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/forms/DirectDebitSearchForm.java32 Lines5.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/forms/DirectDebitUpdateDetailsForm.java22 Lines5.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/screens/DirectDebitConfirmationScreen.java41 Lines7.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/screens/DirectDebitDetailsScreen.java91 Lines14 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/screens/DirectDebitInfoScreenFragment.java15 Lines3.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/screens/DirectDebitListScreen.java125 Lines18.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/screens/DirectDebitReissueScreen.java23 Lines3.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/screens/DirectDebitSearchScreen.java54 Lines9.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/screens/DirectDebitUpdateBaseScreen.java127 Lines15.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/screens/DirectDebitUpdateConfirmationScreen.java50 Lines8.8 KB Sep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/screens/DirectDebitUpdateDetailsScreen.java34 Lines4.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/handlers/screens/DirectDebitUpdateStatusScreen.java34 Lines4.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/html/DirectDebitConfirmationHTML.java705 Lines53.5 KBSep 25, 2011 10:24:22 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/html/DirectDebitDetailsHTML.java989 Lines72.6 KBSep 25, 2011 10:24:24 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/html/DirectDebitInformationHTML.java361 Lines30 KBSep 25, 2011 10:24:26 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/html/DirectDebitListHTML.java1401 Lines108.5 KBSep 25, 2011 10:24:30 PM Copyright 2007 Fortify Software Inc. Page 42 of 118

Fortify Security Report


v81_0_SP_1_Sandip/amdocs/arClient/directdebit/html/DirectDebitSearchButtonsHTML.java182 Lines15.4 KBSep 25, 2011 10:24:34 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/html/DirectDebitSearchHTML.java1121 Lines79.1 KBSep 25, 2011 10:24:32 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/html/DirectDebitUpdateConfirmationHTML.java746 Lines57 KBSep 25, 2011 10:24:38 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/html/DirectDebitUpdateDetailsHTML.java1067 Lines81.5 KBSep 25, 2011 10:24:40 PM v81_0_SP_1_Sandip/amdocs/arClient/directdebit/util/DirectDebitWebKeys.java36 Lines4.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/delegates/DisputeDelegate.java48 Lines7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/DisputeActionsActionHandler.java133 Lines14 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/DisputeActionsDataHandler.java43 Lines6.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/DisputeActionsFlowHandler.java26 Lines4.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/DisputeActionsRenderHandler.java33 Lines5.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/DisputeQueriesActionHandler.java239 Lines22.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/DisputeQueriesDataHandler.java78 Lines10.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/DisputeQueriesFlowHandler.java50 Lines5.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/DisputeQueriesRenderHandler.java57 Lines7.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/forms/DisputeCancelForm.java14 Lines2.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/forms/DisputeDetailsForm.java13 Lines2.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/forms/DisputeJustifyForm.java15 Lines2.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/forms/DisputeListForm.java17 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/forms/DisputeRejectForm.java14 Lines2.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/forms/DisputeSearchForm.java12 Lines2.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/forms/DisputeUpdateForm.java15 Lines2.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/forms/DisputeViewForm.java13 Lines1.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/screens/DisputeCancelConfirmationScreen.java26 Lines5.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/screens/DisputeCancelDetailsScreen.java36 Lines6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/screens/DisputeConfirmationScreen.java27 Lines5.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/screens/DisputeDetailsScreen.java30 Lines5.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/screens/DisputeJustifyConfirmationScreen.java31 Lines5.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/screens/DisputeJustifyDetailsScreen.java29 Lines5.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/screens/DisputeListScreen.java76 Lines10.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/screens/DisputeRejectConfirmationScreen.java26 Lines5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/screens/DisputeRejectDetailsScreen.java36 Lines6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/screens/DisputeSearchScreen.java32 Lines6 KBSep 25, 2011 9:12:52 PM Copyright 2007 Fortify Software Inc. Page 43 of 118

Fortify Security Report


v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/screens/DisputeUpdateConfirmationScreen.java26 Lines5.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/screens/DisputeUpdateDetailsScreen.java27 Lines4.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/handlers/screens/DisputeViewScreen.java82 Lines10.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/html/CreateDisputeButtonsHTML.java383 Lines30.2 KBSep 25, 2011 10:24:42 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/html/DisputeCancelButtonsHTML.java182 Lines15.2 KBSep 25, 2011 10:24:48 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/html/DisputeCancelConfirmationHTML.java339 Lines26.5 KBSep 25, 2011 10:24:50 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/html/DisputeCancelHTML.java432 Lines33.2 KBSep 25, 2011 10:24:46 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/html/DisputeConfirmationHTML.java376 Lines29.1 KBSep 25, 2011 10:24:54 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/html/DisputeDetailsHTML.java474 Lines34.7 KBSep 25, 2011 10:24:56 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/html/DisputeInformationHTML.java418 Lines34.6 KBSep 25, 2011 10:24:58 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/html/DisputeJustifyButtonsHTML.java182 Lines15.3 KBSep 25, 2011 10:25:04 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/html/DisputeJustifyConfirmationHTML.java360 Lines28.3 KBSep 25, 2011 10:25:06 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/html/DisputeJustifyHTML.java523 Lines39.4 KBSep 25, 2011 10:25:02 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/html/DisputeListHTML.java448 Lines37.7 KBSep 25, 2011 10:25:08 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/html/DisputeRejectButtonsHTML.java182 Lines15.2 KBSep 25, 2011 10:25:14 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/html/DisputeRejectConfirmationHTML.java339 Lines26.5 KBSep 25, 2011 10:25:16 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/html/DisputeRejectHTML.java432 Lines33.2 KBSep 25, 2011 10:25:12 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/html/DisputeSearchHTML.java501 Lines36.7 KBSep 25, 2011 10:25:18 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/html/DisputeUpdateButtonsHTML.java182 Lines15.2 KBSep 25, 2011 10:25:22 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/html/DisputeUpdateConfirmationHTML.java339 Lines26.4 KBSep 25, 2011 10:25:26 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/html/DisputeUpdateHTML.java474 Lines35.1 KBSep 25, 2011 10:25:20 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/html/DisputeViewHTML.java447 Lines35.2 KBSep 25, 2011 10:25:28 PM v81_0_SP_1_Sandip/amdocs/arClient/dispute/util/DisputeWebKeys.java36 Lines4.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/appservices/ARBean.java107 Lines12.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/appservices/ARClientEnvironment.java122 Lines12.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/appservices/ARClientMessages.java26 Lines3.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/appservices/ARClientScreenText.properties10.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/appservices/ARClientValidationMessages.properties1.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/appservices/ARFEHighAvailabilityCommandsImpl.java38 Lines3.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/appservices/BOHSessionUtils.java35 Lines4.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/appservices/ClientShutDownClass.java7 Lines1.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/appservices/HtmlClassFactory.java41 Lines3.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/appservices/IJAASLogin.java891 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/appservices/JNDILookupFactory.java55 Lines10 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/appservices/MessageController.java1 Lines4.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/appservices/PersistencyBean.java62 Lines10.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/appservices/SecurityController.java61 Lines6.2 KBSep 25, 2011 9:12:52 PM Copyright 2007 Fortify Software Inc. Page 44 of 118

Fortify Security Report


v81_0_SP_1_Sandip/amdocs/arClient/general/appservices/WASLogin.java24 Lines2.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/datatypes/BasicDatatype.java33 Lines2.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/datatypes/ButtonSettings.java10 Lines1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/datatypes/DoDepositPaymentSubmit.java4 Lines1.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/datatypes/DoDirectDebitUpdateSubmit.java5 Lines998 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/datatypes/DoPaymentSubmit.java5 Lines1017 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/datatypes/DoSubmit.java33 Lines2.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/datatypes/PersistencyClientInfo.java16 Lines1.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/delegates/AbstractDelegate.java4 Lines536 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/delegates/CurrencyDelegate.java55 Lines4.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/exceptions/ARClientException.java2 Lines272 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/exceptions/ActionNotAllowedException.java6 Lines775 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/exceptions/RenderingException.java1 Lines298 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/exceptions/ValidationException.java12 Lines1.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/ARActionHandler.java31 Lines4.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/ARDataHandler.java219 Lines30.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/ARFlowHandler.java8 Lines1.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/ARRenderHandler.java2 Lines815 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/ActionHandler.java7 Lines2.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/DataHandler.java2 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/DefaultDelegateExceptionHandler.java24 Lines2.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/FlowHandler.java43 Lines6.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/ListHandler.java14 Lines1.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/RenderHandler.java2 Lines853 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/forms/AbstractForm.java16 Lines1.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/forms/Form.java501 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/screens/AbstractRenderer.java31 Lines3.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/screens/AbstractScreenRenderer.java37 Lines3.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/screens/AbstractTemplate.java100 Lines11.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/screens/DefaultQueriesScreen.java5 Lines1.2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/screens/DefaultScreen.java68 Lines8.4 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/screens/ErrorScreen.java3 Lines1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/screens/ListTemplate.java74 Lines6.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/screens/MainTemplate.java125 Lines14.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/screens/MessageScreen.java3 Lines1.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/screens/PopupTemplate.java18 Lines2 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/screens/Renderer.java413 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/screens/Screen.java882 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/screens/Template.java413 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/handlers/screens/TemplateFactory.java9 Lines571 bytesSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/html/BlankTemplateHTML.java192 Lines15.3 KBSep 25, 2011 10:25:30 PM v81_0_SP_1_Sandip/amdocs/arClient/general/html/DeleteButtonHTML.java178 Lines14.6 KBSep 25, 2011 10:25:32 PM v81_0_SP_1_Sandip/amdocs/arClient/general/html/ErrorHTML.java187 Lines14.5 KBSep 25, 2011 10:25:34 PM v81_0_SP_1_Sandip/amdocs/arClient/general/html/GenericButtonsHTML.java278 Lines21.3 KBSep 25, 2011 10:25:38 PM v81_0_SP_1_Sandip/amdocs/arClient/general/html/HeaderHTML.java147 Lines12 KBSep 25, 2011 10:25:40 PM Copyright 2007 Fortify Software Inc. Page 45 of 118

Fortify Security Report


v81_0_SP_1_Sandip/amdocs/arClient/general/html/LeftBarHTML.java151 Lines12.2 KBSep 25, 2011 10:25:42 PM v81_0_SP_1_Sandip/amdocs/arClient/general/html/LeftMenuActionsHTML.java1059 Lines77.8 KBSep 25, 2011 10:25:44 PM v81_0_SP_1_Sandip/amdocs/arClient/general/html/LeftMenuInvoiceQueriesHTML.java1202 Lines79 KBSep 25, 2011 10:25:48 PM v81_0_SP_1_Sandip/amdocs/arClient/general/html/LeftMenuQueriesHTML.java4706 Lines347.4 KBSep 25, 2011 10:25:50 PM v81_0_SP_1_Sandip/amdocs/arClient/general/html/ListTemplateHTML.java1040 Lines72.7 KBSep 25, 2011 10:25:54 PM v81_0_SP_1_Sandip/amdocs/arClient/general/html/MainTemplateHTML.java1269 Lines89.4 KBSep 25, 2011 10:25:56 PM v81_0_SP_1_Sandip/amdocs/arClient/general/html/MenuAccountHTML.java895 Lines66 KBSep 25, 2011 10:26:00 PM v81_0_SP_1_Sandip/amdocs/arClient/general/html/MenuHTML.java1005 Lines73.6 KBSep 25, 2011 10:25:58 PM v81_0_SP_1_Sandip/amdocs/arClient/general/html/MessageButtonsHTML.java186 Lines15 KBSep 25, 2011 10:26:06 PM v81_0_SP_1_Sandip/amdocs/arClient/general/html/MessageHTML.java187 Lines14.6 KBSep 25, 2011 10:26:04 PM v81_0_SP_1_Sandip/amdocs/arClient/general/html/PaginationButtonsHTML.java211 Lines17.3 KBSep 25, 2011 10:26:08 PM v81_0_SP_1_Sandip/amdocs/arClient/general/html/PopupTemplateHTML.java613 Lines43.9 KBSep 25, 2011 10:26:10 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/AppUtils.java71 Lines19.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/CurrencyConverterServlet.java26 Lines3.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/DateUtils.java75 Lines8.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/DomUtils.java101 Lines16.8 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/Helper.java25 Lines1.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/JNDINames.java25 Lines3.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/LoginFilter.java20 Lines1.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/MessageUtils.java10 Lines2.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/PaginationUtils.java22 Lines2.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/ReferenceDataListMethod.java15 Lines1.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/ReferenceDataManager.java612 Lines47.5 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/ResourceFilter.java42 Lines3.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/SensitiveDataUtils.java37 Lines4.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/ServletResponseWrapper.java18 Lines1.7 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/SessionAttributeListener.java15 Lines2.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/SingleWindowFilter.java53 Lines9.1 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/StringUtils.java66 Lines14 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/WebKeys.java321 Lines28.3 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/WebUtils.java33 Lines5.9 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/general/util/Xmlc.java180 Lines16.6 KBSep 25, 2011 9:12:52 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/delegates/InvoiceDelegate.java52 Lines10.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/InvoiceQueriesActionHandler.java397 Lines36 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/InvoiceQueriesDataHandler.java111 Lines15.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/InvoiceQueriesFlowHandler.java56 Lines6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/InvoiceQueriesRenderHandler.java63 Lines8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/forms/InvoiceAllocationDetailsForm.java27 Lines3.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/forms/InvoiceAllocationListForm.java10 Lines2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/forms/InvoiceCreditListForm.java10 Lines1.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/forms/InvoiceLevelCreditForm.java13 Lines1.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/forms/InvoiceLevelDisputeForm.java12 Lines1.6 KBSep 25, 2011 9:12:54 PM Copyright 2007 Fortify Software Inc. Page 46 of 118

Fortify Security Report


v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/forms/InvoiceLevelPendingCreditForm.java11 Lines1.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/forms/InvoiceListForm.java10 Lines2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/forms/InvoiceSearchForm.java13 Lines2.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/screens/InvoiceAllocationConfirmationScreen.java28 Lines5.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/screens/InvoiceAllocationDetailsScreen.java120 Lines13.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/screens/InvoiceAllocationListScreen.java39 Lines6.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/screens/InvoiceCreditListScreen.java30 Lines4.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/screens/InvoiceInfoScreenFragment.java26 Lines4.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/screens/InvoiceLevelCreditAllocationConfirmationScreen.java40 Lines 9.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/screens/InvoiceLevelCreditConfirmationScreen.java31 Lines4.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/screens/InvoiceLevelCreditScreen.java41 Lines7.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/screens/InvoiceLevelDisputeConfirmationScreen.java29 Lines4.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/screens/InvoiceLevelDisputeScreen.java27 Lines5.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/screens/InvoiceLevelPendingCreditConfirmationScreen.java31 Lines4.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/screens/InvoiceLevelPendingCreditScreen.java25 Lines4.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/screens/InvoiceListScreen.java51 Lines7.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/handlers/screens/InvoiceSearchScreen.java31 Lines5.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceAllocationConfirmationButtonsHTML.java178 Lines14.9 KBSep 25, 2011 10:26:16 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceAllocationConfirmationHTML.java270 Lines22.5 KBSep 25, 2011 10:26:14 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceAllocationDetailsButtonsHTML.java292 Lines22.3 KBSep 25, 2011 10:26:22 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceAllocationDetailsHTML.java583 Lines46.8 KBSep 25, 2011 10:26:18 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceAllocationListButtonsHTML.java164 Lines13.8 KBSep 25, 2011 10:26:26 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceAllocationListHTML.java363 Lines29.1 KBSep 25, 2011 10:26:24 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceHistoryHTML.java358 Lines25.5 KBSep 25, 2011 10:26:28 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceInformationHTML.java541 Lines44 KBSep 25, 2011 10:26:30 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceLevelCreditAllocationConfirmationScreenHTML.java569 Lines44.4 KBSep 25, 2011 10:26:34 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceLevelCreditConfirmationHTML.java448 Lines35.3 KBSep 25, 2011 10:26:36 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceLevelCreditDetailsHTML.java863 Lines66 KBSep 25, 2011 10:26:38 PM Copyright 2007 Fortify Software Inc. Page 47 of 118

Fortify Security Report


v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceLevelDisputeConfirmationHTML.java404 Lines31.2 KBSep 25, 2011 10:26:40 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceLevelDisputeDetailsHTML.java564 Lines42.7 KBSep 25, 2011 10:26:44 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceLevelPendingCreditConfirmationHTML.java404 Lines31.2 KBSep 25, 2011 10:26:46 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceLevelPendingCreditDetailsHTML.java570 Lines43.1 KBSep 25, 2011 10:26:48 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceListButtonsHTML.java174 Lines14.8 KBSep 25, 2011 10:26:54 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceListHTML.java452 Lines37.5 KBSep 25, 2011 10:26:52 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceSearchButtonsHTML.java182 Lines15.2 KBSep 25, 2011 10:27:00 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceSearchHTML.java497 Lines36.4 KBSep 25, 2011 10:26:56 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceSummaryListHTML.java193 Lines14.8 KBSep 25, 2011 10:27:02 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceWriteOffConfirmationHTML.java405 Lines28.6 KBSep 25, 2011 10:27:06 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/html/InvoiceWriteOffHTML.java419 Lines28.9 KBSep 25, 2011 10:27:04 PM v81_0_SP_1_Sandip/amdocs/arClient/invoice/util/InvoiceWebKeys.java50 Lines5.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/delegates/PaymentDelegate.java98 Lines13.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentAbstractActionHandler.java40 Lines4.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentAbstractDataHandler.java42 Lines6.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentAbstractFlowHandler.java4 Lines1.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentAbstractRenderHandler.java15 Lines2.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentActionsActionHandler.java212 Lines25.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentActionsDataHandler.java72 Lines10.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentActionsFlowHandler.java27 Lines3.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentActionsRenderHandler.java34 Lines4.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentBackoutActionHandler.java152 Lines16.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentBackoutDataHandler.java67 Lines8.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentBackoutFlowHandler.java36 Lines6.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentBackoutRenderHandler.java35 Lines4.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentCreateActionHandler.java160 Lines15.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentCreateDataHandler.java71 Lines10.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentCreateFlowHandler.java32 Lines5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentCreateRenderHandler.java35 Lines4.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentQueriesActionHandler.java375 Lines33.8 KBSep 25, 2011 Copyright 2007 Fortify Software Inc. Page 48 of 118

Fortify Security Report


9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentQueriesDataHandler.java126 Lines17.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentQueriesFlowHandler.java60 Lines5.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentQueriesRenderHandler.java56 Lines5.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentSearchActionHandler.java195 Lines22.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentSearchDataHandler.java50 Lines7.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentSearchFlowHandler.java39 Lines5.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/PaymentSearchRenderHandler.java36 Lines5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/forms/AcLvlDepositPaymentApplicationForm.java42 Lines4.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/forms/AcLvlPaymentApplicationForm.java2 Lines755 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/forms/AcLvlPaymentDetailsForm.java27 Lines3.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/forms/DepositListForm.java10 Lines1.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/forms/PaymentAccountSearchForm.java10 Lines1.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/forms/PaymentAllocationListForm.java10 Lines2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/forms/PaymentApplicationForm.java41 Lines5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/forms/PaymentBackoutDetailsForm.java14 Lines2.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/forms/PaymentDetailsForm.java27 Lines4.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/forms/PaymentFundsTransferForm.java34 Lines4.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/forms/PaymentListForm.java8 Lines979 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/forms/PaymentSearchForm.java39 Lines5.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/forms/RefundPaymentDetailsForm.java10 Lines1.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/AcLvlDepositPaymentApplicationScreen.java84 Lines16.9 KB Sep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/AcLvlPaymentApplicationScreen.java92 Lines13.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/AcLvlPaymentConfirmationScreen.java5 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/AcLvlPaymentDetailsScreen.java52 Lines7.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/AcLvlPaymentListScreen.java11 Lines2.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/AcLvlPaymentSearchScreen.java18 Lines2.5 KBSep 25, 2011 9:12:54 PM Copyright 2007 Fortify Software Inc. Page 49 of 118

Fortify Security Report


v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/DepositListScreen.java42 Lines5.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/PaymentAccountSearchScreen.java12 Lines2.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/PaymentAllocationListScreen.java87 Lines6.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/PaymentApplicationScreen.java98 Lines13.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/PaymentBackoutConfirmationScreen.java27 Lines4.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/PaymentBackoutDetailsScreen.java64 Lines8.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/PaymentBackoutInfoScreenFragment.java22 Lines3.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/PaymentConfirmationScreen.java52 Lines6.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/PaymentDetailsScreen.java44 Lines7.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/PaymentFundsTransferConfirmationScreen.java86 Lines6 KB Sep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/PaymentFundsTransferDetailsScreen.java117 Lines17.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/PaymentHistoryScreen.java29 Lines4.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/PaymentInfoScreenFragment.java17 Lines3.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/PaymentListDetailsScreen.java71 Lines10.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/PaymentListScreen.java85 Lines10.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/PaymentRefundConfirmationScreen.java18 Lines3.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/PaymentRefundDetailsScreen.java28 Lines5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/handlers/screens/PaymentSearchScreen.java88 Lines15.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/AcLvlDepositPaymentApplicationButtonsHTML.java424 Lines31.9 KBSep 25, 2011 10:27:12 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/AcLvlDepositPaymentApplicationHTML.java1132 Lines88.9 KBSep 25, 2011 10:27:10 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/AcLvlPaymentApplicationHTML.java900 Lines73 KBSep 25, 2011 10:27:14 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/AcLvlPaymentConfirmationHTML.java490 Lines34.4 KBSep 25, 2011 10:27:16 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/AcLvlPaymentDetailsHTML.java1165 Lines82.7 KBSep 25, 2011 10:27:20 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/BackoutPaymentConfirmationButtonsHTML.java164 Lines14 KBSep 25, 2011 10:27:22 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/BackoutPaymentDetailsButtonsHTML.java280 Lines22.3 KBSep 25, 2011 10:27:24 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/BackoutPaymentListButtonsHTML.java164 Lines13.7 KBSep 25, 2011 10:27:28 PM Copyright 2007 Fortify Software Inc. Page 50 of 118

Fortify Security Report


v81_0_SP_1_Sandip/amdocs/arClient/payment/html/DepositListButtonsHTML.java248 Lines20.2 KBSep 25, 2011 10:27:32 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/DepositListHTML.java374 Lines29.3 KBSep 25, 2011 10:27:30 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/FundsTransferButtonsHTML.java427 Lines33 KBSep 25, 2011 10:27:34 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentAllocationConfirmationButtonsHTML.java186 Lines15.4 KBSep 25, 2011 10:27:40 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentAllocationConfirmationHTML.java256 Lines21.6 KBSep 25, 2011 10:27:38 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentAllocationDetailsButtonsHTML.java267 Lines20.8 KBSep 25, 2011 10:27:46 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentAllocationDetailsHTML.java556 Lines44.8 KBSep 25, 2011 10:27:42 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentAllocationListButtonsHTML.java164 Lines13.8 KBSep 25, 2011 10:27:50 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentAllocationListHTML.java355 Lines30.4 KBSep 25, 2011 10:27:48 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentApplicationButtonsHTML.java362 Lines28.1 KBSep 25, 2011 10:27:56 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentApplicationHTML.java875 Lines71.1 KBSep 25, 2011 10:27:54 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentBackoutConfirmationHTML.java387 Lines30.4 KBSep 25, 2011 10:27:58 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentBackoutDetailsHTML.java546 Lines44.9 KBSep 25, 2011 10:28:00 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentBackoutInformationHTML.java414 Lines34 KBSep 25, 2011 10:28:02 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentConfirmationButtonsHTML.java235 Lines18.7 KBSep 25, 2011 10:28:08 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentConfirmationHTML.java348 Lines31.2 KBSep 25, 2011 10:28:06 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentDetailsButtonsHTML.java337 Lines27.5 KBSep 25, 2011 10:28:12 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentDetailsHTML.java1020 Lines72.2 KBSep 25, 2011 10:28:10 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentFundsTransferApplicationHTML.java903 Lines70.9 KBSep 25, 2011 10:28:16 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentFundsTransferConfirmationHTML.java359 Lines29.9 KBSep 25, 2011 10:28:18 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentHistoryHTML.java356 Lines30 KBSep 25, 2011 10:28:20 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentInformationHTML.java414 Lines34 KBSep 25, 2011 10:28:22 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentListButtonsHTML.java339 Lines27.6 KBSep 25, 2011 10:28:28 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentListHTML.java543 Lines46.6 KBSep 25, 2011 10:28:26 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentRefundConfirmationHTML.java373 Lines29.4 KBSep 25, 2011 10:28:30 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentRefundDetailsHTML.java426 Lines32.6 KBSep 25, 2011 10:28:32 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentSearchButtonsHTML.java182 Lines15.2 KBSep 25, 2011 10:28:38 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentSearchHTML.java1472 Lines106.5 KBSep 25, 2011 10:28:36 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/PaymentViewDetailsHTML.java555 Lines44.2 KBSep 25, 2011 10:28:40 PM Copyright 2007 Fortify Software Inc. Page 51 of 118

Fortify Security Report


v81_0_SP_1_Sandip/amdocs/arClient/payment/html/RefundPaymentDetailsButtonsHTML.java273 Lines21.2 KBSep 25, 2011 10:28:42 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/html/RefundPaymentListButtonsHTML.java164 Lines13.7 KBSep 25, 2011 10:28:46 PM v81_0_SP_1_Sandip/amdocs/arClient/payment/util/PaymentWebKeys.java70 Lines7.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/handlers/PendingCreditQueriesActionHandler.java140 Lines16.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/handlers/PendingCreditQueriesDataHandler.java60 Lines9.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/handlers/PendingCreditQueriesFlowHandler.java29 Lines4.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/handlers/PendingCreditQueriesRenderHandler.java36 Lines5.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/handlers/forms/PendingCreditListForm.java14 Lines2.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/handlers/forms/PendingCreditReversalDetailsForm.java8 Lines2.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/handlers/forms/PendingCreditSearchForm.java11 Lines2.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/handlers/screens/PendingCreditInfoScreenFragment.java19 Lines3.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/handlers/screens/PendingCreditListScreen.java69 Lines10.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/handlers/screens/PendingCreditReversalConfirmationScreen.java29 Lines6.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/handlers/screens/PendingCreditReversalDetailsScreen.java29 Lines5.7 KB Sep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/handlers/screens/PendingCreditSearchScreen.java24 Lines4.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/html/BillingArrangementListButtonsHTML.java174 Lines14.9 KBSep 25, 2011 10:28:50 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/html/BillingArrangementListHTML.java257 Lines21 KBSep 25, 2011 10:28:48 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/html/PendingCreditListHTML.java383 Lines31.6 KBSep 25, 2011 10:28:52 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/html/PendingCreditReversalConfirmationHTML.java372 Lines29.4 KBSep 25, 2011 10:28:56 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/html/PendingCreditReversalDetailsHTML.java373 Lines28.4 KBSep 25, 2011 10:28:58 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/html/PendingCreditSearchButtonsHTML.java182 Lines15.2 KBSep 25, 2011 10:29:02 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/html/PendingCreditSearchHTML.java460 Lines33.8 KBSep 25, 2011 10:29:00 PM v81_0_SP_1_Sandip/amdocs/arClient/pendingcredit/util/PendingCreditWebKeys.java58 Lines7.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/delegates/RefundDelegate.java32 Lines5.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/handlers/RefundActionsActionHandler.java55 Lines5.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/handlers/RefundActionsDataHandler.java24 Lines3.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/handlers/RefundActionsFlowHandler.java24 Lines3.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/handlers/RefundActionsRenderHandler.java27 Lines3.4 KBSep 25, 2011 9:12:54 PM Copyright 2007 Fortify Software Inc. Page 52 of 118

Fortify Security Report


v81_0_SP_1_Sandip/amdocs/arClient/refund/handlers/RefundQueriesActionHandler.java86 Lines9.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/handlers/RefundQueriesDataHandler.java54 Lines6.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/handlers/RefundQueriesFlowHandler.java27 Lines3.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/handlers/RefundQueriesRenderHandler.java31 Lines3.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/handlers/forms/RefundDetailsForm.java10 Lines1.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/handlers/forms/RefundListForm.java10 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/handlers/forms/RefundReversalDetailsForm.java11 Lines1.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/handlers/forms/RefundSearchForm.java11 Lines1.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/handlers/screens/RefundConfirmationScreen.java33 Lines5.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/handlers/screens/RefundDetailsScreen.java35 Lines6.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/handlers/screens/RefundInfoScreenFragment.java29 Lines5.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/handlers/screens/RefundListScreen.java72 Lines9.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/handlers/screens/RefundReversalConfirmationScreen.java97 Lines7.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/handlers/screens/RefundReversalDetailsScreen.java40 Lines6.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/handlers/screens/RefundSearchScreen.java30 Lines4.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/html/RefundConfirmationHTML.java392 Lines30.4 KBSep 25, 2011 10:29:04 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/html/RefundDetailsHTML.java459 Lines34.4 KBSep 25, 2011 10:29:08 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/html/RefundInformationHTML.java486 Lines39.9 KBSep 25, 2011 10:29:10 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/html/RefundListHTML.java397 Lines33.6 KBSep 25, 2011 10:29:12 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/html/RefundReversalConfirmationHTML.java380 Lines29.4 KBSep 25, 2011 10:29:14 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/html/RefundReversalDetailsHTML.java405 Lines30.2 KBSep 25, 2011 10:29:18 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/html/RefundSearchButtonsHTML.java182 Lines15.2 KBSep 25, 2011 10:29:22 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/html/RefundSearchHTML.java411 Lines30.4 KBSep 25, 2011 10:29:20 PM v81_0_SP_1_Sandip/amdocs/arClient/refund/util/RefundWebKeys.java47 Lines4.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/uams/html/loginHTML.java477 Lines32.8 KBSep 25, 2011 10:29:26 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/handlers/WriteOffActionsActionHandler.java50 Lines6.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/handlers/WriteOffActionsDataHandler.java24 Lines5.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/handlers/WriteOffActionsFlowHandler.java21 Lines4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/handlers/WriteOffActionsRenderHandler.java27 Lines4.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/handlers/WriteOffQueriesActionHandler.java81 Lines9.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/handlers/WriteOffQueriesDataHandler.java49 Lines9.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/handlers/WriteOffQueriesFlowHandler.java24 Lines4.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/handlers/WriteOffQueriesRenderHandler.java30 Lines4.9 KBSep 25, 2011 9:12:54 PM Copyright 2007 Fortify Software Inc. Page 53 of 118

Fortify Security Report


v81_0_SP_1_Sandip/amdocs/arClient/writeoff/handlers/forms/WriteOffDetailsForm.java11 Lines2.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/handlers/forms/WriteOffListForm.java13 Lines2.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/handlers/forms/WriteOffReversalDetailsForm.java11 Lines2.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/handlers/screens/WriteOffConfirmationScreen.java24 Lines5.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/handlers/screens/WriteOffDetailsScreen.java33 Lines5.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/handlers/screens/WriteOffInfoScreenFragment.java17 Lines3.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/handlers/screens/WriteOffListScreen.java67 Lines9.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/handlers/screens/WriteOffReversalConfirmationScreen.java30 Lines6.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/handlers/screens/WriteOffReversalDetailsScreen.java33 Lines6.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/html/WriteOffConfirmationHTML.java335 Lines26.3 KBSep 25, 2011 10:29:28 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/html/WriteOffDetailsHTML.java386 Lines29.6 KBSep 25, 2011 10:29:30 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/html/WriteOffInformationHTML.java441 Lines35.8 KBSep 25, 2011 10:29:32 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/html/WriteOffListHTML.java369 Lines30 KBSep 25, 2011 10:29:36 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/html/WriteOffReversalConfirmationHTML.java336 Lines26.8 KBSep 25, 2011 10:29:38 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/html/WriteOffReversalDetailsHTML.java375 Lines28.6 KBSep 25, 2011 10:29:40 PM v81_0_SP_1_Sandip/amdocs/arClient/writeoff/util/WriteOffWebKeys.java17 Lines2.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/build.properties869 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/build.xml2.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/build_garfe.xml3.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/public/properties/AR1Client.properties3.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/public/properties/ARFE_settings.properties1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/public/properties/SONARApplicationsConfiguration.xml1.3 KBSep 25, 2011 10:21:16 PM v81_0_SP_1_Sandip/public/properties/SONARmessageHandling1.xml2.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/public/properties/applicationsConfiguration.xml252 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/public/properties/sonarTemplateBuilder.config117 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/public/static/ARClientMessages_en.xml4.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/public/static/MessageHandlingServices.xml1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/WEB-INF/log4j.xml2.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/WEB-INF/web.xml16 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/WEB-INF/weblogic.xml272 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/account/AccountSearchValidations.js18 Lines2.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/account/statement/StatementSearchValidations.js3 Lines978 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/boh/tree.js42 Lines1.5 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/common/CheckEnter.js3 Lines132 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/common/Validator.html1 Lines4.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/common/calendar.js338 Lines21.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/common/calendar_example.js3 Lines897 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/common/common.js89 Lines6.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/common/dateFormatMask.js415 Lines25.5 KBSep 25, 2011 9:12:54 PM Copyright 2007 Fortify Software Inc. Page 54 of 118

Fortify Security Report


v81_0_SP_1_Sandip/webAppRoot/js/common/dateValidate.js189 Lines14.6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/common/menu.js17 Lines682 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/common/menuAccount.js13 Lines521 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/common/overlib_mini.js550 Lines23.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/common/rollOver.js6 Lines275 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/common/scripts.js30 Lines3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/common/showDetails.js8 Lines413 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/common/validate.js324 Lines27.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/credit/CreditAllocationDetailsValidations.js20 Lines2.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/credit/CreditDetailsValidations.js7 Lines1.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/credit/CreditNoteReversalDetailsValidations.js3 Lines1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/credit/CreditNoteSearchValidations.js5 Lines1.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/credit/CreditReversalDetailsValidations.js4 Lines1.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/credit/CreditReversalValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/credit/CreditSearchValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/credit/PendingCreditDetailsValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/credit/credit.js77 Lines5.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/debit/ChargeLevelCreditValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/debit/ChargeLevelDisputeValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/debit/ChargeLevelPendingCreditValidations.js5 Lines1.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/debit/DebitDetailsValidations.js5 Lines1.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/debit/DebitSearchValidations.js7 Lines1.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/deposit/DepositCancelValidations.js4 Lines1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/deposit/DepositDecreaseValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/deposit/DepositDetailsValidations.js13 Lines1.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/deposit/DepositIncreaseValidations.js13 Lines1.9 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/deposit/DepositReleaseValidations.js4 Lines1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/directdebit/DirectDebit.js15 Lines774 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/directdebit/DirectDebitDetailsValidations.js16 Lines2.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/directdebit/DirectDebitSearchValidations.js16 Lines2.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/directdebit/DirectDebitUpdateDetailsValidations.js13 Lines2.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/dispute/Dispute.js1 Lines160 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/dispute/DisputeCancelValidations.js4 Lines1.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/dispute/DisputeDetailsValidations.js7 Lines1.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/dispute/DisputeJustifyValidations.js3 Lines1002 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/dispute/DisputeRejectValidations.js4 Lines1.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/dispute/DisputeSearchValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/dispute/DisputeUpdateValidations.js3 Lines1002 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/invoice/InvoiceAllocationDetailsValidations.js5 Lines1.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/invoice/InvoiceLevelCreditValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/invoice/InvoiceLevelDisputeValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/invoice/InvoiceLevelPendingCreditValidations.js5 Lines1.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/invoice/InvoiceSearchValidations.js7 Lines1.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/invoice/invoice.js36 Lines2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/payment/PaymentApplicationValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/payment/PaymentBackoutDetailsValidations.js5 Lines1.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/payment/PaymentDetailsValidations.js15 Lines1.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/payment/PaymentFundsTransferApplicationValidations.js7 Lines1.4 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/payment/PaymentRefundDetailsValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM Copyright 2007 Fortify Software Inc. Page 55 of 118

Fortify Security Report


v81_0_SP_1_Sandip/webAppRoot/js/payment/PaymentSearchValidations.js19 Lines2.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/payment/directdebit.js8 Lines541 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/payment/payment.js159 Lines12 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/refund/RefundDetailsValidations.js6 Lines1.3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/refund/RefundReversalDetailsValidations.js4 Lines1.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/refund/RefundSearchValidations.js5 Lines1.2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/writeoff/WriteOffDetailsValidations.js4 Lines1.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/js/writeoff/WriteOffReversalDetailsValidations.js4 Lines1.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/jsp/UamsForms/ChangePasswordForm.jsp21 Lines3.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/jsp/UamsForms/ChooseEnvForm.jsp29 Lines3.1 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/jsp/UamsForms/ClientChangePasswordForm.jsp42 Lines6 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/jsp/UamsForms/FailurePage.jsp6 Lines1.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/jsp/UamsForms/LoginForm.jsp25 Lines3 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/jsp/UamsForms/LogoutPage.jsp8 Lines1.8 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/jsp/UamsForms/RejectPage.jsp5 Lines1.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/jsp/account/controllers/WelcomeMain.jsp6 Lines223 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/jsp/general/controllers/ErrorMsg.jsp43 Lines2.7 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/jsp/general/controllers/first.jsp5 Lines460 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/jsp/general/controllers/login.jsp2 Lines791 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/jsp/general/controllers/switch.jsp9 Lines2 KBSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/jsp/general/controllers/welcome.jsp2 Lines133 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/AcLvlCreditConfirmationScreen.jsp1 Lines799 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/AcLvlCreditScreen.jsp1 Lines877 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/AcLvlDepositPaymentApplicationScreen.jsp2 Lines812 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/AcLvlPaymentApplicationScreen.jsp1 Lines796 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/AcLvlPaymentConfirmationScreen.jsp1 Lines775 bytesSep 25, 2011 9:12:54 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/AcLvlPaymentDetailsScreen.jsp1 Lines707 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/AcLvlPaymentListScreen.jsp1 Lines537 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/AcLvlPaymentSearchScreen.jsp1 Lines738 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/AcLvlWriteOffConfirmationScreen.jsp1 Lines629 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/AcLvlWriteOffScreen.jsp1 Lines704 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/AccountDetailsScreen.jsp1 Lines491 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/AccountListScreen.jsp1 Lines611 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/AccountSearchScreen.jsp1 Lines614 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/AccountStatementListScreen.jsp2 Lines519 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/AdjustmentListScreen.jsp1 Lines496 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/AdjustmentReversalConfirmationScreen.jsp1 Lines672 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/AdjustmentReversalScreen.jsp1 Lines757 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/BackoutPaymentConfirmationScreen.jsp1 Lines620 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/BackoutPaymentDetailsScreen.jsp1 Lines681 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/BackoutPaymentListScreen.jsp1 Lines608 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/BackoutPaymentSearchScreen.jsp1 Lines608 bytesSep 25, 2011 9:12:56 PM Copyright 2007 Fortify Software Inc. Page 56 of 118

Fortify Security Report


v81_0_SP_1_Sandip/webAppRoot/prototype/screens/ChargeLevelCreditConfirmationScreen.jsp1 Lines733 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/ChargeLevelCreditScreen.jsp1 Lines905 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/CreditAllocationConfirmationScreen.jsp1 Lines676 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/CreditAllocationDetailsScreen.jsp1 Lines794 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/CreditAllocationScreen.jsp1 Lines664 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/CreditListScreen.jsp1 Lines486 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/CreditNoteCancelConfirmationScreen.jsp1 Lines731 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/CreditNoteCancelScreen.jsp1 Lines822 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/CreditNoteDeleteConfirmationScreen.jsp1 Lines731 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/CreditNoteDeleteScreen.jsp1 Lines822 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/CreditNoteFinalizeConfirmationScreen.jsp1 Lines735 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/CreditNoteFinalizeScreen.jsp1 Lines826 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/CreditNoteListScreen.jsp1 Lines493 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/CreditNoteLookUpScreen.jsp1 Lines602 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/CreditNoteSearchScreen.jsp1 Lines659 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/CreditNoteViewDetailsConfirmationScreen.jsp1 Lines736 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/CreditNoteViewDetailsScreen.jsp1 Lines862 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/CreditReversalConfirmationScreen.jsp1 Lines724 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/CreditReversalScreen.jsp1 Lines825 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/CreditSearchScreen.jsp1 Lines636 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/DebitListScreen.jsp1 Lines483 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/DebitSearchScreen.jsp1 Lines628 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/DepositCancelScreen.jsp2 Lines559 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/DepositDecreaseScreen.jsp2 Lines565 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/DepositIncreaseScreen.jsp2 Lines564 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/DepositListScreen.jsp2 Lines498 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/DepositReleaseScreen.jsp2 Lines562 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/DepositSearchScreen.jsp2 Lines654 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/DepositViewScreen.jsp2 Lines496 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/DirectDebitListScreen.jsp1 Lines459 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/DirectDebitScreen.jsp1 Lines738 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/DirectDebitSearchScreen.jsp1 Lines675 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/FundsTransferConfirmationScreen.jsp1 Lines701 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/FundsTransferScreen.jsp1 Lines902 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/InvoiceAllocationConfirmationScreen.jsp1 Lines681 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/InvoiceAllocationDetailsScreen.jsp1 Lines798 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/InvoiceAllocationScreen.jsp1 Lines669 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/InvoiceCreditConfirmationScreen.jsp1 Lines736 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/InvoiceCreditScreen.jsp1 Lines911 bytesSep 25, 2011 9:12:56 PM Copyright 2007 Fortify Software Inc. Page 57 of 118

Fortify Security Report


v81_0_SP_1_Sandip/webAppRoot/prototype/screens/InvoiceHistoryScreen.jsp1 Lines499 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/InvoiceListScreen.jsp1 Lines489 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/InvoiceLookUpScreen.jsp1 Lines597 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/InvoiceSearchScreen.jsp1 Lines642 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/InvoiceWriteOffConfirmationScreen.jsp1 Lines807 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/InvoiceWriteOffScreen.jsp1 Lines826 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/LoginScreen.jsp1 Lines239 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/MenuActionsScreen.jsp1 Lines499 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/MenuQueriesScreen.jsp1 Lines499 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/MessageScreen.jsp1 Lines551 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/OneTimeDebitConfirmationScreen.jsp1 Lines722 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/OneTimeDebitScreen.jsp1 Lines790 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/OneTimeDirectDebitConfirmationScreen.jsp1 Lines741 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/OneTimeDirectDebitScreen.jsp1 Lines815 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/PaymentAccountListScreen.jsp1 Lines612 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/PaymentAccountSearchScreen.jsp2 Lines626 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/PaymentAllocationConfirmationScreen.jsp1 Lines674 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/PaymentAllocationDetailsScreen.jsp1 Lines817 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/PaymentAllocationScreen.jsp1 Lines752 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/PaymentApplicationScreen.jsp1 Lines888 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/PaymentConfirmationScreen.jsp1 Lines725 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/PaymentDetailsScreen.jsp1 Lines644 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/PaymentHistoryScreen.jsp1 Lines499 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/PaymentListDetailsScreen.jsp1 Lines480 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/PaymentListScreen.jsp1 Lines615 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/PaymentSearchScreen.jsp1 Lines609 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/RefundConfirmationScreen.jsp1 Lines616 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/RefundDetailsScreen.jsp1 Lines684 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/RefundListScreen.jsp1 Lines484 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/RefundPaymentConfirmationScreen.jsp1 Lines694 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/RefundPaymentDetailsScreen.jsp1 Lines710 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/RefundPaymentListScreen.jsp1 Lines606 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/RefundPaymentSearchScreen.jsp1 Lines613 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/RefundReversalConfirmationScreen.jsp1 Lines734 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/RefundReversalScreen.jsp1 Lines820 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/RefundSearchScreen.jsp1 Lines634 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/UpdateDirectDebitConfirmationScreen.jsp1 Lines728 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/UpdateDirectDebitScreen.jsp1 Lines815 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/WriteOffListScreen.jsp1 Lines491 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/WriteOffReversalConfirmationScreen.jsp1 Lines641 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/prototype/screens/WriteOffReversalScreen.jsp1 Lines751 bytesSep 25, 2011 9:12:56 PM Copyright 2007 Fortify Software Inc. Page 58 of 118

Fortify Security Report


v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/account/html/AccountDetails.jsp1 Lines3.7 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/account/html/AccountInformation.jsp1 Lines794 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/account/html/AccountList.jsp1 Lines1.2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/account/html/AccountListButtons.jsp10 Lines1.5 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/account/html/AccountSearch.jsp1 Lines3.4 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/account/html/AccountSearchButtons.jsp4 Lines712 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/account/statement/html/AccountStatementList.jsp3 Lines1.5 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/account/statement/html/AccountStatementSearchButtons.jsp4 Lines734 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/boh/html/BOHTree.jsp1 Lines1.8 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/BillingArrangementList.jsp1 Lines834 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/BillingArrangementListButtons.jsp2 Lines624 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/CreateCreditButtons.jsp10 Lines1.4 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/CreatePendingCreditButtons.jsp7 Lines1.1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditAllocationConfirmation.jsp1 Lines1.1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditAllocationConfirmationButtons.jsp6 Lines762 bytes Sep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditAllocationDetails.jsp4 Lines6.3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditAllocationDetailsButtons.jsp9 Lines1.3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditAllocationList.jsp3 Lines1.6 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditAllocationListButtons.jsp4 Lines637 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditInformation.jsp1 Lines1.5 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditList.jsp3 Lines1.7 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditNoteInformation.jsp1 Lines1.6 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditNoteListButtons.jsp6 Lines822 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditNoteSearchButtons.jsp4 Lines698 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditNoteSummaryList.jsp1 Lines846 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditNoteViewDetailsButtons.jsp7 Lines987 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditReversalConfirmation.jsp3 Lines1.7 KBSep 25, 2011 9:12:56 PM Copyright 2007 Fortify Software Inc. Page 59 of 118

Fortify Security Report


v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditReversalDetails.jsp3 Lines1.7 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/credit/html/CreditSearchButtons.jsp4 Lines659 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/debit/html/DebitInformation.jsp1 Lines2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/debit/html/DebitSearchButtons.jsp4 Lines661 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/deposit/html/BillingArrangementList.jsp1 Lines834 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/deposit/html/BillingArrangementListButtons.jsp2 Lines624 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/deposit/html/CreateDepositButtons.jsp7 Lines1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/deposit/html/DepositCancel.jsp3 Lines2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/deposit/html/DepositCancelButtons.jsp4 Lines674 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/deposit/html/DepositDecreaseButtons.jsp7 Lines1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/deposit/html/DepositIncreaseButtons.jsp7 Lines1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/deposit/html/DepositList.jsp3 Lines3.9 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/deposit/html/DepositRelease.jsp3 Lines4.5 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/deposit/html/DepositReleaseButtons.jsp4 Lines681 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/deposit/html/DepositSearchButtons.jsp4 Lines666 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/deposit/html/DepositView.jsp3 Lines4 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/directdebit/html/DirectDebitConfirmation.jsp3 Lines3.1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/directdebit/html/DirectDebitDetails.jsp3 Lines5.3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/directdebit/html/DirectDebitInformation.jsp1 Lines1.2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/directdebit/html/DirectDebitList.jsp3 Lines7 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/directdebit/html/DirectDebitSearch.jsp3 Lines5.7 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/directdebit/html/DirectDebitSearchButtons.jsp4 Lines690 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/directdebit/html/DirectDebitUpdateConfirmation.jsp3 Lines3.3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/directdebit/html/DirectDebitUpdateDetails.jsp3 Lines9.6 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/dispute/html/CreateDisputeButtons.jsp10 Lines1.4 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeCancel.jsp3 Lines2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeCancelButtons.jsp4 Lines674 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeInformation.jsp1 Lines1.5 KBSep 25, 2011 9:12:56 PM Copyright 2007 Fortify Software Inc. Page 60 of 118

Fortify Security Report


v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeJustify.jsp3 Lines2.4 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeJustifyButtons.jsp4 Lines681 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeList.jsp3 Lines1.9 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeReject.jsp3 Lines2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeRejectButtons.jsp4 Lines674 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeUpdate.jsp3 Lines2.6 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeUpdateButtons.jsp4 Lines674 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/dispute/html/DisputeView.jsp3 Lines2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/general/html/DeleteButton.jsp4 Lines609 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/general/html/Error.jsp1 Lines778 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/general/html/GenericButtons.jsp7 Lines1020 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/general/html/Header.jsp1 Lines467 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/general/html/LeftBar.jsp1 Lines449 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/general/html/LeftMenuActions.jsp1 Lines4.9 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/general/html/LeftMenuInvoiceQueries.jsp21 Lines5.1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/general/html/LeftMenuQueries.jsp58 Lines24.5 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/general/html/Menu.jsp1 Lines4.3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/general/html/MenuAccount.jsp1 Lines3.9 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/general/html/Message.jsp1 Lines768 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/general/html/MessageButtons.jsp4 Lines607 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/general/html/PaginationButtons.jsp4 Lines765 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/invoice/html/InvoiceAllocationConfirmation.jsp1 Lines901 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/invoice/html/InvoiceAllocationConfirmationButtons.jsp6 Lines759 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/invoice/html/InvoiceAllocationDetails.jsp4 Lines3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/invoice/html/InvoiceAllocationDetailsButtons.jsp7 Lines1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/invoice/html/InvoiceAllocationListButtons.jsp4 Lines636 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/invoice/html/InvoiceInformation.jsp1 Lines2.1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/invoice/html/InvoiceListButtons.jsp6 Lines810 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/invoice/html/InvoiceSearchButtons.jsp4 Lines669 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/invoice/html/InvoiceSummaryList.jsp1 Lines634 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/AcLvlDepositPaymentApplication.jsp3 Lines4.6 KBSep 25, 2011 9:12:56 PM Copyright 2007 Fortify Software Inc. Page 61 of 118

Fortify Security Report


v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/AcLvlDepositPaymentApplicationButtons.jsp9 Lines1.8 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/AcLvlPaymentApplication.jsp6 Lines3.9 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/AcLvlPaymentConfirmation.jsp1 Lines2.4 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/BackoutPaymentConfirmationButtons.jsp4 Lines655 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/BackoutPaymentDetailsButtons.jsp7 Lines1.2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/BackoutPaymentListButtons.jsp4 Lines612 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/DepositList.jsp1 Lines1.2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/DepositListButtons.jsp4 Lines955 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/FundsTransferButtons.jsp14 Lines1.9 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentAllocationConfirmation.jsp1 Lines819 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentAllocationConfirmationButtons.jsp6 Lines785 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentAllocationDetails.jsp4 Lines2.9 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentAllocationDetailsButtons.jsp7 Lines1001 bytes Sep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentAllocationList.jsp3 Lines1.5 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentAllocationListButtons.jsp4 Lines638 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentApplication.jsp6 Lines3.8 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentApplicationButtons.jsp9 Lines1.5 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentBackoutConfirmation.jsp3 Lines1.7 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentBackoutDetails.jsp3 Lines4.6 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentBackoutInformation.jsp1 Lines1.3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentConfirmation.jsp3 Lines1.2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentConfirmationButtons.jsp7 Lines1018 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentDetails.jsp1 Lines4.8 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentDetailsButtons.jsp7 Lines1.3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentFundsTransferApplication.jsp6 Lines4.1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentFundsTransferConfirmation.jsp3 Lines1.6 KB Sep 25, 2011 9:12:56 PM Copyright 2007 Fortify Software Inc. Page 62 of 118

Fortify Security Report


v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentHistory.jsp3 Lines1.9 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentInformation.jsp1 Lines1.3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentList.jsp1 Lines2 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentListButtons.jsp6 Lines1.4 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentRefundConfirmation.jsp3 Lines1.6 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentRefundDetails.jsp3 Lines2.3 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentSearch.jsp4 Lines7.1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentSearchButtons.jsp4 Lines669 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/PaymentViewDetails.jsp1 Lines2.6 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/RefundPaymentDetailsButtons.jsp7 Lines1 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/payment/html/RefundPaymentListButtons.jsp4 Lines602 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/pendingcredit/html/BillingArrangementList.jsp1 Lines834 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/pendingcredit/html/BillingArrangementListButtons.jsp2 Lines624 bytes Sep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/pendingcredit/html/PendingCreditList.jsp3 Lines1.6 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/pendingcredit/html/PendingCreditReversalConfirmation.jsp3 Lines1.7 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/pendingcredit/html/PendingCreditReversalDetails.jsp3 Lines1.7 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/pendingcredit/html/PendingCreditSearchButtons.jsp4 Lines659 bytes Sep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/refund/html/RefundInformation.jsp1 Lines1.8 KBSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/refund/html/RefundSearchButtons.jsp4 Lines664 bytesSep 25, 2011 9:12:56 PM v81_0_SP_1_Sandip/webAppRoot/xmlc/amdocs/arClient/writeoff/html/WriteOffInformation.jsp1 Lines1.5 KBSep 25, 2011 9:12:56 PM

Reference Elements
Classpath: C:\EPC\Java\jre1.5.0_12\lib\charsets.jar C:\EPC\Java\jre1.5.0_12\lib\ext\dnsns.jar C:\EPC\Java\jre1.5.0_12\lib\ext\localedata.jar C:\EPC\Java\jre1.5.0_12\lib\ext\sunjce_provider.jar C:\EPC\Java\jre1.5.0_12\lib\ext\sunpkcs11.jar C:\EPC\Java\jre1.5.0_12\lib\jce.jar

Copyright 2007 Fortify Software Inc.

Page 63 of 118

Fortify Security Report


C:\EPC\Java\jre1.5.0_12\lib\jsse.jar C:\EPC\Java\jre1.5.0_12\lib\rt.jar E:\AR Code Scan\Jars E:\AR Code Scan\Jars\com.ibm.ws.admin.client_7.0.0.jar E:\AR Code Scan\Jars\com.ibm.ws.runtime.jar E:\AR Code Scan\Jars\ejbInfra.jar E:\AR Code Scan\Jars\gare_classes.jar E:\AR Code Scan\Jars\gcme_classes.jar E:\AR Code Scan\Jars\gjf_classes.jar E:\AR Code Scan\Jars\gnu-regexp-1.1.4.jar E:\AR Code Scan\Jars\gutl_classes.jar E:\AR Code Scan\Jars\javamake-ant15.jar E:\AR Code Scan\Jars\javamake.jar E:\AR Code Scan\Jars\jtidy.jar E:\AR Code Scan\Jars\ojdbc5.jar E:\AR Code Scan\Jars\resolver.jar E:\AR Code Scan\Jars\serializer.jar E:\AR Code Scan\Jars\uams.jar E:\AR Code Scan\Jars\weblogic.jar E:\AR Code Scan\Jars\wls-api.jar E:\AR Code Scan\Jars\xalan.jar E:\AR Code Scan\Jars\xercesImpl.jar E:\AR Code Scan\Jars\xml-apis.jar E:\AR Code Scan\Jars\xmlc-xerces.jar E:\AR Code Scan\Jars\xmlc.jar E:\AR Code Scan\v81_0_SP_1 E:\AR Code Scan\v81_0_SP_1_Sandip

Libdirs: No libdirs specified during translation

Rulepacks
Valid Rulepacks: Name: Fortify Secure Coding Rules, Core, Annotations Version: 2010.1.0.0015 ID: 14EE50EB-FA1C-4AE8-8B59-39F952E21E3B SKU: RUL13078 Name: Fortify Secure Coding Rules, Core, ColdFusion Version: 2010.1.0.0015 ID: EEA7C678-058E-462A-8A59-AF925F7B7164 SKU: RUL13024 Name: Fortify Secure Coding Rules, Core, C/C++ Version: 2010.1.0.0015 ID: 711E0652-7494-42BE-94B1-DB3799418C7E

Copyright 2007 Fortify Software Inc.

Page 64 of 118

Fortify Security Report


SKU: RUL13001 Name: Fortify Secure Coding Rules, Core, .NET Version: 2010.1.0.0015 ID: D57210E5-E762-4112-97DD-019E61D32D0E SKU: RUL13002 Name: Fortify Secure Coding Rules, Core, Java Version: 2010.1.0.0015 ID: 06A6CC97-8C3F-4E73-9093-3E74C64A2AAF SKU: RUL13003 Name: Fortify Secure Coding Rules, Core, JavaScript Version: 2010.1.0.0015 ID: BD292C4E-4216-4DB8-96C7-9B607BFD9584 SKU: RUL13059 Name: Fortify Secure Coding Rules, Core, PHP Version: 2010.1.0.0015 ID: 343CBB32-087C-4A4E-8BD8-273B5F876069 SKU: RUL13058 Name: Fortify Secure Coding Rules, Core, Python Version: 2010.1.0.0015 ID: FD15CBE4-E059-4CBB-914E-546BDCEB422B SKU: RUL13083 Name: Fortify Secure Coding Rules, Core, SQL Version: 2010.1.0.0015 ID: 6494160B-E1DB-41F5-9840-2B1609EE7649 SKU: RUL13004 Name: Fortify Secure Coding Rules, Core, Classic ASP, VBScript, and VB6 Version: 2010.1.0.0015 ID: 1D426B6F-8D33-4AD6-BBCE-237ABAFAB924 SKU: RUL13060 Name: Fortify Secure Coding Rules, Extended, Configuration Version: 2010.1.0.0015 ID: CD6959FC-0C37-45BE-9637-BAA43C3A4D56 SKU: RUL13005 Name: Fortify Secure Coding Rules, Extended, Content Version: 2010.1.0.0015 ID: 9C48678C-09B6-474D-B86D-97EE94D38F17 SKU: RUL13067 Name: Fortify Secure Coding Rules, Extended, C/C++ Version: 2010.1.0.0015 ID: BD4641AD-A6FF-4401-A8F4-6873272F2748 SKU: RUL13006 Copyright 2007 Fortify Software Inc. Page 65 of 118

Fortify Security Report


Name: Fortify Secure Coding Rules, Extended, .NET Version: 2010.1.0.0015 ID: 557BCC56-CD42-43A7-B4FE-CDD00D58577E SKU: RUL13027 Name: Fortify Secure Coding Rules, Extended, Java Version: 2010.1.0.0015 ID: AAAC0B10-79E7-4FE5-9921-F4903A79D317 SKU: RUL13007 Name: Fortify Secure Coding Rules, Extended, JSP Version: 2010.1.0.0015 ID: 00403342-15D0-48C9-8E67-4B1CFBDEFCD2 SKU: RUL13026 Name: Fortify Secure Coding Rules, Extended, SQL Version: 2010.1.0.0015 ID: 4BC5B2FA-C209-4DBC-9C3E-1D3EEFAF135A SKU: RUL13025

Properties
awt.toolkit=sun.awt.windows.WToolkit com.fortify.AuthenticationKey=C:\Documents and Settings\sandipkumars\Local Settings\Application Data/Fortify/config/tools com.fortify.Core=D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core com.fortify.InstallRoot=D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2 com.fortify.InstallationUserName=sandipkumars com.fortify.SCAExecutablePath=D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\bin com.fortify.TotalPhysicalMemory=8578936832 com.fortify.VS.RequireASPPrecompilation=true com.fortify.WorkingDirectory=C:\Documents and Settings\sandipkumars\Local Settings\Application Data/Fortify com.fortify.locale=en com.fortify.rules.SkipRulePacks= com.fortify.sca.AllocationWebServiceURL=https://per-use.fortify.com/services/GasAllocationService com.fortify.sca.BuildID=garfe_810_SP1 com.fortify.sca.BundleControlflowIssues=true com.fortify.sca.CustomRulesDir=D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\config\customrules com.fortify.sca.DaemonCompilers=com.fortify.sca.util.compilers.GppCompiler,com.fortify.sca.util.compilers.GccCompiler,com.f ortify.sca.util.compilers.AppleGppCompiler,com.fortify.sca.util.compilers.AppleGccCompiler,com.fortify.sca.util.compilers.Micr osoftCompiler,com.fortify.sca.util.compilers.MicrosoftLinker,com.fortify.sca.util.compilers.LdCompiler,com.fortify.sca.util.com pilers.ArUtil,com.fortify.sca.util.compilers.SunCCompiler,com.fortify.sca.util.compilers.SunCppCompiler,com.fortify.sca.util.co mpilers.IntelCompiler,com.fortify.sca.util.compilers.ExternalCppAdapter com.fortify.sca.DeadCodeFilter=true com.fortify.sca.DeadCodeIgnoreTrivialPredicates=true com.fortify.sca.DefaultAnalyzers=semantic:dataflow:controlflow:nullptr:configuration:content:structural:buffer com.fortify.sca.DefaultFileTypes=java,jsp,jspx,sql,cfm,php,pks,pkh,pkb,xml,config,properties,dll,exe,inc,asp,vbscript,js,ini,bas,cl s,vbs,frm,ctl,html,htm,xsd,wsdd,xmi com.fortify.sca.DefaultJarsDirs=default_jars

Copyright 2007 Fortify Software Inc.

Page 66 of 118

Fortify Security Report


com.fortify.sca.DefaultRulesDir=D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\config\rules com.fortify.sca.DisableDeadCodeElimination=false com.fortify.sca.DisableFunctionPointers=false com.fortify.sca.DisableGlobals=false com.fortify.sca.DisplayProgress=true com.fortify.sca.FVDLAllowUnifiedVulnerability=true com.fortify.sca.FVDLDisableDescriptions=false com.fortify.sca.FVDLDisableProgramData=false com.fortify.sca.FVDLDisableSnippets=false com.fortify.sca.FVDLStylesheet=D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core/resources/sca/fvdl2html.xsl com.fortify.sca.IndirectCallGraphBuilders=com.fortify.sca.analyzer.callgraph.VirtualCGBuilder,com.fortify.sca.analyzer.callgrap h.J2EEIndirectCGBuilder,com.fortify.sca.analyzer.callgraph.JNICGBuilder,com.fortify.sca.analyzer.callgraph.StoredProcedureRe solver,com.fortify.sca.analyzer.callgraph.JavaWSCGBuilder,com.fortify.sca.analyzer.callgraph.StrutsCGBuilder,com.fortify.sca.a nalyzer.callgraph.DotNetWSCGBuilder,com.fortify.sca.analyzer.callgraph.SqlServerSPResolver com.fortify.sca.JVMArgs=-XX:SoftRefLRUPolicyMSPerMB=100 -Xss1M -Xmx600M -Xms300M -client com.fortify.sca.JdkVersion=1.4 com.fortify.sca.LowSeverityCutoff=1.0 com.fortify.sca.MachineOutputMode= com.fortify.sca.NoNestedOutTagOutput=org.apache.taglibs.standard.tag.rt.core.RemoveTag,org.apache.taglibs.standard.tag.rt.cor e.SetTag com.fortify.sca.PID=17992 com.fortify.sca.PidFile=C:\DOCUME~1\SANDIP~1\LOCALS~1\Temp\7\PID14004.tmp com.fortify.sca.ProjectRoot=D:\Temporary\Fortify com.fortify.sca.Renderer=fpr com.fortify.sca.ResultsFile=C:\Documents and Settings\sandipkumars\Local Settings\Application Data/Fortify\Eclipse.Plugin5.2\garfe_810_SP1\garfe_810_SP1Scan.fpr com.fortify.sca.SolverTimeout=15 com.fortify.sca.SuppressLowSeverity=true com.fortify.sca.Tank=D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\config\tank.dat#83274#1#D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\config\tank.a17992#376374#1#D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\config\tank.b17992#1294925#1# com.fortify.sca.compilers.ant=com.fortify.sca.util.compilers.AntAdapter com.fortify.sca.compilers.ar=com.fortify.sca.util.compilers.ArUtil com.fortify.sca.compilers.armcc=com.fortify.sca.util.compilers.ArmCcCompiler com.fortify.sca.compilers.armcpp=com.fortify.sca.util.compilers.ArmCppCompiler com.fortify.sca.compilers.c++=com.fortify.sca.util.compilers.GppCompiler com.fortify.sca.compilers.cc=com.fortify.sca.util.compilers.GccCompiler com.fortify.sca.compilers.cl=com.fortify.sca.util.compilers.MicrosoftCompiler com.fortify.sca.compilers.clearmake=com.fortify.sca.util.compilers.TouchlessCompiler com.fortify.sca.compilers.devenv=com.fortify.sca.util.compilers.DevenvNetAdapter com.fortify.sca.compilers.fortify=com.fortify.sca.util.compilers.FortifyCompiler com.fortify.sca.compilers.g++=com.fortify.sca.util.compilers.GppCompiler com.fortify.sca.compilers.g++-*=com.fortify.sca.util.compilers.GppCompiler com.fortify.sca.compilers.g++2*=com.fortify.sca.util.compilers.GppCompiler com.fortify.sca.compilers.g++3*=com.fortify.sca.util.compilers.GppCompiler com.fortify.sca.compilers.g++4*=com.fortify.sca.util.compilers.GppCompiler com.fortify.sca.compilers.gcc=com.fortify.sca.util.compilers.GccCompiler com.fortify.sca.compilers.gcc-*=com.fortify.sca.util.compilers.GccCompiler com.fortify.sca.compilers.gcc2*=com.fortify.sca.util.compilers.GccCompiler com.fortify.sca.compilers.gcc3*=com.fortify.sca.util.compilers.GccCompiler com.fortify.sca.compilers.gcc4*=com.fortify.sca.util.compilers.GccCompiler Copyright 2007 Fortify Software Inc. Page 67 of 118

Fortify Security Report


com.fortify.sca.compilers.gmake=com.fortify.sca.util.compilers.TouchlessCompiler com.fortify.sca.compilers.icc=com.fortify.sca.util.compilers.IntelCompiler com.fortify.sca.compilers.icpc=com.fortify.sca.util.compilers.IntelCompiler com.fortify.sca.compilers.jam=com.fortify.sca.util.compilers.TouchlessCompiler com.fortify.sca.compilers.javac=com.fortify.sca.util.compilers.JavacCompiler com.fortify.sca.compilers.ld=com.fortify.sca.util.compilers.LdCompiler com.fortify.sca.compilers.link=com.fortify.sca.util.compilers.MicrosoftLinker com.fortify.sca.compilers.make=com.fortify.sca.util.compilers.TouchlessCompiler com.fortify.sca.compilers.msdev=com.fortify.sca.util.compilers.DevenvAdapter com.fortify.sca.compilers.nmake=com.fortify.sca.util.compilers.TouchlessCompiler com.fortify.sca.compilers.tcc=com.fortify.sca.util.compilers.ArmCcCompiler com.fortify.sca.compilers.tcpp=com.fortify.sca.util.compilers.ArmCppCompiler com.fortify.sca.compilers.touchless=com.fortify.sca.util.compilers.FortifyCompiler com.fortify.sca.cpfe.command=D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core/private-bin/sca/cpfe.exe com.fortify.sca.cpfe.file.option=--gen_c_file_name com.fortify.sca.cpfe.options=--remove_unneeded_entities --suppress_vtbl -tused com.fortify.sca.cpfe.options=--remove_unneeded_entities --suppress_vtbl -tused com.fortify.sca.env.exesearchpath=D:\eclipse35;C:/EPC/Java/jre1.5.0_12/bin/client;C:/EPC/Java/jre1.5.0_12/bin;E:\Fortify360\bi n;D:\Ruby192\bin;O:\ora1106w\BIN;O:\ora1106w;D:\Program Files (x86)\Perl\site\bin;D:\Program Files (x86)\Perl\bin;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\bin;D:\Accounts\ATT_Titan2\soft\Java\jdk1.6.0_17\bin;C:\Program Files\HP\NCU;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\Program Files (x86)\Fortify Software\Fortify Manager 5.0\bin;C:\Program Files\System Center Operations Manager 2007\;D:\Python25;D:\Program Files (x86)\Graphviz2.20\Bin;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;D:\Accounts\ATT_Titan2\bb\cord9software\v101_4\ant\bin;D:\Program Files (x86)\Cppcheck\;D:\Accounts\ATT_Titan2\soft\AmdocsProcessManager\bin;D:\jruby1.5.2\bin;%JAVA_HOME%;C:\EPC\Java\jdk1.5.0_12\bin; com.fortify.sca.fileextensions.asp=ASP com.fortify.sca.fileextensions.bas=VB6 com.fortify.sca.fileextensions.cfm=CFML com.fortify.sca.fileextensions.cls=VB6 com.fortify.sca.fileextensions.config=XML com.fortify.sca.fileextensions.ctl=VB6 com.fortify.sca.fileextensions.dll=MSIL com.fortify.sca.fileextensions.exe=MSIL com.fortify.sca.fileextensions.frm=VB6 com.fortify.sca.fileextensions.htm=HTML com.fortify.sca.fileextensions.html=HTML com.fortify.sca.fileextensions.ini=JAVA_PROPERTIES com.fortify.sca.fileextensions.java=JAVA com.fortify.sca.fileextensions.js=JAVASCRIPT com.fortify.sca.fileextensions.jsp=JSP com.fortify.sca.fileextensions.jspx=JSP com.fortify.sca.fileextensions.mdl=MSIL com.fortify.sca.fileextensions.mod=MSIL com.fortify.sca.fileextensions.php=PHP com.fortify.sca.fileextensions.pkb=PLSQL com.fortify.sca.fileextensions.pkh=PLSQL com.fortify.sca.fileextensions.pks=PLSQL com.fortify.sca.fileextensions.properties=JAVA_PROPERTIES Copyright 2007 Fortify Software Inc. Page 68 of 118

Fortify Security Report


com.fortify.sca.fileextensions.sql=TSQL com.fortify.sca.fileextensions.vbs=VB6 com.fortify.sca.fileextensions.vbscript=VBSCRIPT com.fortify.sca.fileextensions.wsdd=XML com.fortify.sca.fileextensions.xmi=XML com.fortify.sca.fileextensions.xml=XML com.fortify.sca.fileextensions.xsd=XML dotnet.install.dir=C:\WINDOWS\Microsoft.NET\Framework dotnet.sdk.v20.install.dir=C:\Program Files (x86)\Microsoft Visual Studio 8\SDK\v2.0 dotnet.v30.referenceAssemblies=C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\v3.0 dotnet.v35.referenceAssemblies=C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\v3.5 file.encoding=Cp1252 file.encoding.pkg=sun.io file.separator=\ java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment java.awt.printerjob=sun.awt.windows.WPrinterJob java.class.path=D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\config\languages;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\resources;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\activation-1.1.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\ant_1.6.0.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\awb.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\axiom-api-1.2.2.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\axiom-dom-1.2.2.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\axiom-impl1.2.2.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\axis2-adb-1.1.1.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\axis2-adb-codegen-1.1.1.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\axis2-codegen-1.1.1.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\axis2-java2wsdl1.1.1.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\axis2-jaxbri-1.1.1.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\axis2-jibx-1.1.1.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\axis2kernel-1.1.1.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\axis2-saaj-1.1.1.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\axis2-soapmonitor-1.1.1.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\axis2-spring-1.1.1.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\axis2-tools1.1.1.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\axis2-xmlbeans-1.1.1.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\bcel-5.1.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\bcprov-jdk14-133.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\bugtracker.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\castor-1.1.2.1-commons.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\castor-1.1.2.1-xml.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\clearquest-bugtracker.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\common.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\common13.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\common15.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\commons-cli-1.1.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\commons-codec-1.3.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\commons-fileupload-1.1.1.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\commonshttpclient-3.0.1.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\commons-httpclient-3.1.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\commons-io-1.2.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\commons-lang-2.4.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\commons-logging1.1.1.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\eclipse.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\fortify-sca.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\googlecollect-20080530.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\itext-2.0.6.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\iTextAsian.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\jakarta-oro-2.0.8.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\jargs-0.5.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\jasper2_jasper-compiler.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\jasper2_jasper-runtime.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\jaxbapi.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\jaxb-impl.jar;D:\Program Files (x86)\Fortify Copyright 2007 Fortify Software Inc. Page 69 of 118

Fortify Security Report


Software\Fortify SCA 5.2\Core\lib\jaxb-libs.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\jcommon1.0.10.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\jfreechart-1.0.6.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\jsr173_1.0_api.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\log4j1.2.15.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\mail-1.4.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\migrate_audit_data.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\minijdd.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\model.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\model15.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\plugin-common.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\relaxngDatatype.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\rhino1.6r7.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\saxon8.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\sca-frontend.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\sca-propertyupgrade.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\sjsxp.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\sourceanalyzer.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\tomcat5.5.15_commons-el.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\tomcat-5.5.15_commons-loggingapi.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\tomcat-5.5.15_jsp-api.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\tomcat-5.5.15_servlet-api.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\wsdl4j-1.6.2.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\xalan.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\xbean-2.2.0.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\xercesImpl-2.6.2.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\xmlmergefull.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\xmlParserAPIs-2.6.2.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\XmlSchema-1.2.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\Core\lib\xsdlib.jar java.class.version=49.0 java.endorsed.dirs=D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\jre\lib\endorsed java.ext.dirs=D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\jre\lib\ext java.home=D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\jre java.io.tmpdir=C:\DOCUME~1\SANDIP~1\LOCALS~1\Temp\7\ java.library.path=D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\jre\bin;.;C:\WINDOWS\system32;C:\Documents and Settings\sandipkumars\WINDOWS;C:/EPC/Java/jre1.5.0_12/bin/client;C:/EPC/Java/jre1.5.0_12/bin;E:\Fortify360\bin;D:\Ruby1 92\bin;O:\ora1106w\BIN;O:\ora1106w;D:\Program Files (x86)\Perl\site\bin;D:\Program Files (x86)\Perl\bin;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\bin;D:\Accounts\ATT_Titan2\soft\Java\jdk1.6.0_17\bin;C:\Program Files\HP\NCU;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\Program Files (x86)\Fortify Software\Fortify Manager 5.0\bin;C:\Program Files\System Center Operations Manager 2007\;D:\Python25;D:\Program Files (x86)\Graphviz2.20\Bin;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;D:\Accounts\ATT_Titan2\bb\cord9software\v101_4\ant\bin;D:\Program Files (x86)\Cppcheck\;D:\Accounts\ATT_Titan2\soft\AmdocsProcessManager\bin;D:\jruby1.5.2\bin;%JAVA_HOME%;C:\EPC\Java\jdk1.5.0_12\bin; java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition java.runtime.version=1.5.0_16-b02 java.specification.name=Java Platform API Specification java.specification.vendor=Sun Microsystems Inc. java.specification.version=1.5 java.vendor=Sun Microsystems Inc. java.vendor.url=http://java.sun.com/ java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi java.version=1.5.0_16 java.vm.info=mixed mode java.vm.name=Java HotSpot(TM) Client VM java.vm.specification.name=Java Virtual Machine Specification java.vm.specification.vendor=Sun Microsystems Inc. Copyright 2007 Fortify Software Inc. Page 70 of 118

Fortify Security Report


java.vm.specification.version=1.0 java.vm.vendor=Sun Microsystems Inc. java.vm.version=1.5.0_16-b02 line.separator= os.arch=x86 os.name=Windows 2003 os.version=5.2 path.separator=; stderr.isatty=false stdout.isatty=false sun.arch.data.model=32 sun.boot.class.path=D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\jre\lib\rt.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\jre\lib\i18n.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\jre\lib\sunrsasign.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\jre\lib\jsse.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\jre\lib\jce.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\jre\lib\charsets.jar;D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\jre\classes sun.boot.library.path=D:\Program Files (x86)\Fortify Software\Fortify SCA 5.2\jre\bin sun.cpu.endian=little sun.cpu.isalist=pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86 sun.desktop=windows sun.io.unicode.encoding=UnicodeLittle sun.java.launcher=SUN_STANDARD sun.jnu.encoding=Cp1252 sun.management.compiler=HotSpot Client Compiler sun.os.patch.level=Service Pack 2 user.country=US user.dir=D:\eclipse35 user.home=C:\Documents and Settings\sandipkumars user.language=en user.name=sandipkumars user.timezone=GMT-06:00 user.variant= vs.80.dotnet.clr.version=v2.0.50727 vs.80.dotnet.install.dir=D:\Program Files (x86)\Common7\IDE vs.90.dotnet.clr.version=v2.0.50727 vs.90.dotnet.install.dir=D:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE win32.LocalAppdata=C:\Documents and Settings\sandipkumars\Local Settings\Application Data

Commandline Arguments
-pid-file C:\DOCUME~1\SANDIP~1\LOCALS~1\Temp\7\PID14004.tmp -b garfe_810_SP1 -scan -machine-output -format fpr -f

Copyright 2007 Fortify Software Inc.

Page 71 of 118

Fortify Security Report


C:\Documents and Settings\sandipkumars\Local Settings\Application Data/Fortify\Eclipse.Plugin5.2\garfe_810_SP1\garfe_810_SP1Scan.fpr

Warnings
[1001] Unexpected exception while parsing file RefundPaymentMain_jsp.java [1001] Unexpected exception while parsing file DebitQueriesMain_jsp.java [1001] Unexpected exception while parsing file PendingCreditActionsMain_jsp.java [1001] Unexpected exception while parsing file CreditActionsMain_jsp.java [1001] Unexpected exception while parsing file WriteOffActionsMain_jsp.java [1001] Unexpected exception while parsing file DirectDebitQueriesMain_jsp.java [1001] Unexpected exception while parsing file DirectDebitActionsMain_jsp.java [1001] Unexpected exception while parsing file DebitActionsMain_jsp.java [1001] Unexpected exception while parsing file DepositQueriesMain_jsp.java [1001] Unexpected exception while parsing file DepositActionsMain_jsp.java [1001] Unexpected exception while parsing file PendingCreditQueriesMain_jsp.java [1001] Unexpected exception while parsing file AccountStatementMain_jsp.java [1001] Unexpected exception while parsing file PaymentActionsMain_jsp.java [1001] Unexpected exception while parsing file CreditNoteQueriesMain_jsp.java [1001] Unexpected exception while parsing file DisputeQueriesMain_jsp.java [1001] Unexpected exception while parsing file BOHActionsMain_jsp.java [1001] Unexpected exception while parsing file PaymentCreateMain_jsp.java [1001] Unexpected exception while parsing file Persistency_jsp.java [1001] Unexpected exception while parsing file InvoiceQueriesMain_jsp.java [1001] Unexpected exception while parsing file WriteOffQueriesMain_jsp.java [1001] Unexpected exception while parsing file CreditQueriesMain_jsp.java [1001] Unexpected exception while parsing file RefundQueriesMain_jsp.java [1001] Unexpected exception while parsing file PaymentBackoutMain_jsp.java [1001] Unexpected exception while parsing file DisputeActionsMain_jsp.java [1001] Unexpected exception while parsing file RefundActionsMain_jsp.java [1001] Unexpected exception while parsing file AccountSearchMain_jsp.java [1001] Unexpected exception while parsing file PaymentSearchMain_jsp.java [1001] Unexpected exception while parsing file PaymentQueriesMain_jsp.java [1001] Unexpected exception while parsing file WriteOffQueriesMain_jsp.java [1001] Unexpected exception while parsing file RefundPaymentMain_jsp.java [1001] Unexpected exception while parsing file PaymentBackoutMain_jsp.java [1001] Unexpected exception while parsing file PaymentActionsMain_jsp.java [1001] Unexpected exception while parsing file Persistency_jsp.java [1001] Unexpected exception while parsing file PendingCreditActionsMain_jsp.java [1001] Unexpected exception while parsing file AccountStatementMain_jsp.java [1001] Unexpected exception while parsing file DepositActionsMain_jsp.java [1001] Unexpected exception while parsing file CreditNoteQueriesMain_jsp.java [1001] Unexpected exception while parsing file DisputeActionsMain_jsp.java [1001] Unexpected exception while parsing file WriteOffActionsMain_jsp.java [1001] Unexpected exception while parsing file DebitQueriesMain_jsp.java [1001] Unexpected exception while parsing file PaymentCreateMain_jsp.java [1001] Unexpected exception while parsing file CreditActionsMain_jsp.java [1001] Unexpected exception while parsing file DisputeQueriesMain_jsp.java [1001] Unexpected exception while parsing file AccountSearchMain_jsp.java [1001] Unexpected exception while parsing file PendingCreditQueriesMain_jsp.java

Copyright 2007 Fortify Software Inc.

Page 72 of 118

Fortify Security Report


[1001] Unexpected exception while parsing file BOHActionsMain_jsp.java [1001] Unexpected exception while parsing file DirectDebitQueriesMain_jsp.java [1001] Unexpected exception while parsing file RefundQueriesMain_jsp.java [1001] Unexpected exception while parsing file PaymentSearchMain_jsp.java [1001] Unexpected exception while parsing file DebitActionsMain_jsp.java [1001] Unexpected exception while parsing file DepositQueriesMain_jsp.java [1001] Unexpected exception while parsing file InvoiceQueriesMain_jsp.java [1001] Unexpected exception while parsing file CreditQueriesMain_jsp.java [1001] Unexpected exception while parsing file DirectDebitActionsMain_jsp.java [1001] Unexpected exception while parsing file RefundActionsMain_jsp.java [1001] Unexpected exception while parsing file PaymentQueriesMain_jsp.java [1111] Unable to store build session normally (couldn't rename "D:\Temporary\Fortify\sca5.2\build\garfe_810_SP1.scasession.update" to "D:\Temporary\Fortify\sca5.2\build\garfe_810_SP1.scasession"). Attempting direct write. [1214] Multiple definitions found for class amdocs.arClient.account.delegates.AccountDelegate (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\delegates\AccountDelegate.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\delegates\AccountDelegate.java). [1214] Multiple definitions found for class amdocs.arClient.account.delegates.CMSearchDelegate (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\delegates\CMSearchDelegate.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\delegates\CMSearchDelegate.java). [1214] Multiple definitions found for class amdocs.arClient.account.handlers.AccountLevelDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\handlers\AccountLevelDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\handlers\AccountLevelDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.account.handlers.AccountSearchActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\handlers\AccountSearchActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\handlers\AccountSearchActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.account.handlers.AccountSearchDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\handlers\AccountSearchDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\handlers\AccountSearchDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.account.handlers.AccountSearchFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\handlers\AccountSearchFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\handlers\AccountSearchFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.account.handlers.AccountSearchRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\handlers\AccountSearchRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\handlers\AccountSearchRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.account.handlers.forms.AccountListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\handlers\forms\AccountListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\handlers\forms\AccountListForm.java). [1214] Multiple definitions found for class amdocs.arClient.account.handlers.forms.AccountSearchForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\handlers\forms\AccountSearchForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\handlers\forms\AccountSearchForm.java). [1214] Multiple definitions found for class amdocs.arClient.account.handlers.screens.AccountDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\handlers\screens\AccountDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\handlers\screens\AccountDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.account.handlers.screens.AccountInfoScreenFragment (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\handlers\screens\AccountInfoScreenFragment.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\handlers\screens\AccountInfoScreenFragment.java). [1214] Multiple definitions found for class amdocs.arClient.account.handlers.screens.AccountListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\handlers\screens\AccountListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\handlers\screens\AccountListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.account.handlers.screens.AccountPaymentListScreen (E:\AR Code Copyright 2007 Fortify Software Inc. Page 73 of 118

Fortify Security Report


Scan\v81_0_SP_1\amdocs\arClient\account\handlers\screens\AccountPaymentListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\handlers\screens\AccountPaymentListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.account.handlers.screens.AccountSearchScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\handlers\screens\AccountSearchScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\handlers\screens\AccountSearchScreen.java). [1214] Multiple definitions found for class amdocs.arClient.account.handlers.screens.DefaultAccountActionsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\handlers\screens\DefaultAccountActionsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\handlers\screens\DefaultAccountActionsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.account.handlers.screens.DefaultAccountQueriesScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\handlers\screens\DefaultAccountQueriesScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\handlers\screens\DefaultAccountQueriesScreen.java). [1214] Multiple definitions found for class amdocs.arClient.account.handlers.screens.DefaultAccountScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\handlers\screens\DefaultAccountScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\handlers\screens\DefaultAccountScreen.java). [1214] Multiple definitions found for class amdocs.arClient.account.html.AccountDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\html\AccountDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\html\AccountDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.account.html.AccountInformationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\html\AccountInformationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\html\AccountInformationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.account.html.AccountListButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\html\AccountListButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\html\AccountListButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.account.html.AccountListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\html\AccountListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\html\AccountListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.account.html.AccountSearchButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\html\AccountSearchButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\html\AccountSearchButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.account.html.AccountSearchHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\html\AccountSearchHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\html\AccountSearchHTML.java). [1214] Multiple definitions found for class amdocs.arClient.account.statement.delegates.AccountStatementDelegate (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\statement\delegates\AccountStatementDelegate.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\statement\delegates\AccountStatementDelegate.java). [1214] Multiple definitions found for class amdocs.arClient.account.statement.handlers.AccountStatementActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\statement\handlers\AccountStatementActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\statement\handlers\AccountStatementActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.account.statement.handlers.AccountStatementDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\statement\handlers\AccountStatementDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\statement\handlers\AccountStatementDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.account.statement.handlers.AccountStatementFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\statement\handlers\AccountStatementFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\statement\handlers\AccountStatementFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.account.statement.handlers.AccountStatementRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\statement\handlers\AccountStatementRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\statement\handlers\AccountStatementRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.account.statement.handlers.forms.AccountStatementListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\statement\handlers\forms\AccountStatementListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\statement\handlers\forms\AccountStatementListForm.java). [1214] Multiple definitions found for class amdocs.arClient.account.statement.handlers.screens.AccountStatementListScreen Copyright 2007 Fortify Software Inc. Page 74 of 118

Fortify Security Report


(E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\statement\handlers\screens\AccountStatementListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\statement\handlers\screens\AccountStatementListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.account.statement.handlers.screens.AccountStatementSearchScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\statement\handlers\screens\AccountStatementSearchScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\statement\handlers\screens\AccountStatementSearchScreen.java). [1214] Multiple definitions found for class amdocs.arClient.account.statement.html.AccountStatementListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\statement\html\AccountStatementListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\statement\html\AccountStatementListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.account.statement.html.AccountStatementSearchButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\statement\html\AccountStatementSearchButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\statement\html\AccountStatementSearchButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.account.statement.html.AccountStatementSearchHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\statement\html\AccountStatementSearchHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\statement\html\AccountStatementSearchHTML.java). [1214] Multiple definitions found for class amdocs.arClient.account.statement.util.AccountStatementWebKeys (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\statement\util\AccountStatementWebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\statement\util\AccountStatementWebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.account.statement.util.AccountStatementWebKeys$ImpactIndCodes (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\statement\util\AccountStatementWebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\statement\util\AccountStatementWebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.account.statement.util.PageTotals (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\statement\util\PageTotals.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\statement\util\PageTotals.java). [1214] Multiple definitions found for class amdocs.arClient.account.statement.util.TotalsForAllPages (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\statement\util\TotalsForAllPages.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\statement\util\TotalsForAllPages.java). [1214] Multiple definitions found for class amdocs.arClient.account.util.AccountWebKeys (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\account\util\AccountWebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\account\util\AccountWebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.boh.delegates.BOHDelegate (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\boh\delegates\BOHDelegate.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\boh\delegates\BOHDelegate.java). [1214] Multiple definitions found for class amdocs.arClient.boh.handlers.BOHActionsActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\boh\handlers\BOHActionsActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\boh\handlers\BOHActionsActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.boh.handlers.BOHActionsDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\boh\handlers\BOHActionsDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\boh\handlers\BOHActionsDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.boh.handlers.BOHActionsFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\boh\handlers\BOHActionsFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\boh\handlers\BOHActionsFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.boh.handlers.BOHActionsRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\boh\handlers\BOHActionsRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\boh\handlers\BOHActionsRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.boh.handlers.forms.BOHTreeForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\boh\handlers\forms\BOHTreeForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\boh\handlers\forms\BOHTreeForm.java). [1214] Multiple definitions found for class amdocs.arClient.boh.handlers.screens.BOHTreeScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\boh\handlers\screens\BOHTreeScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\boh\handlers\screens\BOHTreeScreen.java). Copyright 2007 Fortify Software Inc. Page 75 of 118

Fortify Security Report


[1214] Multiple definitions found for class amdocs.arClient.boh.html.BOHTreeHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\boh\html\BOHTreeHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\boh\html\BOHTreeHTML.java). [1214] Multiple definitions found for class amdocs.arClient.boh.util.BOHWebKeys (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\boh\util\BOHWebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\boh\util\BOHWebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.credit.delegates.CreditDelegate (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\delegates\CreditDelegate.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\delegates\CreditDelegate.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.CreditActionsActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\CreditActionsActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\CreditActionsActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.CreditActionsDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\CreditActionsDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\CreditActionsDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.CreditActionsFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\CreditActionsFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\CreditActionsFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.CreditActionsRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\CreditActionsRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\CreditActionsRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.CreditNoteQueriesActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\CreditNoteQueriesActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\CreditNoteQueriesActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.CreditNoteQueriesDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\CreditNoteQueriesDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\CreditNoteQueriesDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.CreditNoteQueriesFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\CreditNoteQueriesFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\CreditNoteQueriesFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.CreditNoteQueriesRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\CreditNoteQueriesRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\CreditNoteQueriesRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.CreditQueriesActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\CreditQueriesActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\CreditQueriesActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.CreditQueriesDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\CreditQueriesDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\CreditQueriesDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.CreditQueriesFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\CreditQueriesFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\CreditQueriesFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.CreditQueriesRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\CreditQueriesRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\CreditQueriesRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.forms.BillingArrangementListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\forms\BillingArrangementListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\forms\BillingArrangementListForm.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.forms.CreditAllocationDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\forms\CreditAllocationDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\forms\CreditAllocationDetailsForm.java). Copyright 2007 Fortify Software Inc. Page 76 of 118

Fortify Security Report


[1214] Multiple definitions found for class amdocs.arClient.credit.handlers.forms.CreditAllocationListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\forms\CreditAllocationListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\forms\CreditAllocationListForm.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.forms.CreditDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\forms\CreditDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\forms\CreditDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.forms.CreditListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\forms\CreditListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\forms\CreditListForm.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.forms.CreditNoteDeleteForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\forms\CreditNoteDeleteForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\forms\CreditNoteDeleteForm.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.forms.CreditNoteListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\forms\CreditNoteListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\forms\CreditNoteListForm.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.forms.CreditNoteSearchForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\forms\CreditNoteSearchForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\forms\CreditNoteSearchForm.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.forms.CreditNoteSummaryListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\forms\CreditNoteSummaryListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\forms\CreditNoteSummaryListForm.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.forms.CreditNoteViewDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\forms\CreditNoteViewDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\forms\CreditNoteViewDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.forms.CreditReversalDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\forms\CreditReversalDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\forms\CreditReversalDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.forms.CreditSearchForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\forms\CreditSearchForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\forms\CreditSearchForm.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.forms.PendingCreditDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\forms\PendingCreditDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\forms\PendingCreditDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.BillingArrangementListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\BillingArrangementListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\BillingArrangementListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditAllocationConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditAllocationConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditAllocationConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditAllocationDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditAllocationDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditAllocationDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditAllocationDetailsScreen$BillingArrangeItem (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditAllocationDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditAllocationDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditAllocationDetailsScreen$InvoiceItem (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditAllocationDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditAllocationDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditAllocationListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditAllocationListScreen.java and E:\AR Code Copyright 2007 Fortify Software Inc. Page 77 of 118

Fortify Security Report


Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditAllocationListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditCreateAllocationConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditCreateAllocationConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditCreateAllocationConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditInfoScreenFragment (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditInfoScreenFragment.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditInfoScreenFragment.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditNoteDeleteConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditNoteDeleteConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditNoteDeleteConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditNoteDeleteDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditNoteDeleteDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditNoteDeleteDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditNoteFinalizeConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditNoteFinalizeConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditNoteFinalizeConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditNoteFinalizeDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditNoteFinalizeDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditNoteFinalizeDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditNoteInfoScreenFragment (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditNoteInfoScreenFragment.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditNoteInfoScreenFragment.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditNoteListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditNoteListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditNoteListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditNoteSearchScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditNoteSearchScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditNoteSearchScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditNoteSummaryListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditNoteSummaryListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditNoteSummaryListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditNoteViewConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditNoteViewConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditNoteViewConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditNoteViewDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditNoteViewDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditNoteViewDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditReversalConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditReversalConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditReversalConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditReversalDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditReversalDetailsScreen.java and E:\AR Code Copyright 2007 Fortify Software Inc. Page 78 of 118

Fortify Security Report


Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditReversalDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.CreditSearchScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\CreditSearchScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\CreditSearchScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.PendingCreditConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\PendingCreditConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\PendingCreditConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.handlers.screens.PendingCreditDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\handlers\screens\PendingCreditDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\handlers\screens\PendingCreditDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.BillingArrangementListButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\BillingArrangementListButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\BillingArrangementListButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.BillingArrangementListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\BillingArrangementListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\BillingArrangementListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreateCreditButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreateCreditButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreateCreditButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreatePendingCreditButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreatePendingCreditButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreatePendingCreditButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditAllocationConfirmationButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditAllocationConfirmationButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditAllocationConfirmationButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditAllocationConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditAllocationConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditAllocationConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditAllocationDetailsButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditAllocationDetailsButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditAllocationDetailsButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditAllocationDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditAllocationDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditAllocationDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditAllocationListButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditAllocationListButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditAllocationListButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditAllocationListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditAllocationListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditAllocationListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditCreateAllocationConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditCreateAllocationConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditCreateAllocationConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditInformationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditInformationHTML.java and E:\AR Code Copyright 2007 Fortify Software Inc. Page 79 of 118

Fortify Security Report


Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditInformationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditNoteDeleteConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditNoteDeleteConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditNoteDeleteConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditNoteDeleteDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditNoteDeleteDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditNoteDeleteDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditNoteDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditNoteDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditNoteDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditNoteFinalizeConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditNoteFinalizeConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditNoteFinalizeConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditNoteInformationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditNoteInformationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditNoteInformationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditNoteListButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditNoteListButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditNoteListButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditNoteListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditNoteListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditNoteListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditNoteSearchButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditNoteSearchButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditNoteSearchButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditNoteSearchHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditNoteSearchHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditNoteSearchHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditNoteSummaryListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditNoteSummaryListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditNoteSummaryListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditNoteViewConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditNoteViewConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditNoteViewConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditNoteViewDetailsButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditNoteViewDetailsButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditNoteViewDetailsButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditNoteViewDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditNoteViewDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditNoteViewDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditReversalConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditReversalConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditReversalConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditReversalDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditReversalDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditReversalDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditSearchButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditSearchButtonsHTML.java and E:\AR Code Copyright 2007 Fortify Software Inc. Page 80 of 118

Fortify Security Report


Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditSearchButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.CreditSearchHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\CreditSearchHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\CreditSearchHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.PendingCreditConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\PendingCreditConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\PendingCreditConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.html.PendingCreditDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\html\PendingCreditDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\html\PendingCreditDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.credit.util.CreditWebKeys (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\credit\util\CreditWebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\credit\util\CreditWebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.debit.delegates.DebitDelegate (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\delegates\DebitDelegate.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\delegates\DebitDelegate.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.DebitActionsActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\DebitActionsActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\DebitActionsActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.DebitActionsDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\DebitActionsDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\DebitActionsDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.DebitActionsFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\DebitActionsFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\DebitActionsFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.DebitActionsRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\DebitActionsRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\DebitActionsRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.DebitQueriesActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\DebitQueriesActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\DebitQueriesActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.DebitQueriesDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\DebitQueriesDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\DebitQueriesDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.DebitQueriesFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\DebitQueriesFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\DebitQueriesFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.DebitQueriesRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\DebitQueriesRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\DebitQueriesRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.forms.ChargeLevelCreditDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\forms\ChargeLevelCreditDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\forms\ChargeLevelCreditDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.forms.ChargeLevelDisputeDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\forms\ChargeLevelDisputeDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\forms\ChargeLevelDisputeDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.forms.ChargeLevelPendingCreditDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\forms\ChargeLevelPendingCreditDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\forms\ChargeLevelPendingCreditDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.forms.CreditNoteDebitListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\forms\CreditNoteDebitListForm.java and E:\AR Code Copyright 2007 Fortify Software Inc. Page 81 of 118

Fortify Security Report


Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\forms\CreditNoteDebitListForm.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.forms.DebitDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\forms\DebitDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\forms\DebitDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.forms.DebitListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\forms\DebitListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\forms\DebitListForm.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.forms.DebitSearchForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\forms\DebitSearchForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\forms\DebitSearchForm.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.screens.ChargeLevelCreditAllocationConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\screens\ChargeLevelCreditAllocationConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\screens\ChargeLevelCreditAllocationConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.screens.ChargeLevelCreditConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\screens\ChargeLevelCreditConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\screens\ChargeLevelCreditConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.screens.ChargeLevelCreditDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\screens\ChargeLevelCreditDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\screens\ChargeLevelCreditDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.screens.ChargeLevelDisputeConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\screens\ChargeLevelDisputeConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\screens\ChargeLevelDisputeConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.screens.ChargeLevelDisputeDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\screens\ChargeLevelDisputeDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\screens\ChargeLevelDisputeDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.screens.ChargeLevelPendingCreditConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\screens\ChargeLevelPendingCreditConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\screens\ChargeLevelPendingCreditConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.screens.ChargeLevelPendingCreditDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\screens\ChargeLevelPendingCreditDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\screens\ChargeLevelPendingCreditDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.screens.CreditNoteListDebitScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\screens\CreditNoteListDebitScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\screens\CreditNoteListDebitScreen.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.screens.DebitConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\screens\DebitConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\screens\DebitConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.screens.DebitDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\screens\DebitDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\screens\DebitDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.screens.DebitInfoScreenFragment (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\screens\DebitInfoScreenFragment.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\screens\DebitInfoScreenFragment.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.screens.DebitListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\screens\DebitListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\screens\DebitListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.debit.handlers.screens.DebitSearchScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\handlers\screens\DebitSearchScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\handlers\screens\DebitSearchScreen.java). Copyright 2007 Fortify Software Inc. Page 82 of 118

Fortify Security Report


[1214] Multiple definitions found for class amdocs.arClient.debit.html.ChargeLevelCreditAllocationConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\html\ChargeLevelCreditAllocationConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\html\ChargeLevelCreditAllocationConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.debit.html.ChargeLevelCreditConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\html\ChargeLevelCreditConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\html\ChargeLevelCreditConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.debit.html.ChargeLevelCreditDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\html\ChargeLevelCreditDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\html\ChargeLevelCreditDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.debit.html.ChargeLevelDisputeConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\html\ChargeLevelDisputeConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\html\ChargeLevelDisputeConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.debit.html.ChargeLevelDisputeDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\html\ChargeLevelDisputeDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\html\ChargeLevelDisputeDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.debit.html.ChargeLevelPendingCreditConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\html\ChargeLevelPendingCreditConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\html\ChargeLevelPendingCreditConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.debit.html.ChargeLevelPendingCreditDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\html\ChargeLevelPendingCreditDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\html\ChargeLevelPendingCreditDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.debit.html.DebitConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\html\DebitConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\html\DebitConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.debit.html.DebitDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\html\DebitDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\html\DebitDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.debit.html.DebitInformationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\html\DebitInformationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\html\DebitInformationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.debit.html.DebitListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\html\DebitListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\html\DebitListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.debit.html.DebitSearchButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\html\DebitSearchButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\html\DebitSearchButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.debit.html.DebitSearchHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\html\DebitSearchHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\html\DebitSearchHTML.java). [1214] Multiple definitions found for class amdocs.arClient.debit.util.DebitQueriesWebKeys (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\util\DebitQueriesWebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\util\DebitQueriesWebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.debit.util.DebitWebKeys (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\debit\util\DebitWebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\debit\util\DebitWebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.delegates.DepositDelegate (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\delegates\DepositDelegate.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\delegates\DepositDelegate.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.DepositActionsActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\DepositActionsActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\DepositActionsActionHandler.java). Copyright 2007 Fortify Software Inc. Page 83 of 118

Fortify Security Report


[1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.DepositActionsDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\DepositActionsDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\DepositActionsDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.DepositActionsFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\DepositActionsFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\DepositActionsFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.DepositActionsRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\DepositActionsRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\DepositActionsRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.DepositQueriesActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\DepositQueriesActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\DepositQueriesActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.DepositQueriesDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\DepositQueriesDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\DepositQueriesDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.DepositQueriesFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\DepositQueriesFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\DepositQueriesFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.DepositQueriesRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\DepositQueriesRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\DepositQueriesRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.forms.BillingArrangementListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\forms\BillingArrangementListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\forms\BillingArrangementListForm.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.forms.DepositCancelForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\forms\DepositCancelForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\forms\DepositCancelForm.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.forms.DepositDecreaseForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\forms\DepositDecreaseForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\forms\DepositDecreaseForm.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.forms.DepositDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\forms\DepositDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\forms\DepositDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.forms.DepositIncreaseForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\forms\DepositIncreaseForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\forms\DepositIncreaseForm.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.forms.DepositListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\forms\DepositListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\forms\DepositListForm.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.forms.DepositReleaseForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\forms\DepositReleaseForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\forms\DepositReleaseForm.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.forms.DepositSearchForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\forms\DepositSearchForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\forms\DepositSearchForm.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.screens.BillingArrangementListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\screens\BillingArrangementListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\screens\BillingArrangementListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.screens.DepositCancelDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\screens\DepositCancelDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\screens\DepositCancelDetailsScreen.java). Copyright 2007 Fortify Software Inc. Page 84 of 118

Fortify Security Report


[1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.screens.DepositConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\screens\DepositConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\screens\DepositConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.screens.DepositDecreaseScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\screens\DepositDecreaseScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\screens\DepositDecreaseScreen.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.screens.DepositDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\screens\DepositDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\screens\DepositDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.screens.DepositIncreaseScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\screens\DepositIncreaseScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\screens\DepositIncreaseScreen.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.screens.DepositListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\screens\DepositListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\screens\DepositListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.screens.DepositReleaseDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\screens\DepositReleaseDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\screens\DepositReleaseDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.screens.DepositSearchScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\screens\DepositSearchScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\screens\DepositSearchScreen.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.handlers.screens.DepositViewScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\handlers\screens\DepositViewScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\handlers\screens\DepositViewScreen.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.html.BillingArrangementListButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\html\BillingArrangementListButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\html\BillingArrangementListButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.html.BillingArrangementListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\html\BillingArrangementListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\html\BillingArrangementListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.html.CreateDepositButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\html\CreateDepositButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\html\CreateDepositButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.html.DepositCancelButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\html\DepositCancelButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\html\DepositCancelButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.html.DepositCancelHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\html\DepositCancelHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\html\DepositCancelHTML.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.html.DepositConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\html\DepositConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\html\DepositConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.html.DepositDecreaseButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\html\DepositDecreaseButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\html\DepositDecreaseButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.html.DepositDecreaseHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\html\DepositDecreaseHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\html\DepositDecreaseHTML.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.html.DepositDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\html\DepositDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\html\DepositDetailsHTML.java). Copyright 2007 Fortify Software Inc. Page 85 of 118

Fortify Security Report


[1214] Multiple definitions found for class amdocs.arClient.deposit.html.DepositIncreaseButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\html\DepositIncreaseButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\html\DepositIncreaseButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.html.DepositIncreaseHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\html\DepositIncreaseHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\html\DepositIncreaseHTML.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.html.DepositListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\html\DepositListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\html\DepositListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.html.DepositReleaseButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\html\DepositReleaseButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\html\DepositReleaseButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.html.DepositReleaseHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\html\DepositReleaseHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\html\DepositReleaseHTML.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.html.DepositSearchButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\html\DepositSearchButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\html\DepositSearchButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.html.DepositSearchHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\html\DepositSearchHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\html\DepositSearchHTML.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.html.DepositViewHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\html\DepositViewHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\html\DepositViewHTML.java). [1214] Multiple definitions found for class amdocs.arClient.deposit.util.DepositWebKeys (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\deposit\util\DepositWebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\deposit\util\DepositWebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.DirectDebitActionsActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\DirectDebitActionsActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\DirectDebitActionsActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.DirectDebitActionsDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\DirectDebitActionsDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\DirectDebitActionsDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.DirectDebitActionsFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\DirectDebitActionsFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\DirectDebitActionsFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.DirectDebitActionsRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\DirectDebitActionsRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\DirectDebitActionsRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.DirectDebitQueriesActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\DirectDebitQueriesActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\DirectDebitQueriesActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.DirectDebitQueriesDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\DirectDebitQueriesDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\DirectDebitQueriesDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.DirectDebitQueriesFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\DirectDebitQueriesFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\DirectDebitQueriesFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.DirectDebitQueriesRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\DirectDebitQueriesRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\DirectDebitQueriesRenderHandler.java). Copyright 2007 Fortify Software Inc. Page 86 of 118

Fortify Security Report


[1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.forms.DirectDebitDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\forms\DirectDebitDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\forms\DirectDebitDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.forms.DirectDebitListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\forms\DirectDebitListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\forms\DirectDebitListForm.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.forms.DirectDebitSearchForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\forms\DirectDebitSearchForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\forms\DirectDebitSearchForm.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.forms.DirectDebitUpdateDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\forms\DirectDebitUpdateDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\forms\DirectDebitUpdateDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.screens.DirectDebitConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\screens\DirectDebitConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\screens\DirectDebitConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.screens.DirectDebitDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\screens\DirectDebitDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\screens\DirectDebitDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.screens.DirectDebitInfoScreenFragment (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\screens\DirectDebitInfoScreenFragment.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\screens\DirectDebitInfoScreenFragment.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.screens.DirectDebitListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\screens\DirectDebitListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\screens\DirectDebitListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.screens.DirectDebitReissueScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\screens\DirectDebitReissueScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\screens\DirectDebitReissueScreen.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.screens.DirectDebitSearchScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\screens\DirectDebitSearchScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\screens\DirectDebitSearchScreen.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.screens.DirectDebitUpdateBaseScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\screens\DirectDebitUpdateBaseScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\screens\DirectDebitUpdateBaseScreen.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.screens.DirectDebitUpdateConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\screens\DirectDebitUpdateConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\screens\DirectDebitUpdateConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.screens.DirectDebitUpdateDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\screens\DirectDebitUpdateDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\screens\DirectDebitUpdateDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.handlers.screens.DirectDebitUpdateStatusScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\handlers\screens\DirectDebitUpdateStatusScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\handlers\screens\DirectDebitUpdateStatusScreen.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.html.DirectDebitConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\html\DirectDebitConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\html\DirectDebitConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.html.DirectDebitDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\html\DirectDebitDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\html\DirectDebitDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.html.DirectDebitInformationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\html\DirectDebitInformationHTML.java and E:\AR Code Copyright 2007 Fortify Software Inc. Page 87 of 118

Fortify Security Report


Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\html\DirectDebitInformationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.html.DirectDebitListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\html\DirectDebitListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\html\DirectDebitListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.html.DirectDebitSearchButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\html\DirectDebitSearchButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\html\DirectDebitSearchButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.html.DirectDebitSearchHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\html\DirectDebitSearchHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\html\DirectDebitSearchHTML.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.html.DirectDebitUpdateConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\html\DirectDebitUpdateConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\html\DirectDebitUpdateConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.html.DirectDebitUpdateDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\html\DirectDebitUpdateDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\html\DirectDebitUpdateDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.directdebit.util.DirectDebitWebKeys (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\directdebit\util\DirectDebitWebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\directdebit\util\DirectDebitWebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.delegates.DisputeDelegate (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\delegates\DisputeDelegate.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\delegates\DisputeDelegate.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.DisputeActionsActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\DisputeActionsActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\DisputeActionsActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.DisputeActionsDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\DisputeActionsDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\DisputeActionsDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.DisputeActionsFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\DisputeActionsFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\DisputeActionsFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.DisputeActionsRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\DisputeActionsRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\DisputeActionsRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.DisputeQueriesActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\DisputeQueriesActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\DisputeQueriesActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.DisputeQueriesDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\DisputeQueriesDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\DisputeQueriesDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.DisputeQueriesFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\DisputeQueriesFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\DisputeQueriesFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.DisputeQueriesRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\DisputeQueriesRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\DisputeQueriesRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.forms.DisputeCancelForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\forms\DisputeCancelForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\forms\DisputeCancelForm.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.forms.DisputeDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\forms\DisputeDetailsForm.java and E:\AR Code Copyright 2007 Fortify Software Inc. Page 88 of 118

Fortify Security Report


Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\forms\DisputeDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.forms.DisputeJustifyForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\forms\DisputeJustifyForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\forms\DisputeJustifyForm.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.forms.DisputeListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\forms\DisputeListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\forms\DisputeListForm.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.forms.DisputeRejectForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\forms\DisputeRejectForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\forms\DisputeRejectForm.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.forms.DisputeSearchForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\forms\DisputeSearchForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\forms\DisputeSearchForm.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.forms.DisputeUpdateForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\forms\DisputeUpdateForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\forms\DisputeUpdateForm.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.forms.DisputeViewForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\forms\DisputeViewForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\forms\DisputeViewForm.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.screens.DisputeCancelConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\screens\DisputeCancelConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\screens\DisputeCancelConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.screens.DisputeCancelDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\screens\DisputeCancelDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\screens\DisputeCancelDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.screens.DisputeConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\screens\DisputeConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\screens\DisputeConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.screens.DisputeDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\screens\DisputeDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\screens\DisputeDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.screens.DisputeJustifyConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\screens\DisputeJustifyConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\screens\DisputeJustifyConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.screens.DisputeJustifyDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\screens\DisputeJustifyDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\screens\DisputeJustifyDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.screens.DisputeListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\screens\DisputeListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\screens\DisputeListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.screens.DisputeRejectConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\screens\DisputeRejectConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\screens\DisputeRejectConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.screens.DisputeRejectDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\screens\DisputeRejectDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\screens\DisputeRejectDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.screens.DisputeSearchScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\screens\DisputeSearchScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\screens\DisputeSearchScreen.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.screens.DisputeUpdateConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\screens\DisputeUpdateConfirmationScreen.java and E:\AR Code Copyright 2007 Fortify Software Inc. Page 89 of 118

Fortify Security Report


Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\screens\DisputeUpdateConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.screens.DisputeUpdateDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\screens\DisputeUpdateDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\screens\DisputeUpdateDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.handlers.screens.DisputeViewScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\handlers\screens\DisputeViewScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\handlers\screens\DisputeViewScreen.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.html.CreateDisputeButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\html\CreateDisputeButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\html\CreateDisputeButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.html.DisputeCancelButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\html\DisputeCancelButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\html\DisputeCancelButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.html.DisputeCancelConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\html\DisputeCancelConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\html\DisputeCancelConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.html.DisputeCancelHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\html\DisputeCancelHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\html\DisputeCancelHTML.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.html.DisputeConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\html\DisputeConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\html\DisputeConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.html.DisputeDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\html\DisputeDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\html\DisputeDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.html.DisputeInformationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\html\DisputeInformationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\html\DisputeInformationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.html.DisputeJustifyButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\html\DisputeJustifyButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\html\DisputeJustifyButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.html.DisputeJustifyConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\html\DisputeJustifyConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\html\DisputeJustifyConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.html.DisputeJustifyHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\html\DisputeJustifyHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\html\DisputeJustifyHTML.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.html.DisputeListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\html\DisputeListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\html\DisputeListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.html.DisputeRejectButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\html\DisputeRejectButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\html\DisputeRejectButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.html.DisputeRejectConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\html\DisputeRejectConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\html\DisputeRejectConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.html.DisputeRejectHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\html\DisputeRejectHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\html\DisputeRejectHTML.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.html.DisputeSearchHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\html\DisputeSearchHTML.java and E:\AR Code Copyright 2007 Fortify Software Inc. Page 90 of 118

Fortify Security Report


Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\html\DisputeSearchHTML.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.html.DisputeUpdateButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\html\DisputeUpdateButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\html\DisputeUpdateButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.html.DisputeUpdateConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\html\DisputeUpdateConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\html\DisputeUpdateConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.html.DisputeUpdateHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\html\DisputeUpdateHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\html\DisputeUpdateHTML.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.html.DisputeViewHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\html\DisputeViewHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\html\DisputeViewHTML.java). [1214] Multiple definitions found for class amdocs.arClient.dispute.util.DisputeWebKeys (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\dispute\util\DisputeWebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\dispute\util\DisputeWebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.general.appservices.ARBean (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\appservices\ARBean.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\appservices\ARBean.java). [1214] Multiple definitions found for class amdocs.arClient.general.appservices.ARClientEnvironment (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\appservices\ARClientEnvironment.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\appservices\ARClientEnvironment.java). [1214] Multiple definitions found for class amdocs.arClient.general.appservices.ARClientEnvironment$Pagination (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\appservices\ARClientEnvironment.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\appservices\ARClientEnvironment.java). [1214] Multiple definitions found for class amdocs.arClient.general.appservices.ARClientMessages (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\appservices\ARClientMessages.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\appservices\ARClientMessages.java). [1214] Multiple definitions found for class amdocs.arClient.general.appservices.ARFEHighAvailabilityCommandsImpl (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\appservices\ARFEHighAvailabilityCommandsImpl.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\appservices\ARFEHighAvailabilityCommandsImpl.java). [1214] Multiple definitions found for class amdocs.arClient.general.appservices.BOHSessionUtils (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\appservices\BOHSessionUtils.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\appservices\BOHSessionUtils.java). [1214] Multiple definitions found for class amdocs.arClient.general.appservices.ClientShutDownClass (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\appservices\ClientShutDownClass.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\appservices\ClientShutDownClass.java). [1214] Multiple definitions found for class amdocs.arClient.general.appservices.HtmlClassFactory (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\appservices\HtmlClassFactory.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\appservices\HtmlClassFactory.java). [1214] Multiple definitions found for class amdocs.arClient.general.appservices.IJAASLogin (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\appservices\IJAASLogin.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\appservices\IJAASLogin.java). [1214] Multiple definitions found for class amdocs.arClient.general.appservices.JNDILookupFactory (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\appservices\JNDILookupFactory.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\appservices\JNDILookupFactory.java). [1214] Multiple definitions found for class amdocs.arClient.general.appservices.MessageController (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\appservices\MessageController.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\appservices\MessageController.java). [1214] Multiple definitions found for class amdocs.arClient.general.appservices.PersistencyBean (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\appservices\PersistencyBean.java and E:\AR Code Copyright 2007 Fortify Software Inc. Page 91 of 118

Fortify Security Report


Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\appservices\PersistencyBean.java). [1214] Multiple definitions found for class amdocs.arClient.general.appservices.SecurityController (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\appservices\SecurityController.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\appservices\SecurityController.java). [1214] Multiple definitions found for class amdocs.arClient.general.appservices.WASLogin (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\appservices\WASLogin.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\appservices\WASLogin.java). [1214] Multiple definitions found for class amdocs.arClient.general.datatypes.BasicDatatype (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\datatypes\BasicDatatype.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\datatypes\BasicDatatype.java). [1214] Multiple definitions found for class amdocs.arClient.general.datatypes.ButtonSettings (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\datatypes\ButtonSettings.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\datatypes\ButtonSettings.java). [1214] Multiple definitions found for class amdocs.arClient.general.datatypes.DoDepositPaymentSubmit (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\datatypes\DoDepositPaymentSubmit.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\datatypes\DoDepositPaymentSubmit.java). [1214] Multiple definitions found for class amdocs.arClient.general.datatypes.DoDirectDebitUpdateSubmit (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\datatypes\DoDirectDebitUpdateSubmit.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\datatypes\DoDirectDebitUpdateSubmit.java). [1214] Multiple definitions found for class amdocs.arClient.general.datatypes.DoPaymentSubmit (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\datatypes\DoPaymentSubmit.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\datatypes\DoPaymentSubmit.java). [1214] Multiple definitions found for class amdocs.arClient.general.datatypes.DoSubmit (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\datatypes\DoSubmit.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\datatypes\DoSubmit.java). [1214] Multiple definitions found for class amdocs.arClient.general.datatypes.PersistencyClientInfo (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\datatypes\PersistencyClientInfo.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\datatypes\PersistencyClientInfo.java). [1214] Multiple definitions found for class amdocs.arClient.general.delegates.AbstractDelegate (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\delegates\AbstractDelegate.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\delegates\AbstractDelegate.java). [1214] Multiple definitions found for class amdocs.arClient.general.delegates.CurrencyDelegate (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\delegates\CurrencyDelegate.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\delegates\CurrencyDelegate.java). [1214] Multiple definitions found for class amdocs.arClient.general.exceptions.ActionNotAllowedException (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\exceptions\ActionNotAllowedException.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\exceptions\ActionNotAllowedException.java). [1214] Multiple definitions found for class amdocs.arClient.general.exceptions.ARClientException (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\exceptions\ARClientException.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\exceptions\ARClientException.java). [1214] Multiple definitions found for class amdocs.arClient.general.exceptions.RenderingException (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\exceptions\RenderingException.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\exceptions\RenderingException.java). [1214] Multiple definitions found for class amdocs.arClient.general.exceptions.ValidationException (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\exceptions\ValidationException.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\exceptions\ValidationException.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.ActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\ActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\ActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.ARActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\ARActionHandler.java and E:\AR Code Copyright 2007 Fortify Software Inc. Page 92 of 118

Fortify Security Report


Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\ARActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.ARDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\ARDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\ARDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.ARFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\ARFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\ARFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.ARRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\ARRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\ARRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.DataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\DataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\DataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.DefaultDelegateExceptionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\DefaultDelegateExceptionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\DefaultDelegateExceptionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.FlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\FlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\FlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.forms.AbstractForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\forms\AbstractForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\forms\AbstractForm.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.forms.Form (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\forms\Form.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\forms\Form.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.ListHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\ListHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\ListHandler.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.RenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\RenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\RenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.screens.AbstractRenderer (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\screens\AbstractRenderer.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\screens\AbstractRenderer.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.screens.AbstractRenderer$PaginationFeatures (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\screens\AbstractRenderer.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\screens\AbstractRenderer.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.screens.AbstractScreenRenderer (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\screens\AbstractScreenRenderer.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\screens\AbstractScreenRenderer.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.screens.AbstractTemplate (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\screens\AbstractTemplate.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\screens\AbstractTemplate.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.screens.DefaultQueriesScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\screens\DefaultQueriesScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\screens\DefaultQueriesScreen.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.screens.DefaultScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\screens\DefaultScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\screens\DefaultScreen.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.screens.ErrorScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\screens\ErrorScreen.java and E:\AR Code Copyright 2007 Fortify Software Inc. Page 93 of 118

Fortify Security Report


Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\screens\ErrorScreen.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.screens.ListTemplate (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\screens\ListTemplate.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\screens\ListTemplate.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.screens.MainTemplate (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\screens\MainTemplate.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\screens\MainTemplate.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.screens.MessageScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\screens\MessageScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\screens\MessageScreen.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.screens.PopupTemplate (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\screens\PopupTemplate.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\screens\PopupTemplate.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.screens.Renderer (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\screens\Renderer.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\screens\Renderer.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.screens.Screen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\screens\Screen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\screens\Screen.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.screens.Template (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\screens\Template.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\screens\Template.java). [1214] Multiple definitions found for class amdocs.arClient.general.handlers.screens.TemplateFactory (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\handlers\screens\TemplateFactory.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\handlers\screens\TemplateFactory.java). [1214] Multiple definitions found for class amdocs.arClient.general.html.BlankTemplateHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\html\BlankTemplateHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\html\BlankTemplateHTML.java). [1214] Multiple definitions found for class amdocs.arClient.general.html.DeleteButtonHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\html\DeleteButtonHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\html\DeleteButtonHTML.java). [1214] Multiple definitions found for class amdocs.arClient.general.html.ErrorHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\html\ErrorHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\html\ErrorHTML.java). [1214] Multiple definitions found for class amdocs.arClient.general.html.GenericButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\html\GenericButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\html\GenericButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.general.html.HeaderHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\html\HeaderHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\html\HeaderHTML.java). [1214] Multiple definitions found for class amdocs.arClient.general.html.LeftBarHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\html\LeftBarHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\html\LeftBarHTML.java). [1214] Multiple definitions found for class amdocs.arClient.general.html.LeftMenuActionsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\html\LeftMenuActionsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\html\LeftMenuActionsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.general.html.LeftMenuInvoiceQueriesHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\html\LeftMenuInvoiceQueriesHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\html\LeftMenuInvoiceQueriesHTML.java). [1214] Multiple definitions found for class amdocs.arClient.general.html.LeftMenuQueriesHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\html\LeftMenuQueriesHTML.java and E:\AR Code Copyright 2007 Fortify Software Inc. Page 94 of 118

Fortify Security Report


Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\html\LeftMenuQueriesHTML.java). [1214] Multiple definitions found for class amdocs.arClient.general.html.ListTemplateHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\html\ListTemplateHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\html\ListTemplateHTML.java). [1214] Multiple definitions found for class amdocs.arClient.general.html.MainTemplateHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\html\MainTemplateHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\html\MainTemplateHTML.java). [1214] Multiple definitions found for class amdocs.arClient.general.html.MenuAccountHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\html\MenuAccountHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\html\MenuAccountHTML.java). [1214] Multiple definitions found for class amdocs.arClient.general.html.MenuHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\html\MenuHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\html\MenuHTML.java). [1214] Multiple definitions found for class amdocs.arClient.general.html.MessageButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\html\MessageButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\html\MessageButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.general.html.MessageHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\html\MessageHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\html\MessageHTML.java). [1214] Multiple definitions found for class amdocs.arClient.general.html.PaginationButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\html\PaginationButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\html\PaginationButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.general.html.PopupTemplateHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\html\PopupTemplateHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\html\PopupTemplateHTML.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.AppUtils (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\AppUtils.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\AppUtils.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.CurrencyConverterServlet (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\CurrencyConverterServlet.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\CurrencyConverterServlet.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.DateUtils (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\DateUtils.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\DateUtils.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.DomUtils (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\DomUtils.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\DomUtils.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.Helper (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\Helper.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\Helper.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.JNDINames (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\JNDINames.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\JNDINames.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.LoginFilter (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\LoginFilter.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\LoginFilter.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.MessageUtils (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\MessageUtils.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\MessageUtils.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.PaginationUtils (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\PaginationUtils.java and E:\AR Code Copyright 2007 Fortify Software Inc. Page 95 of 118

Fortify Security Report


Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\PaginationUtils.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.ReferenceDataListMethod (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\ReferenceDataListMethod.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\ReferenceDataListMethod.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.ReferenceDataManager (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\ReferenceDataManager.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\ReferenceDataManager.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.ResourceFilter (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\ResourceFilter.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\ResourceFilter.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.SensitiveDataUtils (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\SensitiveDataUtils.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\SensitiveDataUtils.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.ServletResponseWrapper (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\ServletResponseWrapper.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\ServletResponseWrapper.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.ServletResponseWrapper$FilterServletOutputStream (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\ServletResponseWrapper.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\ServletResponseWrapper.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.SessionAttributeListener (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\SessionAttributeListener.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\SessionAttributeListener.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.SingleWindowFilter (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\SingleWindowFilter.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\SingleWindowFilter.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.StringUtils (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\StringUtils.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\StringUtils.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.WebKeys (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\WebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\WebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.WebKeys$Codes (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\WebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\WebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.WebKeys$ActivityLevelCodes (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\WebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\WebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.WebKeys$CreditLevelCodes (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\WebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\WebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.WebKeys$Indicators (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\WebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\WebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.WebKeys$CategoryCodes (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\WebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\WebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.WebKeys$DepositCodes (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\WebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\WebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.WebUtils (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\WebUtils.java and E:\AR Code Copyright 2007 Fortify Software Inc. Page 96 of 118

Fortify Security Report


Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\WebUtils.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.Xmlc (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\Xmlc.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\Xmlc.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.Xmlc$XmlcFilenameFilter (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\Xmlc.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\Xmlc.java). [1214] Multiple definitions found for class amdocs.arClient.general.util.Xmlc$FileListing (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\general\util\Xmlc.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\general\util\Xmlc.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.delegates.InvoiceDelegate (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\delegates\InvoiceDelegate.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\delegates\InvoiceDelegate.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.forms.InvoiceAllocationDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\forms\InvoiceAllocationDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\forms\InvoiceAllocationDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.forms.InvoiceAllocationListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\forms\InvoiceAllocationListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\forms\InvoiceAllocationListForm.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.forms.InvoiceCreditListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\forms\InvoiceCreditListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\forms\InvoiceCreditListForm.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.forms.InvoiceLevelCreditForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\forms\InvoiceLevelCreditForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\forms\InvoiceLevelCreditForm.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.forms.InvoiceLevelDisputeForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\forms\InvoiceLevelDisputeForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\forms\InvoiceLevelDisputeForm.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.forms.InvoiceLevelPendingCreditForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\forms\InvoiceLevelPendingCreditForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\forms\InvoiceLevelPendingCreditForm.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.forms.InvoiceListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\forms\InvoiceListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\forms\InvoiceListForm.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.forms.InvoiceSearchForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\forms\InvoiceSearchForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\forms\InvoiceSearchForm.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.InvoiceQueriesActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\InvoiceQueriesActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\InvoiceQueriesActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.InvoiceQueriesDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\InvoiceQueriesDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\InvoiceQueriesDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.InvoiceQueriesFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\InvoiceQueriesFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\InvoiceQueriesFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.InvoiceQueriesRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\InvoiceQueriesRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\InvoiceQueriesRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.screens.InvoiceAllocationConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\screens\InvoiceAllocationConfirmationScreen.java and E:\AR Copyright 2007 Fortify Software Inc. Page 97 of 118

Fortify Security Report


Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\screens\InvoiceAllocationConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.screens.InvoiceAllocationDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\screens\InvoiceAllocationDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\screens\InvoiceAllocationDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.screens.InvoiceAllocationDetailsScreen$BillingArrangeItem (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\screens\InvoiceAllocationDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\screens\InvoiceAllocationDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.screens.InvoiceAllocationDetailsScreen$InvoiceItem (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\screens\InvoiceAllocationDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\screens\InvoiceAllocationDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.screens.InvoiceAllocationListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\screens\InvoiceAllocationListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\screens\InvoiceAllocationListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.screens.InvoiceCreditListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\screens\InvoiceCreditListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\screens\InvoiceCreditListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.screens.InvoiceInfoScreenFragment (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\screens\InvoiceInfoScreenFragment.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\screens\InvoiceInfoScreenFragment.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.screens.InvoiceLevelCreditAllocationConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\screens\InvoiceLevelCreditAllocationConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\screens\InvoiceLevelCreditAllocationConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.screens.InvoiceLevelCreditConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\screens\InvoiceLevelCreditConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\screens\InvoiceLevelCreditConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.screens.InvoiceLevelCreditScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\screens\InvoiceLevelCreditScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\screens\InvoiceLevelCreditScreen.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.screens.InvoiceLevelDisputeConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\screens\InvoiceLevelDisputeConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\screens\InvoiceLevelDisputeConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.screens.InvoiceLevelDisputeScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\screens\InvoiceLevelDisputeScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\screens\InvoiceLevelDisputeScreen.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.screens.InvoiceLevelPendingCreditConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\screens\InvoiceLevelPendingCreditConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\screens\InvoiceLevelPendingCreditConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.screens.InvoiceLevelPendingCreditScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\screens\InvoiceLevelPendingCreditScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\screens\InvoiceLevelPendingCreditScreen.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.screens.InvoiceListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\screens\InvoiceListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\screens\InvoiceListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.handlers.screens.InvoiceSearchScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\handlers\screens\InvoiceSearchScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\handlers\screens\InvoiceSearchScreen.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceAllocationConfirmationButtonsHTML (E:\AR Copyright 2007 Fortify Software Inc. Page 98 of 118

Fortify Security Report


Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceAllocationConfirmationButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceAllocationConfirmationButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceAllocationConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceAllocationConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceAllocationConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceAllocationDetailsButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceAllocationDetailsButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceAllocationDetailsButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceAllocationDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceAllocationDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceAllocationDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceAllocationListButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceAllocationListButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceAllocationListButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceAllocationListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceAllocationListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceAllocationListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceHistoryHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceHistoryHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceHistoryHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceInformationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceInformationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceInformationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceLevelCreditAllocationConfirmationScreenHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceLevelCreditAllocationConfirmationScreenHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceLevelCreditAllocationConfirmationScreenHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceLevelCreditConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceLevelCreditConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceLevelCreditConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceLevelCreditDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceLevelCreditDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceLevelCreditDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceLevelDisputeConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceLevelDisputeConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceLevelDisputeConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceLevelDisputeDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceLevelDisputeDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceLevelDisputeDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceLevelPendingCreditConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceLevelPendingCreditConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceLevelPendingCreditConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceLevelPendingCreditDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceLevelPendingCreditDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceLevelPendingCreditDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceListButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceListButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceListButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceListHTML.java). Copyright 2007 Fortify Software Inc. Page 99 of 118

Fortify Security Report


[1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceSearchButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceSearchButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceSearchButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceSearchHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceSearchHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceSearchHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceSummaryListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceSummaryListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceSummaryListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceWriteOffConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceWriteOffConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceWriteOffConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.html.InvoiceWriteOffHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\html\InvoiceWriteOffHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\html\InvoiceWriteOffHTML.java). [1214] Multiple definitions found for class amdocs.arClient.invoice.util.InvoiceWebKeys (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\invoice\util\InvoiceWebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\invoice\util\InvoiceWebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.payment.delegates.PaymentDelegate (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\delegates\PaymentDelegate.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\delegates\PaymentDelegate.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.forms.AcLvlDepositPaymentApplicationForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\forms\AcLvlDepositPaymentApplicationForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\forms\AcLvlDepositPaymentApplicationForm.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.forms.AcLvlPaymentApplicationForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\forms\AcLvlPaymentApplicationForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\forms\AcLvlPaymentApplicationForm.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.forms.AcLvlPaymentDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\forms\AcLvlPaymentDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\forms\AcLvlPaymentDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.forms.DepositListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\forms\DepositListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\forms\DepositListForm.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.forms.PaymentAccountSearchForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\forms\PaymentAccountSearchForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\forms\PaymentAccountSearchForm.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.forms.PaymentAllocationListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\forms\PaymentAllocationListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\forms\PaymentAllocationListForm.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.forms.PaymentApplicationForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\forms\PaymentApplicationForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\forms\PaymentApplicationForm.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.forms.PaymentBackoutDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\forms\PaymentBackoutDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\forms\PaymentBackoutDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.forms.PaymentDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\forms\PaymentDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\forms\PaymentDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.forms.PaymentFundsTransferForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\forms\PaymentFundsTransferForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\forms\PaymentFundsTransferForm.java). Copyright 2007 Fortify Software Inc. Page 100 of 118

Fortify Security Report


[1214] Multiple definitions found for class amdocs.arClient.payment.handlers.forms.PaymentListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\forms\PaymentListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\forms\PaymentListForm.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.forms.PaymentSearchForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\forms\PaymentSearchForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\forms\PaymentSearchForm.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.forms.RefundPaymentDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\forms\RefundPaymentDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\forms\RefundPaymentDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentAbstractActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentAbstractActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentAbstractActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentAbstractDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentAbstractDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentAbstractDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentAbstractFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentAbstractFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentAbstractFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentAbstractRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentAbstractRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentAbstractRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentActionsActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentActionsActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentActionsActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentActionsDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentActionsDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentActionsDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentActionsFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentActionsFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentActionsFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentActionsRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentActionsRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentActionsRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentBackoutActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentBackoutActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentBackoutActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentBackoutDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentBackoutDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentBackoutDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentBackoutFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentBackoutFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentBackoutFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentBackoutRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentBackoutRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentBackoutRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentCreateActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentCreateActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentCreateActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentCreateDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentCreateDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentCreateDataHandler.java). Copyright 2007 Fortify Software Inc. Page 101 of 118

Fortify Security Report


[1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentCreateFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentCreateFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentCreateFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentCreateRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentCreateRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentCreateRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentQueriesActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentQueriesActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentQueriesActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentQueriesDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentQueriesDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentQueriesDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentQueriesFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentQueriesFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentQueriesFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentQueriesRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentQueriesRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentQueriesRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentSearchActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentSearchActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentSearchActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentSearchDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentSearchDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentSearchDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentSearchFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentSearchFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentSearchFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.PaymentSearchRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\PaymentSearchRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\PaymentSearchRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.AcLvlDepositPaymentApplicationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\AcLvlDepositPaymentApplicationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\AcLvlDepositPaymentApplicationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.AcLvlPaymentApplicationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\AcLvlPaymentApplicationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\AcLvlPaymentApplicationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.AcLvlPaymentConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\AcLvlPaymentConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\AcLvlPaymentConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.AcLvlPaymentDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\AcLvlPaymentDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\AcLvlPaymentDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.AcLvlPaymentListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\AcLvlPaymentListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\AcLvlPaymentListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.AcLvlPaymentSearchScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\AcLvlPaymentSearchScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\AcLvlPaymentSearchScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.DepositListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\DepositListScreen.java and E:\AR Code Copyright 2007 Fortify Software Inc. Page 102 of 118

Fortify Security Report


Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\DepositListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.PaymentAccountSearchScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\PaymentAccountSearchScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\PaymentAccountSearchScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.PaymentAllocationListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\PaymentAllocationListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\PaymentAllocationListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.PaymentApplicationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\PaymentApplicationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\PaymentApplicationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.PaymentBackoutConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\PaymentBackoutConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\PaymentBackoutConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.PaymentBackoutDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\PaymentBackoutDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\PaymentBackoutDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.PaymentBackoutInfoScreenFragment (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\PaymentBackoutInfoScreenFragment.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\PaymentBackoutInfoScreenFragment.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.PaymentConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\PaymentConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\PaymentConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.PaymentDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\PaymentDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\PaymentDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.PaymentFundsTransferConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\PaymentFundsTransferConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\PaymentFundsTransferConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.PaymentFundsTransferDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\PaymentFundsTransferDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\PaymentFundsTransferDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.PaymentHistoryScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\PaymentHistoryScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\PaymentHistoryScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.PaymentInfoScreenFragment (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\PaymentInfoScreenFragment.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\PaymentInfoScreenFragment.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.PaymentListDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\PaymentListDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\PaymentListDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.PaymentListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\PaymentListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\PaymentListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.PaymentRefundConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\PaymentRefundConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\PaymentRefundConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.PaymentRefundDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\PaymentRefundDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\PaymentRefundDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.handlers.screens.PaymentSearchScreen (E:\AR Code Copyright 2007 Fortify Software Inc. Page 103 of 118

Fortify Security Report


Scan\v81_0_SP_1\amdocs\arClient\payment\handlers\screens\PaymentSearchScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\handlers\screens\PaymentSearchScreen.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.AcLvlDepositPaymentApplicationButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\AcLvlDepositPaymentApplicationButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\AcLvlDepositPaymentApplicationButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.AcLvlDepositPaymentApplicationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\AcLvlDepositPaymentApplicationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\AcLvlDepositPaymentApplicationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.AcLvlPaymentApplicationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\AcLvlPaymentApplicationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\AcLvlPaymentApplicationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.AcLvlPaymentConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\AcLvlPaymentConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\AcLvlPaymentConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.AcLvlPaymentDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\AcLvlPaymentDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\AcLvlPaymentDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.BackoutPaymentConfirmationButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\BackoutPaymentConfirmationButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\BackoutPaymentConfirmationButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.BackoutPaymentDetailsButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\BackoutPaymentDetailsButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\BackoutPaymentDetailsButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.BackoutPaymentListButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\BackoutPaymentListButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\BackoutPaymentListButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.DepositListButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\DepositListButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\DepositListButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.DepositListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\DepositListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\DepositListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.FundsTransferButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\FundsTransferButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\FundsTransferButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentAllocationConfirmationButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentAllocationConfirmationButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentAllocationConfirmationButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentAllocationConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentAllocationConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentAllocationConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentAllocationDetailsButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentAllocationDetailsButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentAllocationDetailsButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentAllocationDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentAllocationDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentAllocationDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentAllocationListButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentAllocationListButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentAllocationListButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentAllocationListHTML (E:\AR Code Copyright 2007 Fortify Software Inc. Page 104 of 118

Fortify Security Report


Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentAllocationListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentAllocationListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentApplicationButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentApplicationButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentApplicationButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentApplicationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentApplicationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentApplicationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentBackoutConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentBackoutConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentBackoutConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentBackoutDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentBackoutDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentBackoutDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentBackoutInformationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentBackoutInformationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentBackoutInformationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentConfirmationButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentConfirmationButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentConfirmationButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentDetailsButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentDetailsButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentDetailsButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentFundsTransferApplicationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentFundsTransferApplicationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentFundsTransferApplicationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentFundsTransferConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentFundsTransferConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentFundsTransferConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentHistoryHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentHistoryHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentHistoryHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentInformationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentInformationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentInformationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentListButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentListButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentListButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentRefundConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentRefundConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentRefundConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentRefundDetailsHTML (E:\AR Code Copyright 2007 Fortify Software Inc. Page 105 of 118

Fortify Security Report


Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentRefundDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentRefundDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentSearchButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentSearchButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentSearchButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentSearchHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentSearchHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentSearchHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.PaymentViewDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\PaymentViewDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\PaymentViewDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.RefundPaymentDetailsButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\RefundPaymentDetailsButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\RefundPaymentDetailsButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.html.RefundPaymentListButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\html\RefundPaymentListButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\html\RefundPaymentListButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.payment.util.PaymentWebKeys (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\payment\util\PaymentWebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\payment\util\PaymentWebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.handlers.forms.PendingCreditListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\handlers\forms\PendingCreditListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\handlers\forms\PendingCreditListForm.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.handlers.forms.PendingCreditReversalDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\handlers\forms\PendingCreditReversalDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\handlers\forms\PendingCreditReversalDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.handlers.forms.PendingCreditSearchForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\handlers\forms\PendingCreditSearchForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\handlers\forms\PendingCreditSearchForm.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.handlers.PendingCreditQueriesActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\handlers\PendingCreditQueriesActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\handlers\PendingCreditQueriesActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.handlers.PendingCreditQueriesDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\handlers\PendingCreditQueriesDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\handlers\PendingCreditQueriesDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.handlers.PendingCreditQueriesFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\handlers\PendingCreditQueriesFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\handlers\PendingCreditQueriesFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.handlers.PendingCreditQueriesRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\handlers\PendingCreditQueriesRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\handlers\PendingCreditQueriesRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.handlers.screens.PendingCreditInfoScreenFragment (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\handlers\screens\PendingCreditInfoScreenFragment.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\handlers\screens\PendingCreditInfoScreenFragment.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.handlers.screens.PendingCreditListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\handlers\screens\PendingCreditListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\handlers\screens\PendingCreditListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.handlers.screens.PendingCreditReversalConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\handlers\screens\PendingCreditReversalConfirmationScreen.java and E:\AR Code Copyright 2007 Fortify Software Inc. Page 106 of 118

Fortify Security Report


Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\handlers\screens\PendingCreditReversalConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.handlers.screens.PendingCreditReversalDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\handlers\screens\PendingCreditReversalDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\handlers\screens\PendingCreditReversalDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.handlers.screens.PendingCreditSearchScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\handlers\screens\PendingCreditSearchScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\handlers\screens\PendingCreditSearchScreen.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.html.BillingArrangementListButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\html\BillingArrangementListButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\html\BillingArrangementListButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.html.BillingArrangementListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\html\BillingArrangementListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\html\BillingArrangementListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.html.PendingCreditListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\html\PendingCreditListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\html\PendingCreditListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.html.PendingCreditReversalConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\html\PendingCreditReversalConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\html\PendingCreditReversalConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.html.PendingCreditReversalDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\html\PendingCreditReversalDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\html\PendingCreditReversalDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.html.PendingCreditSearchButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\html\PendingCreditSearchButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\html\PendingCreditSearchButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.html.PendingCreditSearchHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\html\PendingCreditSearchHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\html\PendingCreditSearchHTML.java). [1214] Multiple definitions found for class amdocs.arClient.pendingcredit.util.PendingCreditWebKeys (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\pendingcredit\util\PendingCreditWebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\pendingcredit\util\PendingCreditWebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.refund.delegates.RefundDelegate (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\delegates\RefundDelegate.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\delegates\RefundDelegate.java). [1214] Multiple definitions found for class amdocs.arClient.refund.handlers.forms.RefundDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\handlers\forms\RefundDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\handlers\forms\RefundDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.refund.handlers.forms.RefundListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\handlers\forms\RefundListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\handlers\forms\RefundListForm.java). [1214] Multiple definitions found for class amdocs.arClient.refund.handlers.forms.RefundReversalDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\handlers\forms\RefundReversalDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\handlers\forms\RefundReversalDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.refund.handlers.forms.RefundSearchForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\handlers\forms\RefundSearchForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\handlers\forms\RefundSearchForm.java). [1214] Multiple definitions found for class amdocs.arClient.refund.handlers.RefundActionsActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\handlers\RefundActionsActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\handlers\RefundActionsActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.refund.handlers.RefundActionsDataHandler (E:\AR Code Copyright 2007 Fortify Software Inc. Page 107 of 118

Fortify Security Report


Scan\v81_0_SP_1\amdocs\arClient\refund\handlers\RefundActionsDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\handlers\RefundActionsDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.refund.handlers.RefundActionsFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\handlers\RefundActionsFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\handlers\RefundActionsFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.refund.handlers.RefundActionsRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\handlers\RefundActionsRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\handlers\RefundActionsRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.refund.handlers.RefundQueriesActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\handlers\RefundQueriesActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\handlers\RefundQueriesActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.refund.handlers.RefundQueriesDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\handlers\RefundQueriesDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\handlers\RefundQueriesDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.refund.handlers.RefundQueriesFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\handlers\RefundQueriesFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\handlers\RefundQueriesFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.refund.handlers.RefundQueriesRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\handlers\RefundQueriesRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\handlers\RefundQueriesRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.refund.handlers.screens.RefundConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\handlers\screens\RefundConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\handlers\screens\RefundConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.refund.handlers.screens.RefundDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\handlers\screens\RefundDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\handlers\screens\RefundDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.refund.handlers.screens.RefundInfoScreenFragment (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\handlers\screens\RefundInfoScreenFragment.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\handlers\screens\RefundInfoScreenFragment.java). [1214] Multiple definitions found for class amdocs.arClient.refund.handlers.screens.RefundListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\handlers\screens\RefundListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\handlers\screens\RefundListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.refund.handlers.screens.RefundReversalConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\handlers\screens\RefundReversalConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\handlers\screens\RefundReversalConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.refund.handlers.screens.RefundReversalDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\handlers\screens\RefundReversalDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\handlers\screens\RefundReversalDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.refund.handlers.screens.RefundSearchScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\handlers\screens\RefundSearchScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\handlers\screens\RefundSearchScreen.java). [1214] Multiple definitions found for class amdocs.arClient.refund.html.RefundConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\html\RefundConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\html\RefundConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.refund.html.RefundDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\html\RefundDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\html\RefundDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.refund.html.RefundInformationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\html\RefundInformationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\html\RefundInformationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.refund.html.RefundListHTML (E:\AR Code Copyright 2007 Fortify Software Inc. Page 108 of 118

Fortify Security Report


Scan\v81_0_SP_1\amdocs\arClient\refund\html\RefundListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\html\RefundListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.refund.html.RefundReversalConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\html\RefundReversalConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\html\RefundReversalConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.refund.html.RefundReversalDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\html\RefundReversalDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\html\RefundReversalDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.refund.html.RefundSearchButtonsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\html\RefundSearchButtonsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\html\RefundSearchButtonsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.refund.html.RefundSearchHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\html\RefundSearchHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\html\RefundSearchHTML.java). [1214] Multiple definitions found for class amdocs.arClient.refund.util.RefundWebKeys (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\refund\util\RefundWebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\refund\util\RefundWebKeys.java). [1214] Multiple definitions found for class amdocs.arClient.uams.html.loginHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\uams\html\loginHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\uams\html\loginHTML.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.handlers.forms.WriteOffDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\handlers\forms\WriteOffDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\handlers\forms\WriteOffDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.handlers.forms.WriteOffListForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\handlers\forms\WriteOffListForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\handlers\forms\WriteOffListForm.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.handlers.forms.WriteOffReversalDetailsForm (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\handlers\forms\WriteOffReversalDetailsForm.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\handlers\forms\WriteOffReversalDetailsForm.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.handlers.screens.WriteOffConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\handlers\screens\WriteOffConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\handlers\screens\WriteOffConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.handlers.screens.WriteOffDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\handlers\screens\WriteOffDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\handlers\screens\WriteOffDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.handlers.screens.WriteOffInfoScreenFragment (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\handlers\screens\WriteOffInfoScreenFragment.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\handlers\screens\WriteOffInfoScreenFragment.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.handlers.screens.WriteOffListScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\handlers\screens\WriteOffListScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\handlers\screens\WriteOffListScreen.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.handlers.screens.WriteOffReversalConfirmationScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\handlers\screens\WriteOffReversalConfirmationScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\handlers\screens\WriteOffReversalConfirmationScreen.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.handlers.screens.WriteOffReversalDetailsScreen (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\handlers\screens\WriteOffReversalDetailsScreen.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\handlers\screens\WriteOffReversalDetailsScreen.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.handlers.WriteOffActionsActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\handlers\WriteOffActionsActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\handlers\WriteOffActionsActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.handlers.WriteOffActionsDataHandler (E:\AR Code Copyright 2007 Fortify Software Inc. Page 109 of 118

Fortify Security Report


Scan\v81_0_SP_1\amdocs\arClient\writeoff\handlers\WriteOffActionsDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\handlers\WriteOffActionsDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.handlers.WriteOffActionsFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\handlers\WriteOffActionsFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\handlers\WriteOffActionsFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.handlers.WriteOffActionsRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\handlers\WriteOffActionsRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\handlers\WriteOffActionsRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.handlers.WriteOffQueriesActionHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\handlers\WriteOffQueriesActionHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\handlers\WriteOffQueriesActionHandler.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.handlers.WriteOffQueriesDataHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\handlers\WriteOffQueriesDataHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\handlers\WriteOffQueriesDataHandler.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.handlers.WriteOffQueriesFlowHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\handlers\WriteOffQueriesFlowHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\handlers\WriteOffQueriesFlowHandler.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.handlers.WriteOffQueriesRenderHandler (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\handlers\WriteOffQueriesRenderHandler.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\handlers\WriteOffQueriesRenderHandler.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.html.WriteOffConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\html\WriteOffConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\html\WriteOffConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.html.WriteOffDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\html\WriteOffDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\html\WriteOffDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.html.WriteOffInformationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\html\WriteOffInformationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\html\WriteOffInformationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.html.WriteOffListHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\html\WriteOffListHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\html\WriteOffListHTML.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.html.WriteOffReversalConfirmationHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\html\WriteOffReversalConfirmationHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\html\WriteOffReversalConfirmationHTML.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.html.WriteOffReversalDetailsHTML (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\html\WriteOffReversalDetailsHTML.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\html\WriteOffReversalDetailsHTML.java). [1214] Multiple definitions found for class amdocs.arClient.writeoff.util.WriteOffWebKeys (E:\AR Code Scan\v81_0_SP_1\amdocs\arClient\writeoff\util\WriteOffWebKeys.java and E:\AR Code Scan\v81_0_SP_1_Sandip\amdocs\arClient\writeoff\util\WriteOffWebKeys.java). [1234] Failed to translate the following 97 jsps into analysis model. Please see the log file for any errors from the jsp parser and the user manual for hints on fixing those. E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\account\statement\controllers\AccountStatementMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\debit\html\ChargeLevelCreditDetails.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\debit\html\DebitConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\refund\html\RefundConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\general\html\ListTemplate.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\boh\controllers\BOHActionsMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditNoteViewConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditDetails.jsp Copyright 2007 Fortify Software Inc. Page 110 of 118

Fortify Security Report


E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\dispute\html\DisputeConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\directdebit\controllers\DirectDebitActionsMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\credit\controllers\PendingCreditActionsMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditNoteSearch.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\dispute\html\DisputeJustifyConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\payment\controllers\PaymentSearchMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceAllocationList.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\debit\html\DebitList.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\credit\controllers\PendingCreditQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditSearch.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceLevelDisputeDetails.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditNoteDeleteConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\debit\html\DebitDetails.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceList.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\uams\html\login.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\debit\html\ChargeLevelCreditAllocationConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\deposit\html\DepositConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\writeoff\html\WriteOffReversalConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\refund\html\RefundReversalConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\pendingcredit\html\PendingCreditSearch.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\deposit\html\DepositDetails.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\dispute\html\DisputeSearch.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\refund\html\RefundReversalDetails.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\debit\html\DebitSearch.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\dispute\html\DisputeCancelConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\general\html\BlankTemplate.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\debit\controllers\DebitActionsMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\credit\html\PendingCreditDetails.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\deposit\html\DepositDecrease.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\payment\controllers\PaymentCreateMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditNoteDeleteDetails.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\credit\html\PendingCreditConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\account\statement\html\AccountStatementSearch.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\refund\controllers\RefundActionsMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceLevelPendingCreditConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\general\html\MainTemplate.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\dispute\controllers\DisputeActionsMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceWriteOffConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\writeoff\controllers\WriteOffActionsMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\debit\html\ChargeLevelPendingCreditDetails.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\payment\html\AcLvlPaymentDetails.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\credit\controllers\CreditActionsMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\payment\controllers\PaymentQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\writeoff\html\WriteOffReversalDetails.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceSearch.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\writeoff\html\WriteOffConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\deposit\controllers\DepositQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\directdebit\controllers\DirectDebitQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\dispute\html\DisputeRejectConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\deposit\html\DepositIncrease.jsp Copyright 2007 Fortify Software Inc. Page 111 of 118

Fortify Security Report


E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\payment\controllers\RefundPaymentMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\account\controllers\AccountSearchMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\dispute\controllers\DisputeQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceLevelPendingCreditDetails.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\writeoff\controllers\WriteOffQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\writeoff\html\WriteOffDetails.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\deposit\html\DepositSearch.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\general\html\PopupTemplate.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditNoteList.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\invoice\controllers\InvoiceQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceLevelCreditDetails.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\credit\controllers\CreditQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditCreateAllocationConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\refund\controllers\RefundQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\refund\html\RefundDetails.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\debit\html\ChargeLevelPendingCreditConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\debit\html\ChargeLevelCreditConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\debit\controllers\DebitQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceWriteOff.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\dispute\html\DisputeDetails.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceHistory.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\debit\html\ChargeLevelDisputeConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\refund\html\RefundList.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceLevelCreditConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\payment\controllers\PaymentActionsMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\refund\html\RefundSearch.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditNoteDetails.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceLevelCreditAllocationConfirmationScreen.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\deposit\controllers\DepositActionsMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditNoteFinalizeConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\debit\html\ChargeLevelDisputeDetails.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\persistency\Persistency.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\dispute\html\DisputeUpdateConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\writeoff\html\WriteOffList.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditNoteViewDetails.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\payment\controllers\PaymentBackoutMain.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceLevelDisputeConfirmation.jsp E:\AR Code Scan\v81_0_SP_1\webAppRoot\jsp\credit\controllers\CreditNoteQueriesMain.jsp [1234] Failed to translate the following 97 jsps into analysis model. Please see the log file for any errors from the jsp parser and the user manual for hints on fixing those. E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\account\statement\html\AccountStatementSearch.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\debit\controllers\DebitQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\debit\html\ChargeLevelDisputeDetails.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\deposit\html\DepositDetails.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\dispute\controllers\DisputeQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditSearch.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\credit\controllers\CreditQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\general\html\ListTemplate.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\dispute\html\DisputeSearch.jsp Copyright 2007 Fortify Software Inc. Page 112 of 118

Fortify Security Report


E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceLevelCreditDetails.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\debit\html\ChargeLevelDisputeConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceLevelPendingCreditConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditNoteDetails.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\payment\html\AcLvlPaymentDetails.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceSearch.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\debit\html\ChargeLevelCreditAllocationConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditCreateAllocationConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceLevelDisputeConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\refund\html\RefundDetails.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\writeoff\html\WriteOffList.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\dispute\html\DisputeDetails.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditNoteDeleteDetails.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\dispute\html\DisputeJustifyConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\pendingcredit\html\PendingCreditSearch.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\dispute\html\DisputeCancelConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\debit\html\DebitDetails.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\account\statement\controllers\AccountStatementMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\deposit\html\DepositConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\deposit\html\DepositSearch.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceWriteOffConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\writeoff\html\WriteOffReversalDetails.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\credit\controllers\CreditNoteQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\deposit\controllers\DepositActionsMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\dispute\controllers\DisputeActionsMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\credit\html\PendingCreditDetails.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\refund\controllers\RefundActionsMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\deposit\html\DepositIncrease.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceWriteOff.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceList.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\debit\html\ChargeLevelPendingCreditConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\invoice\controllers\InvoiceQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditNoteDeleteConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\payment\controllers\PaymentBackoutMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\debit\html\DebitSearch.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditNoteViewConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\debit\html\DebitConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\writeoff\html\WriteOffConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\refund\html\RefundConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\refund\html\RefundList.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\persistency\Persistency.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceLevelDisputeDetails.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\payment\controllers\PaymentActionsMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditNoteFinalizeConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\dispute\html\DisputeUpdateConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceHistory.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\deposit\controllers\DepositQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceAllocationList.jsp Copyright 2007 Fortify Software Inc. Page 113 of 118

Fortify Security Report


E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\writeoff\html\WriteOffDetails.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\refund\html\RefundSearch.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\dispute\html\DisputeRejectConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditNoteViewDetails.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\payment\controllers\PaymentSearchMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\debit\html\ChargeLevelCreditDetails.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\refund\html\RefundReversalConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceLevelCreditAllocationConfirmationScreen.js p E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\payment\controllers\PaymentCreateMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\writeoff\html\WriteOffReversalConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\debit\html\ChargeLevelPendingCreditDetails.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\payment\controllers\PaymentQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\refund\html\RefundReversalDetails.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\general\html\BlankTemplate.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\credit\controllers\PendingCreditActionsMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditNoteList.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceLevelPendingCreditDetails.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\boh\controllers\BOHActionsMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\refund\controllers\RefundQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\debit\html\DebitList.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\uams\html\login.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\writeoff\controllers\WriteOffQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\debit\html\ChargeLevelCreditConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\payment\controllers\RefundPaymentMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\credit\controllers\PendingCreditQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditDetails.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\dispute\html\DisputeConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\credit\html\CreditNoteSearch.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\account\controllers\AccountSearchMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\credit\controllers\CreditActionsMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\writeoff\controllers\WriteOffActionsMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\directdebit\controllers\DirectDebitActionsMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\general\html\PopupTemplate.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\invoice\html\InvoiceLevelCreditConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\directdebit\controllers\DirectDebitQueriesMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\general\html\MainTemplate.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\jsp\debit\controllers\DebitActionsMain.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClient\credit\html\PendingCreditConfirmation.jsp E:\AR Code Scan\v81_0_SP_1_Sandip\webAppRoot\xmlc\amdocs\arClien [1237] The following references to java classes could not be resolved. Please make sure to supply all the required jar files that contain these classes to SCA. amdocs.pvClient.appservices.ProvBean [1237] The following references to java classes could not be resolved. Please make sure to supply all the required jar files that contain these classes to SCA. amdocs.pvClient.appservices.ProvBean [208] An error was encountered while writing to file D:\Temporary\Fortify\sca5.2\build\garfe_810_SP1.scasession Copyright 2007 Fortify Software Inc. Page 114 of 118

Fortify Security Report Issue Count by Category


Issues by Category Poor Style: Identifier Contains Dollar Symbol ($) System Information Leak Trust Boundary Violation J2EE Bad Practices: Non-Serializable Object Stored in Session System Information Leak: HTML Comment in JSP Poor Error Handling: Overly Broad Catch Poor Error Handling: Overly Broad Throws Cross-Site Scripting: Reflected Poor Logging Practice: Use of a System Output Stream Missing Check against Null Redundant Null Check Null Dereference Poor Style: Value Never Read Path Manipulation Poor Error Handling: Empty Catch Block Resource Injection Hidden Field Code Correctness: toString on Array Poor Error Handling: Program Catches NullPointerException Dead Code: Expression is Always true Dead Code: Unused Method Cross-Site Request Forgery Unsafe Reflection Code Correctness: Class Does Not Implement equals J2EE Bad Practices: Leftover Debug Code Unreleased Resource: Streams Command Injection Often Misused: Authentication Password Management: Password in Comment Poor Style: Redundant Initialization Unchecked Return Value Poor Style: Non-final Public Static Field Code Correctness: null Argument to equals() Denial of Service J2EE Misconfiguration: Missing Error Handling Missing Check for Null Parameter Object Model Violation: Just one of equals() and hashCode() Defined Password Management: Hardcoded Password Session Fixation System Information Leak: Incomplete Servlet Error Handling 19112 428 366 314 304 280 244 184 162 102 76 58 36 26 24 24 18 14 14 12 9 8 8 6 6 6 4 4 4 4 4 3 2 2 2 2 2 2 2 2

Copyright 2007 Fortify Software Inc.

Page 115 of 118

Fortify Security Report Issue Breakdown by Analysis


Issues by Analysis

Analysis

<none>: (21,880, 100%)

<none>

Copyright 2007 Fortify Software Inc.

Page 116 of 118

Fortify Security Report Issue Breakdown by OWASP Top Ten 2007


Issues by OWASP Top Ten 2007

OWASP Top Ten 2007

Cross-Site Scripting (XSS): (184, 1%) Injection Flaws: (420, 2%) Insecure Direct Object Reference: (8, 0%) Information Leakage and Improper Error Handling: (1,470, 7%) Broken Authentication and Session Management: (320, 1%) Insecure Cryptographic Storage: (6, 0%)

Not Covered: (19,472, 89%)

Not Covered

Insecure Cryptographic Storage

Broken Authentication and Session Management Information Leakage and Improper Error Handling Injection Flaws Cross-Site Scripting (XSS) Insecure Direct Object Reference

Copyright 2007 Fortify Software Inc.

Page 117 of 118

Fortify Security Report New Issues


Issues by New Issue
The following issues have been discovered since the last scan.

New Issue

Existing Issue: (21,880, 100%)

Existing Issue

Copyright 2007 Fortify Software Inc.

Page 118 of 118

Das könnte Ihnen auch gefallen