orborbson

sprawdz_ip

Nov 28th, 2024
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.14 KB | Source Code | 0 0
  1. <?php
  2.  
  3. function my_globals()
  4. {
  5.     date_default_timezone_set('CET');
  6.     $GLOBALS["dir_log"] = "katalog_logow";
  7.     $GLOBALS["file_log"] = $GLOBALS["dir_log"] . "/log_" . date("d-m-Y") . ".html";
  8.     $GLOBALS["cook_name"] = "essid";
  9.     $GLOBALS["cook_data"] = "";
  10.     $GLOBALS["def_img_path"] = "obrazki";
  11.     $GLOBALS["def_img_cookie_path"] = "obrazki_ciacho";
  12. }
  13.  
  14. function my_mkdir()
  15. {
  16.     if(!file_exists($GLOBALS["dir_log"]))
  17.     {
  18.         mkdir($GLOBALS["dir_log"], 0755, true);
  19.     }
  20. }
  21.  
  22. function my_cookie_enc()
  23. {
  24.     setcookie($GLOBALS["cook_name"], base64_encode(gzcompress(serialize($GLOBALS["cook_data"]), 6)), time() + 31536000, "/");
  25. }
  26.  
  27. function my_cookie_dec()
  28. {
  29.     if(($x = base64_decode($_COOKIE[$GLOBALS["cook_name"]])) !== false && ($x = gzuncompress($x)) !== false && ($x = unserialize($x)) !== false)
  30.     {
  31.         $GLOBALS["cook_data"] = $x;
  32.         return true;
  33.     }
  34.     return false;
  35. }
  36.  
  37. function check_cookie()
  38. {
  39.     if(isset($_COOKIE[$GLOBALS["cook_name"]]) && @my_cookie_dec())
  40.     {
  41.         if($_SERVER['REMOTE_ADDR'] != $GLOBALS["cook_data"]["cip"])
  42.         {
  43.             $GLOBALS["cook_data"]["pip"] = $GLOBALS["cook_data"]["cip"];
  44.             $GLOBALS["cook_data"]["cip"] = $_SERVER['REMOTE_ADDR'];
  45.         }
  46.         $GLOBALS["cook_data"]["c"]++;
  47.     }
  48.     else
  49.     {
  50.         $GLOBALS["cook_data"] = array("cip" => $_SERVER['REMOTE_ADDR'], "pip" => "", "w" => sha1(mt_rand() . ":" . $_SERVER['REMOTE_ADDR'] . $_SERVER['HTTP_USER_AGENT']), "c" => 0);
  51.     }
  52.    
  53.     my_cookie_enc();
  54. }
  55.  
  56. function save_log()
  57. {
  58.     $ip = $_SERVER['REMOTE_ADDR'];
  59.     # $host = $_SERVER['REMOTE_HOST'];
  60.     $host = gethostbyaddr($ip);
  61.     $page = $_SERVER['REQUEST_URI'];
  62.     $refer = $_SERVER['HTTP_REFERER'];
  63.     $date_time = date("l, j F Y, G:i");
  64.     $agent = $_SERVER['HTTP_USER_AGENT'];
  65.    
  66.     if(($fp = fopen($GLOBALS["file_log"], "a")) !== false)
  67.     {
  68.         if(flock($fp, LOCK_EX))
  69.         {
  70.             fputs($fp, "<b>$date_time</b><br /><b>IP: </b>$ip<br /><b>Prev IP: </b>" . $GLOBALS["cook_data"]["pip"] . "<br /><b>Host: </b>$host<br /><b>UID: </b>" . $GLOBALS["cook_data"]["w"] . "<br /><b>Page: </b>$page<br /><b>Refer: </b>$refer<br><b>Useragent: </b>$agent<br /><b>Count: </b>" . $GLOBALS["cook_data"]["c"] . "<br /><br />");
  71.             flock($fp, LOCK_UN);
  72.         }
  73.         fclose($fp);
  74.     }
  75. }
  76.  
  77. function no_cache_headers()
  78. {
  79.     header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");
  80.     header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
  81.     header("Cache-Control: no-store, no-cache, must-revalidate");
  82.     header("Cache-Control: post-check=0, pre-check=0", false);
  83.     header("Pragma: no-cache");
  84. }
  85.  
  86. function show_img()
  87. {
  88.     no_cache_headers();
  89.    
  90.     if(
  91.     file_exists($img = $GLOBALS["def_img_cookie_path"] . "/" . $_GET["name"] . "_" . $GLOBALS["cook_data"]["w"] . "." . $_GET["ext"]) ||
  92.     file_exists($img = $GLOBALS["def_img_path"] . "/" . $_GET["name"] . "." . $_GET["ext"]))
  93.     {
  94.         header("Content-type: image/" . $_GET["ext"]);
  95.         readfile($img);
  96.     }
  97.     else
  98.     {
  99.         header("Content-type: image/gif");
  100.         echo "\x47\x49\x46\x38\x39\x61\x01\x00\x01\x00\x80\x00\x00\xFF\xFF\xFF\xFF\xFF\xFF\x21\xF9\x04\x01\x0A\x00\x01\x00\x2C\x00\x00\x00\x00\x01\x00\x01\x00\x00\x02\x02\x4C\x01\x00\x3B";
  101.     }
  102. }
  103.  
  104. function main()
  105. {
  106.     my_globals();
  107.     my_mkdir();
  108.     check_cookie();
  109.     save_log();
  110.     show_img();
  111. }
  112.  
  113. @main()
  114. ?>
  115.  
Add Comment
Please, Sign In to add comment