forked from GoogleCloudPlatform/python-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubmit_uri.py
88 lines (73 loc) · 3.43 KB
/
submit_uri.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# [START webrisk_submit_uri]
from google.cloud import webrisk_v1
from google.cloud.webrisk_v1 import Submission
def submit_uri(project_id: str, uri: str) -> Submission:
"""Submits a URI suspected of containing malicious content to be reviewed.
Returns a google.longrunning.Operation which, once the review is complete, is updated with its result.
You can use the [Pub/Sub API] (https://cloud.google.com/pubsub) to receive notifications for the
returned Operation.
If the result verifies the existence of malicious content, the site will be added to the
Google's Social Engineering lists in order to protect users that could get exposed to this
threat in the future. Only allow-listed projects can use this method during Early Access.
Args:
project_id: The name of the project that is making the submission.
uri: The URI that is being reported for malicious content to be analyzed.
uri = "http://testsafebrowsing.appspot.com/s/malware.html"
Returns:
Submission response that contains the URI submitted.
"""
webrisk_client = webrisk_v1.WebRiskServiceClient()
# Set the URI to be submitted.
submission = webrisk_v1.Submission()
submission.uri = uri
# Confidence that a URI is unsafe.
threat_confidence = webrisk_v1.ThreatInfo.Confidence(
level=webrisk_v1.ThreatInfo.Confidence.ConfidenceLevel.MEDIUM
)
# Context about why the URI is unsafe.
threat_justification = webrisk_v1.ThreatInfo.ThreatJustification(
# Labels that explain how the URI was classified.
labels=[
webrisk_v1.ThreatInfo.ThreatJustification.JustificationLabel.AUTOMATED_REPORT
],
# Free-form context on why this URI is unsafe.
comments=["Testing submission"],
)
# Set the context about the submission including the type of abuse found on the URI and
# supporting details.
threat_info = webrisk_v1.ThreatInfo(
# The abuse type found on the URI.
abuse_type=webrisk_v1.types.ThreatType.SOCIAL_ENGINEERING,
threat_confidence=threat_confidence,
threat_justification=threat_justification,
)
# Set the details about how the threat was discovered.
threat_discovery = webrisk_v1.ThreatDiscovery(
# Platform on which the threat was discovered.
platform=webrisk_v1.ThreatDiscovery.Platform.MACOS,
# CLDR region code of the countries/regions the URI poses a threat ordered
# from most impact to least impact. Example: "US" for United States.
region_codes=["US"],
)
request = webrisk_v1.SubmitUriRequest(
parent=f"projects/{project_id}",
submission=submission,
threat_info=threat_info,
threat_discovery=threat_discovery,
)
response = webrisk_client.submit_uri(request).result(timeout=30)
return response
# [END webrisk_submit_uri]