Jump to content

B.I.R.S


Blackwar

Recommended Posts

Hey,

i wrote a php script so that you will be able to see your ip, host and browser information in one place if ever needed.. I know it soudns kind of silly, but no kidding, there are times you need to check what your browser is identifying as etc etc...

ANY VISIT TO B.I.R.S is NOT logged in any way, no ips, browsers or hosts, basically nothing

**You can visit BIRS here : http://www.timdorr.com/birs.php **

And here is the PHP source code if anyone is interested :

<?php
$date  = date("Y-F-l - H:i:s");
$host = gethostbyaddr("$REMOTE_ADDR");
$dns = gethostbyname ($host);
$browser = $_SERVER["HTTP_USER_AGENT"];
?>
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Blackwar's Info Revealing Services ( - BIRS - )</title>
</head>

<body background="/~blackwar/aimg/lines.gif">
<font size="7" face="Impact" color="#FFFFFF"> - BIRS - </font>
<br><br><br>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1">
 <tr>
   <td width="50%" bgcolor="#808080"><b> YOUR HOST :</b></td>
   <td width="50%" bgcolor="#C0C0C0" align="center"><? echo $host ?></td>
 </tr>
 <tr>
   <td width="50%" bgcolor="#808080"><b> YOUR IP ADDRESS : </b></td>
   <td width="50%" bgcolor="#C0C0C0" align="center"><? echo $dns ?></td>
 </tr>
 <tr>
   <td width="50%" bgcolor="#808080"><b>YOUR BROWSER : </b></td>
   <td width="50%" bgcolor="#C0C0C0" align="center"><? echo $browser ?></td>
 </tr>
 <tr>
   <td width="50%" bgcolor="#808080"><b> DATE : </b></td>
   <td width="50%" bgcolor="#C0C0C0" align="center"><? echo $date ?></td>
 </tr>

</table>

</body>

</html>

</body>

Blackwar :)

Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...