Advertisement
fahmihilmansyah

xx

Aug 27th, 2015
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. if (isset($_SERVER['HTTP_CLIENT_IP'])
  2.     || isset($_SERVER['HTTP_X_FORWARDED_FOR'])
  3.     || !(in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', 'fe80::1', '::1')) || php_sapi_name() === 'cli-server')
  4. ) {
  5.     header('HTTP/1.0 403 Forbidden');
  6.     exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement