Solved

A Product Owner Is Reviewing the Output of a Web-Application

Question 434

Multiple Choice

A product owner is reviewing the output of a web-application penetration test and has identified an application that is presenting sensitive information in cleartext on a page. Which of the following code snippets would be BEST to use to remediate the vulnerability?


A) A product owner is reviewing the output of a web-application penetration test and has identified an application that is presenting sensitive information in cleartext on a page. Which of the following code snippets would be BEST to use to remediate the vulnerability? A)    B)  <asp:TextBox ID= txtACCT  TabIndex= 6  runat= server  Width= 206px  MaxLength= 11  TextMode= Password ></asp:TextBox> C)    D)  Query hqlQuery = session.createQuery( select transaction from Accounts as orders where acct.id =? ) ; List results = hqlQuery.setString(0, 122-ACC-988-QTWYTFDL ) .list() ;
B) <asp:TextBox ID="txtACCT" TabIndex="6" runat="server" Width="206px" MaxLength="11" TextMode="Password"></asp:TextBox>
C) A product owner is reviewing the output of a web-application penetration test and has identified an application that is presenting sensitive information in cleartext on a page. Which of the following code snippets would be BEST to use to remediate the vulnerability? A)    B)  <asp:TextBox ID= txtACCT  TabIndex= 6  runat= server  Width= 206px  MaxLength= 11  TextMode= Password ></asp:TextBox> C)    D)  Query hqlQuery = session.createQuery( select transaction from Accounts as orders where acct.id =? ) ; List results = hqlQuery.setString(0, 122-ACC-988-QTWYTFDL ) .list() ;
D) Query hqlQuery = session.createQuery("select transaction from Accounts as orders where acct.id =?") ; List results = hqlQuery.setString(0,"122-ACC-988-QTWYTFDL") .list() ;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions