niusouti.com

单选题Consider the Mysql Enterprise Audit plugin. Which statement is true when you identify a connection event that has used external authentication?()A The attribute STATUS is set to the string EXTERNAL_AUTHB The attribute PRIV_USER contains the usernameC T

题目
单选题
Consider the Mysql Enterprise Audit plugin. Which statement is true when you identify a connection event that has used external authentication?()
A

The attribute STATUS is set to the string EXTERNAL_AUTH

B

The attribute PRIV_USER contains the username

C

The event type that is given in the attribute NAME is EXTERNAL_AUTH

D

There is no differentiation between native and external authentication events

E

External authentication is managed through external auditing logs

F

The PROXY_PRIV user shows a username if external authentication is used


相似考题
更多“单选题Consider the Mysql Enterprise Audit plugin. Which statement is true when you identify a connection event that has used external authentication?()A The attribute STATUS is set to the string EXTERNAL_AUTHB The attribute PRIV_USER contains the usernameC T”相关问题
  • 第1题:

    Consider the Mysql Enterprise Audit plugin. A CSV file called data.csv has 100 rows of data. The stored procedure prepare_db ( ) has 10 auditable statements.You run the following statements in the mydb database: Mysql> CALL prepare_db ( );Mysql> LOAD DATA INFILE ‘/tmp/data.cav‘ INTO TABLE mytable; Mysql> SHOW TABLES;How many events are added to the audit log as a result of the preceding statements?()

    A.12; only top-level statements and stored procedure events are logged

    B.111; top-level statements and all lower-level statements are logged

    C.3; only the top-level statements are logged

    D.102; top-level statements are logged, but LOAD DATA INFILE is logged as a separate event


    参考答案:C

  • 第2题:

    Consider the Mysql Enterprise Audit plugin. A CSV file called data.csv has 100 rows of data. The stored procedure prepare_db ( ) has 10 auditable statements. You run the following statements in the mydb database: Mysql> CALL prepare_db ( ); Mysql> LOAD DATA INFILE '/tmp/data.cav' INTO TABLE mytable; Mysql> SHOW TABLES; How many events are added to the audit log as a result of the preceding statements?()

    • A、12; only top-level statements and stored procedure events are logged
    • B、111; top-level statements and all lower-level statements are logged
    • C、3; only the top-level statements are logged
    • D、102; top-level statements are logged, but LOAD DATA INFILE is logged as a separate event

    正确答案:C

  • 第3题:

    For which three events can web application event listeners be registered?()

    • A、When a session is created
    • B、After a servlet is destroyed
    • C、When a session has timed out
    • D、When a cookie has been created
    • E、When a servlet has forwarded a request
    • F、When a session attribute value is changed

    正确答案:A,C,F

  • 第4题:

    Which three statements are true regarding the fine/x7fgrained auditing (FGA)?()

    • A、FGA is possible on SELECT statements only.
    • B、The audit trail for FGA is stored in the FGA_LOG$ table.
    • C、The audit trail for FGA is stored in the AUD_LOG$ table.
    • D、FGA enables a SQL predicate to define when to audit an event.
    • E、FGA audits DELETE statements only when audit columns are specified.
    • F、FGA includes the SQL statement used by the user as part of the audit event entry.

    正确答案:B,D,F

  • 第5题:

    You have a secured Windows Communication Foundation (WCF) service. You need to track unsuccessful attempts to access the service. What should you do?()

    • A、Set the authorization Manager Type attribute of the service Authorization behavior to Message.
    • B、Set the include Exception Detailsln Faults attribute of the service Debug behavior to true.
    • C、Set the Mode attribute of the security configuration element to Message.
    • D、Set the message Authentication AuditLevel attribute of the service Security Audit behavior to Failure.

    正确答案:D

  • 第6题:

    You write a logging function for a Web Form. You call the logging function from the Page_Unload event handler. You test the Web Form and notice that the Page_Unload event handler does not call the logging function. You need to ensure that the logging function is called. What are two possible ways to achieve this goal? ()

    • A、Set the Page attribute to AutoEventWireup="False". Remove the attribute onunload="Page_Unload" from the Web Form element.
    • B、Set the Page attribute to AutoEventWireup="False". Add the attribute OnUnload="Page_Unload" to the Web Form element.
    • C、Set the Page attribute to AutoEventWireup="False". Add the Web Form attribute autocomplete=on.
    • D、Set the Page attribute to AutoEventWireup="True".

    正确答案:B,D

  • 第7题:

    单选题
    You have a secured Windows Communication Foundation (WCF) service. You need to track unsuccessful attempts to access the service. What should you do?()
    A

    Set the authorization Manager Type attribute of the service Authorization behavior to Message.

    B

    Set the include Exception Detailsln Faults attribute of the service Debug behavior to true.

    C

    Set the Mode attribute of the security configuration element to Message.

    D

    Set the message Authentication AuditLevel attribute of the service Security Audit behavior to Failure.


    正确答案: B
    解析: 暂无解析

  • 第8题:

    单选题
    Your network contains a Network Policy Server (NPS) named Server1.NPS1 provides authentication for all of the VPN servers on the network.You need to track the usage information of all VPN connections.Which RADIUS attribute should you log?()
    A

    Acct-Session-Id

    B

    Acct-Status-Type

    C

    Class

    D

    NAS-Identifier


    正确答案: B
    解析: 暂无解析

  • 第9题:

    单选题
    Consider the MySQL Enterprise Audit plugin. On attempting to start the MySQL service after a crash, notice the following error: [ERROR] Plugin ‘audit_log’ init function returned error. In the audit log file, you notice the final entry: … What action should you take to fix the error and allow the service to start?()
    A

    Re-install the audit plugin

    B

    Execute the command FLUSH LOGS

    C

    Execute the command SET GLOBAL audit_log_fiush= ON

    D

    Move or rename the existing audit.log file


    正确答案: D
    解析: 暂无解析

  • 第10题:

    单选题
    You are creating a Windows Communication Foundation (WCF) service that accepts messages from clients when they are started. The message is defined as follows:[MessageContract] public class Agent { public string CodeName { get; set; } public string SecretHandshake { get; set; }}You have the following requirements: The CodeName property must be sent in clear text. The service must be able to verify that the property value was not changed after being sent by the client. The SecretHandshake property must not be sent in clear text and must be readable by the service.What should you do?()
    A

    Add a MessageBodyMember attribute to the CodeName property and set the ProtectionLevel to Sign. Add a MessageBodyMember attribute to the SecretHandshake property and set the ProtectionLevel to EncryptAndSign.

    B

    Add a DataProtectionPermission attribute to the each property and set the ProtectData property to true.

    C

    Add an xmlText attribute to the CodeName property and set the DataType property to Signed. Add a PasswordPropertyText attribute to the SecretHandshake property and set its value to true.

    D

    Add an ImmutableObject attribute to the CodeName property and set its value property to true. Add a Browsable attribute to the SecretHandshake property and set its value to false.


    正确答案: D
    解析: 暂无解析

  • 第11题:

    单选题
    To make audit information more productive, the DBA executes the following command before starting an auditoperation: SQL> ALTER SYSTEM SET AUDIT_TRAIL=DB,EXTENDED SCOPE=SPFILE; Which statement is true regarding the audit record generated when auditing starts after restarting Thedatabase()
    A

    It contains only the plan for the SQL statement executed by the user.

    B

    It contains the SQL text executed by the user and the bind variables used with it.

    C

    It contains the plan and statistics associated with the SQL statement executed by the user.

    D

    It contains the plan for the SQL statement executed by the user and the bind variables used with it


    正确答案: C
    解析: 暂无解析

  • 第12题:

    单选题
    Your web application requires the adding and deleting of many session attributes during a complex usecase. A bug report has come in that indicates that an important session attribute is being deleted too soonand a NullPointerException is being thrown several interactions after the fact. You have decided to create asession event listener that will log when attributes are being deleted so you can track down when theattribute is erroneously being deleted. Which listener class will accomplish this debugging goal?()
    A

    Create an HttpSessionAttributeListener class and implement the attributeDeleted method and log the attribute name using the getName method on the event object.

    B

    Create an HttpSessionAttributeListener class and implement the attributeRemoved method and log the attribute name using the getName method on the event object.

    C

    Create an SessionAttributeListener class and implement the attributeRemoved method and log the attribute name using the getAttributeName method on the event object.

    D

    Create an SessionAttributeListener class and implement the attributeDeleted method and log the attribute name using the getAttributeName method on the event object.


    正确答案: A
    解析: 暂无解析

  • 第13题:

    To make audit information more productive, the DBA executes the following command before startingan audit operation:  SQL> ALTER SYSTEM SET AUDIT_TRAIL=DB,EXTENDED SCOPE=SPFILE;  Which statement is true regarding the audit record generated when auditing starts after restarting thedatabase()

    • A、It contains only the plan for the SQL statement executed by the user.
    • B、It contains the SQL text executed by the user and the bind variables used with it.
    • C、It contains the plan and statistics associated with the SQL statement executed by the user.
    • D、It contains the plan for the SQL statement executed by the user and the bind variables used with it.

    正确答案:B

  • 第14题:

    Your web application requires the adding and deleting of many session attributes during a complex usecase. A bug report has come in that indicates that an important session attribute is being deleted too soonand a NullPointerException is being thrown several interactions after the fact. You have decided to create asession event listener that will log when attributes are being deleted so you can track down when theattribute is erroneously being deleted. Which listener class will accomplish this debugging goal?()

    • A、Create an HttpSessionAttributeListener class and implement the attributeDeleted method and log the attribute name using the getName method on the event object.
    • B、Create an HttpSessionAttributeListener class and implement the attributeRemoved method and log the attribute name using the getName method on the event object.
    • C、Create an SessionAttributeListener class and implement the attributeRemoved method and log the attribute name using the getAttributeName method on the event object.
    • D、Create an SessionAttributeListener class and implement the attributeDeleted method and log the attribute name using the getAttributeName method on the event object.

    正确答案:B

  • 第15题:

    When a job exceeds the date specified in its END_DATE attribute, which of the following will happen?()

    • A、The job will be dropped automatically if the value of the AUTO_DROP attribute is TRUE
    • B、The job will only be disabled if the value of the AUTO_DROP attribute is FALSE
    • C、The STATE attribute of the job will be set to COMPLETED if the value of the AUTO_DROP attribute is FALSE
    • D、All objects referenced by the job will be dropped if the value of the AUTO_DROP attribute is TRUE and the value of the CASCADE attribute is TRUE
    • E、The STATE column of the job table will be set to COMPLETED for the job

    正确答案:A,B,E

  • 第16题:

    Consider the Mysql Enterprise Audit plugin. Which statement is true when you identify a connection event that has used external authentication?()

    • A、The attribute "STATUS" is set to the string EXTERNAL_AUTH
    • B、The attribute "PRIV_USER" contains the username
    • C、The event type that is given in the attribute "NAME" is EXTERNAL_AUTH
    • D、There is no differentiation between native and external authentication events
    • E、External authentication is managed through external auditing logs
    • F、The "PROXY_PRIV" user shows a username if external authentication is used

    正确答案:E

  • 第17题:

    Your network contains a Network Policy Server (NPS) named Server1.NPS1 provides authentication for all of the VPN servers on the network.You need to track the usage information of all VPN connections.Which RADIUS attribute should you log?()

    • A、Acct-Session-Id
    • B、Acct-Status-Type
    • C、Class
    • D、NAS-Identifier

    正确答案:C

  • 第18题:

    You are creating a Windows Communication Foundation (WCF) service that accepts messages from clients when they are started. The message is defined as follows. [MessageContract] public class Agent { public string CodeName { get; set; }public string SecretHandshake { get; set; } } You have the following requirements: "The CodeName property must be sent in clear text. The service must be able to verify that the property value was not changed after being sent by the client. "The SecretHandshake property must not be sent in clear text and must be readable by the service. What should you do?() 

    • A、 Add a MessageBodyMember attribute to the CodeName property and set the ProtectionLevel to Sign. Add a MessageBodyMember attribute to the SecretHandshake property and set the protectionLevel to EncryptAndSign.
    • B、 Add a DataProtectionPermission attribute to the each property and set the ProtectData property to true.
    • C、 Add an XmlText attribute to the CodeName property and set the DataType property to Signed. add a PasswordPropertyText attribute to the SecretHandshake property and set its value to true.
    • D、 Add an ImmutableObject attribute to the CodeName property and set its value property to true. Add a Browsable attribute to the SecretHandshake property and set its value to false.

    正确答案:A

  • 第19题:

    单选题
    Consider the Mysql Enterprise Audit plugin. A CSV file called data.csv has 100 rows of data. The stored procedure prepare_db ( ) has 10 auditable statements. You run the following statements in the mydb database: Mysql> CALL prepare_db ( ); Mysql> LOAD DATA INFILE '/tmp/data.cav' INTO TABLE mytable; Mysql> SHOW TABLES; How many events are added to the audit log as a result of the preceding statements?()
    A

    12; only top-level statements and stored procedure events are logged

    B

    111; top-level statements and all lower-level statements are logged

    C

    3; only the top-level statements are logged

    D

    102; top-level statements are logged, but LOAD DATA INFILE is logged as a separate event


    正确答案: B
    解析: 暂无解析

  • 第20题:

    多选题
    You are creating an ASP.NET web application that hosts several Windows Communication Foundation (WCF) services. The services have ASP.NET Compatibility Mode enabled. Users authenticate with the Web application by using a cookie-based ASP.NET Forms Authentication model. You add a service file named Authentication.svc that contains the following code segment: You need to ensure that users can access the WCF services without having to re-authenticate. Which two configuration settings should you add? (Each is part of a complete solution. Choose two.)()
    A

    In the system web. Extensions scripting/webServices/authenticationService element, set the enabled attribute to true.

    B

    In the system web. Extensions scripting/webServices/profileService element, set the enabled attribute to true.

    C

    Add a service endpoint with basicHttpBinding for the contract System.Web.ApplicationServices.AuthenticationService.

    D

    Add a custom service behavior named AuthenticationService Type Behaviors with a service AuthenticationManager element that has service AuthenticationManagerType set to System.Web.Security.SQL Membership Provider


    正确答案: B,A
    解析: 暂无解析

  • 第21题:

    单选题
    You are creating a Windows Communication Foundation (WCF) service that accepts messages from clients when they are started. The message is defined as follows. [MessageContract] public class Agent { public string CodeName { get; set; }public string SecretHandshake { get; set; } } You have the following requirements: "The CodeName property must be sent in clear text. The service must be able to verify that the property value was not changed after being sent by the client. "The SecretHandshake property must not be sent in clear text and must be readable by the service. What should you do?()
    A

     Add a MessageBodyMember attribute to the CodeName property and set the ProtectionLevel to Sign. Add a MessageBodyMember attribute to the SecretHandshake property and set the protectionLevel to EncryptAndSign.

    B

     Add a DataProtectionPermission attribute to the each property and set the ProtectData property to true.

    C

     Add an XmlText attribute to the CodeName property and set the DataType property to Signed. add a PasswordPropertyText attribute to the SecretHandshake property and set its value to true.

    D

     Add an ImmutableObject attribute to the CodeName property and set its value property to true. Add a Browsable attribute to the SecretHandshake property and set its value to false.


    正确答案: D
    解析: 暂无解析

  • 第22题:

    多选题
    You create a Web Form. The Web Form contains two Web Parts named CustomerPart and OrdersPart. CustomerPart contains a drop-down list of customers. OrdersPart contains a list of orders that a customer has placed. You need to create a static connection between CustomerPart and OrdersPart. When a user selects a customer from CustomerPart, OrdersPart must update. Which four actions should you perform? ()
    A

    Add the ConnectionProvider attribute to OrdersPart.

    B

    Add the ConnectionProvider attribute to CustomerPart.

    C

    Add the ConnectionConsumer attribute to CustomerPart.

    D

    Add the ConnectionConsumer attribute to OrdersPart.

    E

    Add OrdersPart and CustomerPart to the WebParts directory.

    F

    Add OrdersPart and CustomerPart to the App_Code directory.

    G

    Declare the connections within a StaticConnections subtag of a WebPartZone class.

    H

    Declare the connections within a StaticConnections subtag of a WebPartManager class.

    I

    Define an interface specifying the methods and properties that are shared between the Web Parts.


    正确答案: D,H
    解析: 暂无解析

  • 第23题:

    单选题
    To make audit information more productive, the DBA executes the following command before startingan audit operation:  SQL> ALTER SYSTEM SET AUDIT_TRAIL=DB,EXTENDED SCOPE=SPFILE;  Which statement is true regarding the audit record generated when auditing starts after restarting thedatabase()
    A

    It contains only the plan for the SQL statement executed by the user.

    B

    It contains the SQL text executed by the user and the bind variables used with it.

    C

    It contains the plan and statistics associated with the SQL statement executed by the user.

    D

    It contains the plan for the SQL statement executed by the user and the bind variables used with it.


    正确答案: B
    解析: 暂无解析