PT0-002 Exam Question 81

Penetration on an assessment for a client organization, a penetration tester notices numerous outdated software package versions were installed ...s-critical servers. Which of the following would best mitigate this issue?
  • PT0-002 Exam Question 82

    A penetration tester managed to exploit a vulnerability using the following payload:
    IF (1=1) WAIT FOR DELAY '0:0:15'
    Which of the following actions would best mitigate this type ol attack?
  • PT0-002 Exam Question 83

    A penetration tester developed the following script to be used during an engagement:
    #!/usr/bin/python
    import socket, sys
    ports = [21, 22, 23, 25, 80, 139, 443, 445, 3306, 3389]
    if len(sys.argv) > 1:
    target = socket.gethostbyname (sys. argv [0])
    else:
    print ("Few arguments.")
    print ("Syntax: python {} <target ip>". format (sys. argv [0]))
    sys.exit ()
    try:
    for port in ports:
    s = socket. socket (socket. AF_INET, socket. SOCK_STREAM)
    s.settimeout (2)
    result = s.connect_ex ((target, port) )
    if result == 0:
    print ("Port {} is opened". format (port) )
    except KeyboardInterrupt:
    print ("\nExiting ... ")
    sys.exit ()
    However, when the penetration tester ran the script, the tester received the following message:
    socket.gaierror: [Errno -2] Name or service not known
    Which of the following changes should the penetration tester implement to fix the script?
  • PT0-002 Exam Question 84

    A penetration tester is performing reconnaissance for a web application assessment. Upon investigation, the tester reviews the robots.txt file for items of interest.
    INSTRUCTIONS
    Select the tool the penetration tester should use for further investigation.
    Select the two entries in the robots.txt file that the penetration tester should recommend for removal.

    PT0-002 Exam Question 85

    A penetration tester is reviewing the security of a web application running in an laaS compute instance. Which of the following payloads should the tester send to get the running process credentials?