Skip to content

Commit

Permalink
docs: Specify URL type
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Oct 21, 2024
1 parent c5c70ad commit 635e36e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dataset/metadata_aggregator.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def get_kingfisher_metadata(kingfisher_process_cursor, collection_id):

for extension_url in deep_get(row["data"], "extensions", list):
try:
# Security: Potential SSRF via user-provided URL (within OCDS publication).
# Security: Potential SSRF via extension URLs (within OCDS publication).
response = requests.get(extension_url, timeout=30)
if response.status_code != requests.codes.ok:
continue
Expand Down

0 comments on commit 635e36e

Please sign in to comment.