PT0-002 Tools and Code Analysis • Set 6
PT0-002 Tools and Code Analysis Practice Test 6 — 15 questions with explanations. Free, no signup.
A tester runs a Python script to perform a directory traversal attack. The output shows: 'Error: 403 Forbidden'. What is the most likely cause?
Refer to the exhibit. ```python import requests url = 'http://example.com/download?file=../../etc/passwd' response = requests.get(url) print(response.status_code) ```