sukohi/google-safe-browsing

A Laravel package to check if a specific URL is secure or not through Google Safe Browsing API.
38
Install
composer require sukohi/google-safe-browsing
Latest Version:2.0.1
License:MIT
Last Updated:Mar 3, 2016
Links: GitHub  ·  Packagist
Maintainer: Sukohi

GoogleSafeBrowsing

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

Related Packages

erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

622,487,850 9,703
laravel/framework

The Laravel Framework.

568,663,231 34,884
laravel/tinker

Powerful REPL for the Laravel framework.

478,440,860 7,440