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
1
vote
1 answer

How can I query multiple URL's with Google Safe Browsing API using Powershell?

The script below works fine to check a single URL, but what is the simplest way to check a list of URL's in one query? Turning $URL into an array doesn't work (only the first entry is checked). $HEADERS = @{ 'Content-Type' = "application/json"…
Mullets4All
  • 39
  • 1
  • 8
1
vote
1 answer

Test the return of the Google Safe Browsing API

I am currently implementing the Safe Browsing api on one of my projects. https://developers.google.com/safe-browsing/v4/lookup-api The problem is that I don't see how to test the API return in case a malicious site is found. Because even if the…
Rapishiny
  • 37
  • 6
1
vote
0 answers

Why browsers block specific URL via safebrowsing but safebrowsing API don't say URL is dangerous?

Currently I implementing google safe browsing on my web service to filter dangerous URL. When I was testing some specific malicious URL, I find out that browsers which using fullHashes:find API method detects some specific URL as dangerous, but…
al_bl
  • 11
  • 1
1
vote
0 answers

getting blank response from Google safe browsing api

I am using postman to send a post request to the google safe browsing api,but I am getting a blank response in return with status 200 ok https://safebrowsing.googleapis.com/v4/threatMatches:find?key=AIzaSyCG0_ltenJACSir1moT_4bcK4-ROCq4myc { …
1
vote
0 answers

Google Safebrowsing search returns threat but API does not

When I try to search computerquestions.on.nimp.org, Google Safe browsing UI returns that the link is harmful: Google Safe browsing UI Result But when I try to use the "https://safebrowsing.googleapis.com/v4/threatMatches:find" to search for…
Rogin Neil
  • 55
  • 1
  • 7
1
vote
1 answer

Is there any way to trace or listen that user clicks on any link from a browser, or any chat messenger app or even SMS?

I am trying to trace link click anywhere & in any app in android device. For Example, if user clicks links inside WhatsApp - before link redirects to browser, i want to trace it inside my application that link is clicked. Is there any way to achieve…
Bhoomika Patel
  • 1,895
  • 1
  • 13
  • 30
1
vote
1 answer

How to checkout my Google Safebrowsing lookup code is correct with a valid URL 'hit'?

I am planning on using the Google Safebrowsing API to vet incoming URLs in my app. There are a few steps to get through prior to discovering if a URL has malware, etc though: Create a combination of possible URLs to match from the base one (with…
user1561108
  • 2,666
  • 9
  • 44
  • 69
1
vote
1 answer

Google Safe Browsing API (v4) Empty JSON for SE URL

When I surf into the URL (BE CAREFUL! FISHING SITE): http://www(dot)onlinevisibilityinc(dot)com/ GOOGLE WARNS ME WITH FISHING ALERT. When I try to use Google Safe Browsing and check this url, the received status code is 200 but the response json is…
1
vote
1 answer

How to set local database for google safe browsing update API (v4)?

I am building a service for checking for phishing or malware URLs for one of my applications. This service will be running on google app engine. Now, I want to use google safe browsing's Update API (v4) to have local database of URL hashes. But I am…
1
vote
1 answer

Google Safe Browsing v4 API java

Here is the code to see which url is safe for browsing.I have used google api for it. The problem i am facing is I am not able to get SafeBrowsing class object to hit the given url. So kindly see if anyone have solution. public static void…
rajat
  • 53
  • 8
1
vote
1 answer

Can Google Safe Browsing work on the domains instead of URLs?

I would like to use Google safe browsing to find malicious domains, and I doubt that it reports the whole domain(like example.com) as malicious if only a specific path in the domain (example.com/path1/maliciousfile.html) is malicious. So if I check…
Alex
  • 1,914
  • 6
  • 26
  • 47
1
vote
0 answers

google safebrowsing api response : Deadline expired before operation could complete

I'm using the google safebrowsing api for getting fullhashes for the prefixes of hashes of url present in threat lists. When i'm using 5 threads to do the job, the job completes but the latency is high, so i tried increasing the threads to 7 and…
priyankatanvani
  • 173
  • 1
  • 12
1
vote
1 answer

Google Safe Browsing API v4 - Empty response

Despite that I check a malicious URL (http://fileserver03.com), empty response returns from Google Safe Browsing API v4. Here is the code I have tried: String postURL = https://safebrowsing.googleapis.com/v4/threatMatches:find?key=API_KEY String…
talha06
  • 6,206
  • 21
  • 92
  • 147
1
vote
3 answers

Google safe browse API lookup Node.js

I am having trouble getting a google safe search lookup working. Here is the code I am trying and I am always getting {} in the response var request = require("request-promise") var body = { "client": { "clientId": "myclientid", …
Mandeep Singh
  • 7,674
  • 19
  • 62
  • 104
1
vote
1 answer

Google Safe Browsing HTTP POST - 403 response

I'm working on a program that queries Google Safe Browsing for certain urls, but I'm getting an error that I don't think I should be getting. I'm sending the following request: 2 http://google.com http://facebook.com via POST to:…
Chris
  • 57,622
  • 19
  • 111
  • 137