Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- With an IP address you can hotmail revert them or try to IP hack them using a program
- What I mean by external image is any image that can be placed from a url.
- My previous tutorial taught you how to grab ip`s only on certain forums.
- However, After extensive research ivè found out the solution and would like to share with you all.
- This works with ALL forum types and with Myspace PM`ing and any other site that lets you insert images from a URL rather than an Upload.
- Step 1.)
- Find a free webhost you can use.
- The one I use is FreeHostia.com
- Just register for a free account there.
- --
- Step 2.)
- Make a new web directory
- example: http://site.com/directory/
- --
- Step 3.)
- Create a new file named:
- .htaccess
- --
- Step 4.)
- Put this code in .htaccess
- Code:
- RewriteEngine on
- RewriteRule ^image.gif$ iplogger.php
- Where it says: image.gif
- You can change it to where you`ve uploaded your image, it doesn`t matter what image and it can be in any image type such as: gif, jpeg, png, etc.
- Where it says: iplogger.php
- That is the PHP file that will have the Ip logging code, whatever you want to name it.
- --
- Step 5.)
- Create an empty iplogger.php file (or whatever you named it)
- And put in this code:
- <?php
- $log = 'logger.html';
- $ip = $_SERVER['REMOTE_ADDR'];
- $page = $_SERVER['REQUEST_URI'];
- $refer = $_SERVER['HTTP_REFERER'];
- date_default_timezone_set('America/Los_Angeles');
- $date_time = date("l j F Y g:ia", time()) ;
- $agent = $_SERVER['HTTP_USER_AGENT'];
- $fp = fopen("logger.html", "a");
- fputs($fp, "
- <b>$date_time</b> <br> <b>IP: </b>$ip<br><b>Page: </b>$page<br><b>Refer: </b>$refer<br><b>Useragent:
- </b>$agent <br><br>
- ");
- flock($fp, 3);
- fclose($fp);
- ?>
- Then create an Empty:
- logger.html file
- --
- Step 6.)
- Upload your image.gif file (or whatever you named it)
- if you haven`t already
- --
- Step 7.)
- Go to a forum or wherever you would like
- And insert the image using:
- Code:
- [img]http://site.com/directory/image.gif[/img]
- You can insert this in:
- - Pm`s
- - Posts & Threads
- - Signatures
- - Avatars
- -And anything else that allows external linking of images.
- If you would like to insert your image using HTML where is allowed then use this code:
- Code:
- <IMG SRC="http://site.com/directory/image.gif">
- --
- Step 8.)
- Check your: http://site.com/directory/logger.html
- For all your IP logs including where they came from.
- --
- How it WORKS:
- Basically,
- When the web tries to access the Image that is in the directory with the .htaccess file.
- The image.gif displays iplogger.php
- Because you told it to do so.
- It is called mod_rewriting and is very useful.
- This tricks the forum or whatever site your using it on to display the re-written url.
- --
- If you would like to display an image at the same time while logging their ip, then you can by inserting the img src code into the php file.
- --
- Thats it!
- Hope you`ve enjoyed this tutorial that I wrote.
- If you would like to learn more about mod_rewrite,
- visit this site for a more detailed explanation on how it works:
- http://www.workingwith.me.uk/articles/sc...od_rewrite
- Have fun :)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement