sukohi/google-safe-browsing

A Laravel package to check if a specific URL is secure or not through Google Safe Browsing API.

2.0.1 2016-03-03 19:34 UTC

This package is not auto-updated.

Last update: 2024-04-27 22:40:02 UTC


README

A Laravel package to check if a specific URL is secure or not through Google Safe Browsing API.
This package is inspired by winternight/google-safe-browsing . (But unfortunately I couldn't install the package via composer.)
(This is for Laravel 5+.)

Installation

Execute composer command.

composer require sukohi/google-safe-browsing:2.*

Register the service provider in app.php

'providers' => [
    ...Others...,  
    Sukohi\GoogleSafeBrowsing\GoogleSafeBrowsingServiceProvider::class,
]

Also alias

'aliases' => [
    ...Others...,  
    'GoogleSafeBrowsing'   => Sukohi\GoogleSafeBrowsing\Facades\GoogleSafeBrowsing::class
]

Preparation

1.You need to get your API key for Google Safe Browsing API.
2.Publish the config file.

php artisan vendor:publish --force

3.Set your API key in YOUR-APP/config/google_safe_browsing.php like so.

'api_key' => '*************************************'

Basic Usage

if(GoogleSafeBrowsing::isSecure('https://github.com/SUKOHI')) {

    echo 'Secure!';

}

Get more details

After calling isSecure('URL'), call a method you want like so.

if(GoogleSafeBrowsing::isPhishing()) {

    echo 'This could be a phishing site!';

}

if(GoogleSafeBrowsing::isMalware()) {

    echo 'This could be a malicious software!';

}

if(GoogleSafeBrowsing::isUnwanted()) {

    echo 'This could be a unwanted site!';

}

License

This package is licensed under the MIT License.

Copyright 2016 Sukohi Kuhoh