[epiphany/wip/google-safe-browsing: 54/57] gsb-service: Check social engineering threats regardless of platform
- From: Gabriel Ivașcu <gabrielivascu src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [epiphany/wip/google-safe-browsing: 54/57] gsb-service: Check social engineering threats regardless of platform
- Date: Tue, 3 Oct 2017 16:48:53 +0000 (UTC)
commit e57f7dd260fa3ba6493b13ccd3672c15096b02f0
Author: Gabriel Ivascu <gabrielivascu gnome org>
Date: Tue Oct 3 13:32:16 2017 +0200
gsb-service: Check social engineering threats regardless of platform
lib/safe-browsing/ephy-gsb-service.c | 14 ++++++++++----
1 files changed, 10 insertions(+), 4 deletions(-)
---
diff --git a/lib/safe-browsing/ephy-gsb-service.c b/lib/safe-browsing/ephy-gsb-service.c
index f0cd458..f7f406d 100644
--- a/lib/safe-browsing/ephy-gsb-service.c
+++ b/lib/safe-browsing/ephy-gsb-service.c
@@ -251,13 +251,19 @@ ephy_gsb_service_fetch_threat_lists (EphyGSBService *self)
threat_lists = json_object_get_array_member (body_obj, "threatLists");
for (guint i = 0; i < json_array_get_length (threat_lists); i++) {
descriptor = json_array_get_object_element (threat_lists, i);
+ threat_type = json_object_get_string_member (descriptor, "threatType");
platform_type = json_object_get_string_member (descriptor, "platformType");
- /* Filter out non-Linux threats. */
- if (g_strcmp0 (platform_type, "LINUX") != 0)
- continue;
+ /* Keep SOCIAL_ENGINEERING threats that are for any platform.
+ * Keep MALWARE/UNWANTED_SOFTWARE threats that are for Linux only.
+ */
+ if (g_strcmp0 (threat_type, "SOCIAL_ENGINEERING") == 0) {
+ if (g_strcmp0 (platform_type, "ANY_PLATFORM") != 0)
+ continue;
+ } else if (g_strcmp0 (platform_type, "LINUX") != 0) {
+ continue;
+ }
- threat_type = json_object_get_string_member (descriptor, "threatType");
threat_entry_type = json_object_get_string_member (descriptor, "threatEntryType");
retval = g_list_prepend (retval, ephy_gsb_threat_list_new (threat_type,
platform_type,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]