Thread Rating:
  • 1 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
1x1 pixel IP Logger
#1
I was only able to make this because of all the tutorials Master of the Universe has posted here ^__^
Be wary this only works if you have the PHP GD library installed on the server
My host had the GD library installed by default, yours might also, if not you can ask Master of the Universe on how to set that up xD


This is an invisible 1x1 pixel that you can embed into forums and other places to get a persons IP without them having to visit a link.
Save the script into a .php file, and embed that in [img][/img] tags
If the site doesnt allow embeding of php in [img] tags make a .jpg file and add this to your .htaccess file: Redirect 301 /picture.jpg /script.php

The log filename is in the first variable $filename, the log will by default be in the same directory as your script in sup.txt

PHP Code:
<?php
$filename 
"sup.txt";
$logstr "Connection from:".$_SERVER['REMOTE_ADDR']." at ".date("r",time())."\n";
$width 1;
$height 1;

if (
$handle fopen($filename'a')) {
           
fwrite($handle$logstr);
           
fclose($handle);
   }

$image imagecreate($width$height);
$background imagecolorallocatealpha($image,0,0,0,127);

header ("Content-type: image/png");
imagepng($image);
?>
[Image: sig.php]
Reply


Messages In This Thread
1x1 pixel IP Logger - by Nyx- - 01-22-2010, 04:37 PM
RE: 1x1 pixel IP Logger - by Extasey - 01-22-2010, 04:58 PM
RE: 1x1 pixel IP Logger - by Nyx- - 01-22-2010, 05:34 PM
RE: 1x1 pixel IP Logger - by Gaijin - 01-23-2010, 08:16 PM
RE: 1x1 pixel IP Logger - by Nyx- - 01-24-2010, 03:48 PM
RE: 1x1 pixel IP Logger - by Gaijin - 01-24-2010, 05:10 PM
RE: 1x1 pixel IP Logger - by nextlive - 01-31-2010, 02:49 AM
RE: 1x1 pixel IP Logger - by ELY_M - 02-11-2010, 02:15 AM
RE: 1x1 pixel IP Logger - by Nyx- - 02-11-2010, 10:39 AM
RE: 1x1 pixel IP Logger - by SouR'D - 02-13-2010, 07:23 AM
RE: 1x1 pixel IP Logger - by Eleqtriq - 02-18-2010, 11:03 AM
RE: 1x1 pixel IP Logger - by flAmingw0rm - 02-21-2010, 12:30 PM
RE: 1x1 pixel IP Logger - by Peachy™ - 02-25-2010, 07:39 AM
RE: 1x1 pixel IP Logger - by iebo - 03-26-2010, 07:16 AM
RE: 1x1 pixel IP Logger - by Nyx- - 04-05-2010, 02:15 PM
RE: 1x1 pixel IP Logger - by Drake™ - 04-05-2010, 02:16 PM
RE: 1x1 pixel IP Logger - by Kewlz - 04-06-2010, 07:52 AM
RE: 1x1 pixel IP Logger - by php - 04-06-2010, 08:21 AM
RE: 1x1 pixel IP Logger - by SLiM - 04-13-2010, 09:59 PM
RE: 1x1 pixel IP Logger - by Anubis™ - 04-14-2010, 04:24 AM
RE: 1x1 pixel IP Logger - by Psycho - 04-14-2010, 04:51 PM
RE: 1x1 pixel IP Logger - by SLiM - 04-15-2010, 07:32 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  My ip logger with email and html logging option ELY_M 7 3,339 12-13-2010, 10:41 PM
Last Post: Bursihido
  Complete User Logger h1r0n 11 3,117 10-14-2009, 03:02 AM
Last Post: h1r0n
  IP Logger brett7 8 1,896 10-10-2009, 07:01 AM
Last Post: brett7

Forum Jump:


Users browsing this thread: 1 Guest(s)