Questions tagged [safe-browsing]

Safe Browsing is a service provided by Google that enables applications to check URLs against Google's constantly updated lists of suspected phishing and malware pages.

Safe Browsing is a service provided by Google that enables applications to check URLs against Google's constantly updated lists of suspected phishing and malware pages.

Here are some of the things you can do with the Safe Browsing service:

  • Warn users before clicking on links that appear in your site when they lead to malware-infected pages.
  • Prevent users from posting links to known phishing pages from your site.
  • Check a list of pages against Google's lists of suspected phishing and malware pages.
74 questions
2
votes
1 answer

File not found - Google Safe Browsing Lookup API

I try to make a browser call to https://sb-ssl.google.com/safebrowsing/api/lookup? With and without the API key, etc, but each time and no matter what I do, I get: File not found Firefox can't find the file at…
Antony Carthy
  • 5,549
  • 9
  • 34
  • 38
2
votes
0 answers

Why is Google's Safe Browsing API not marking my URL as a threat?

To prevent users from posting links to phishing scams on our Discord server, I have decided to use the Google Safe Browsing API. Google Transparency Report (which to my knowledge uses the Safe Browsing API) says that the site: contains harmful…
Jan Schultke
  • 17,446
  • 6
  • 47
  • 96
2
votes
0 answers

Why are Pandas Documentation Pages being Flagged as Unsafe by Google Search?

Pandas Warning Screen Pandas Warning Detail Some pages from Pandas' official docs are being flagged as Unsafe by Google.
2
votes
1 answer

Enable chrome SafeBrowsing error with puppeteer

Google Safe Browsing shows client side warning page when browsing to a malicious web site. For example, navigating to https://testsafebrowsing.appspot.com/s/malware.html will display: However, when using puppeteer this warning page is not shown. Is…
Rami Loiferman
  • 853
  • 1
  • 6
  • 22
2
votes
2 answers

PHP check website url using safe browsing API

I am trying to check whether the url is safe or not using Google Safe browsing API I followed following tutorial https://developers.google.com/safe-browsing/v4/get-started I have completed following step as per above url guidence Get an…
Vision Coderz
  • 8,257
  • 5
  • 41
  • 57
2
votes
0 answers

Which database can be used to store the hash prefixes obtained from google safebrowsing api?

For storing data (prefixes of hashes of urls) obtained from google safebrowsing api https://developers.google.com/safe-browsing/v4/ , which is the database recommended ? I want to create a local databases for storing the hash prefixes and full…
Priyanka
  • 261
  • 1
  • 3
  • 10
2
votes
2 answers

java https login and browsing

I want to login to an https site on the internet with java and then read some information. I already looked with firebug to the headers, however I couldn't manage to make it ... Firebug…
Umit
  • 323
  • 1
  • 4
  • 11
2
votes
0 answers

How can I get notifications from Google when they deprecate an API?

Recently, our whole site was stymied because we used Google safe browsing api code that they recently deprecated. If we had know, we would have moved to the newest API. This isn't the only Google api that changed on us, without us knowing. How can…
2
votes
1 answer

How can i use safe-browsing application object to determine whether a url is reported as phishing site or malware site?

Here is code snippet: Components.classes['@mozilla.org/safebrowsing/application;1'] .getService().wrappedJSObject.malwareWarden.listManager_ .safeLookup(test_url, function(tableName){ if (tableName == 'goog-phish-shavar' || tableNmae…
2
votes
2 answers

Is it possible to get the list of google blacklisted domains?

I know that browsers use Google safe browsing service to detect if a domain is blacklisted or not. The client(for example Firefox) basically downloads a hashed list of these domains and then checks if a url is blacklisted or not. My question is…
Alex
  • 1,914
  • 6
  • 26
  • 47
2
votes
1 answer

How to save google safe browsing v3 list

I'm trying to download Google's phishing and malware list from their safe browsing API. I want to use the new V3 API. I was managed to get the redirect URL that makes the list. Here is the response i get: n:1710 i:googpub-phish-shavar…
doron
  • 1,508
  • 3
  • 18
  • 27
2
votes
1 answer

Google safe browsing returning 400 bad request

Google is returning a 400 bad request; but what is wrong with the request? open FSharp.Data let apiKey = "key goes here - removed for stackoverflow" let postUrl = "http://safebrowsing.clients.google.com/safebrowsing/downloads" let testArray =…
JonnyBoats
  • 5,177
  • 1
  • 36
  • 60
2
votes
0 answers

Google Safe Browsing database generation

During these days I would investigate about the mod_security integration with Google Safe Browsing but I can't generate the local GSB database with the HTTP call. Firstly I generated an API Key related to my Google user and if I tried to call the…
2
votes
1 answer

Google Safe Browsing API v2 sample Implementation Android

I am trying to implement a Sample application in Android which gets the malware and phishing list from safe Browsing API and checks the authenticity of URL, this is client side method, but I am constantly getting 400 (Bad Request) as response code…
user3300203
  • 985
  • 2
  • 8
  • 7
1
vote
1 answer

Error: 403 Client Error: Forbidden for url

I'm writing a program that queries Google Safe Browsing for certain urls. I am getting the following error: 'Error: 403 Client Error: Forbidden for url: https://safebrowsing.googleapis.com/v4/threatMatches:find?key=[API_KEY]' import requests, json,…