Question 241

A penetration tester discovered a code repository and noticed passwords were hashed before they were stored in the database with the following code? salt = '123' hash = hashlib.pbkdf2_hmac('sha256', plaintext, salt,
10000) The tester recommended the code be updated to the following salt = os.urandom(32) hash = hashlib.pbkdf2_hmac('sha256', plaintext, salt, 10000) Which of the following steps should the penetration tester recommend?
  • Question 242

    A penetration tester wants to accomplish ARP poisoning as part of an attack. Which of the following tools will the tester most likely utilize?
  • Question 243

    A penetration tester is exploring a client's website. The tester performs a curl command and obtains the following:
    * Connected to 10.2.11.144 (::1) port 80 (#0)
    > GET /readmine.html HTTP/1.1
    > Host: 10.2.11.144
    > User-Agent: curl/7.67.0
    > Accept: */*
    >
    * Mark bundle as not supporting multiuse
    < HTTP/1.1 200
    < Date: Tue, 02 Feb 2021 21:46:47 GMT
    < Server: Apache/2.4.41 (Debian)
    < Content-Length: 317
    < Content-Type: text/html; charset=iso-8859-1
    <
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta name="viewport" content="width=device-width" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>WordPress &#8250; ReadMe</title>
    <link rel="stylesheet" href="wp-admin/css/install.css?ver=20100228" type="text/css" />
    </head>
    Which of the following tools would be BEST for the penetration tester to use to explore this site further?
  • Question 244

    Which of the following is a rules engine for managing public cloud accounts and resources?
  • Question 245

    A penetration tester finds a PHP script used by a web application in an unprotected internal source code repository. After reviewing the code, the tester identifies the following:

    Which of the following tools will help the tester prepare an attack for this scenario?