Sharing-and-Visibility-Designer 문제 121

다음 코드 스니펫의 잠재적인 취약점 두 가지는 무엇입니까? <apex:페이지> <apex:양식>
<apex:outputText value="이름 입력"/> <apex:inputText value="{!name}" /> <apex:commandButton value="Query" action="{!query}" /> </apex:form > </apex:page> public class SOQLController { public String name { get { return name;} set {name=value;} } public PageReference query() { String qryString='SELECT Id FROM Contact WHERE '+ '(IsDeleted = false 및 Name like \'%' + name + '%\'}'; queryResult = Database.query(qryString); retunr null; } } 2개의 답변 선택

Sharing-and-Visibility-Designer 문제 122

Universal 컨테이너에는 두 개의 Enterprise Territory Management 영역(포르투갈 및 남부 유럽)에 대한 기준을 충족하는 고객이 있습니다. 이 계정의 영역에 기회를 할당하려면 무엇이 필요합니까?

Sharing-and-Visibility-Designer 문제 123

다음 코드 조각의 보안 취약점은 무엇입니까?
<꼭대기:형태>
<apex:commandButton rerender="outputIt" value="업데이트"/>
<apex:inputText 값="{ !myTextField}"/>
</apex:양식>
<apex:outputPanel id="출력잇">
myTextField의 값은 <apex:outputText value="{!myTextField}" escape="false"/>입니다.
</apex:출력 패널>