Google Safe Browsing API Key

Google requires you to have a Google account and a Safe Browsing API key to use their Safe Browsing Lookup Service.

Get your API key here: https://developers.google.com/safe-browsing/key_signup

Disclaimer from Google

Google works to provide the most accurate and up-to-date phishing and malware information. However, it cannot guarantee that its information is comprehensive and error-free: some risky sites may not be identified, and some safe sites may be identified in error.

Configure the plugin

HTML; } // Update option in database function ozh_yourls_gsb_update_option() { $in = $_POST['ozh_yourls_gsb']; if( $in ) { // Validate ozh_yourls_gsb: alpha & digits $in = preg_replace( '/[^a-zA-Z0-9-_]/', '', $in ); // Update value in database yourls_update_option( 'ozh_yourls_gsb', $in ); yourls_redirect( yourls_admin_url( 'plugins.php?page=ozh_yourls_gsb' ) ); } }