示例#1
0
<?php

/**
 * phpGSB - PHP Google Safe Browsing Implementation
 * Released under New BSD License (see LICENSE)
 * Copyright (c) 2010-2012, Sam Cleaver (Beaver6813, Beaver6813.com)
 * All rights reserved.
 *
 */
if (!class_exists('phpGSB', false)) {
    require_once 'phpgsb.class.php';
}
define('CONFIGFILE', str_replace('\\', '/', $_SERVER['DOCUMENT_ROOT']) . '/config.php');
if (!file_exists(CONFIGFILE)) {
    die('Config file not found');
}
require_once CONFIGFILE;
$phpgsb = new phpGSB(DB_NAME, DB_USER, DB_PASS, DB_HOST, true);
$phpgsb->apikey = GSB_API_KEY;
$phpgsb->usinglists = array('googpub-phish-shavar', 'goog-malware-shavar', 'goog-unwanted-shavar');
$phpgsb->runUpdate();
<?php

require "phpgsb.class.php";
$v4d90362d661461e558408e982aaa49d3 = parse_ini_file('../config.ini');
$vce8f9d0355f82957d1e56e105c370da8 = new phpGSB($v4d90362d661461e558408e982aaa49d3['core.dbname'], $v4d90362d661461e558408e982aaa49d3['core.login'], $v4d90362d661461e558408e982aaa49d3['core.password'], $v4d90362d661461e558408e982aaa49d3['core.host']);
$vce8f9d0355f82957d1e56e105c370da8->apikey = $v4d90362d661461e558408e982aaa49d3['gsb-apikey'];
$vce8f9d0355f82957d1e56e105c370da8->usinglists = array('googpub-phish-shavar', 'goog-malware-shavar');
$vce8f9d0355f82957d1e56e105c370da8->runUpdate();
$vce8f9d0355f82957d1e56e105c370da8->close();