Question 11

Which of the following BEST explains why it is important to maintain confidentiality of any identified findings when performing a penetration test?
  • Question 12

    A penetration tester is performing a black box assessment on a web-based banking application. The tester was only provided with a URL to the login page. Give the below code and output Import requests from BeautifulSoup import BeautifulSoup request = requests.get ("https://www.bank.com/admin") respHeaders, respBody = request[0]. Request[1] if respHeader.statuscode == 200:
    soup = BeautifulSoup (respBody)
    soup = soup.FindAll ("div", ("type" : "hidden"))
    print respHeader. StatusCode, StatusMessage
    else:
    print respHeader. StatusCode, StatusMessage
    Output: 200 OK
    Which of the following is the tester intending to do?
  • Question 13

    Place each of the following passwords in order of complexity from least complex (1) to most complex (4), based on the character sets represented Each password may be used only once

    Question 14

    A penetration tester is performing a remote scan to determine if the server farm is compliant with the company's software baseline . Which of the following should the penetration tester perform to verify compliance with the baseline?
  • Question 15

    A penetration tester has identified a directory traversal vulnerability.
    Which of the following payloads could have helped the penetration tester identify this vulnerability?