UGN Security
Posted By: Gremelin PHP Web-Server Error Tracker - 02/26/04 05:17 AM
Ok, I'm working on making an error handling script so that I can see who's exactly linking to what files... How it works is when a user clicks the link from an external site (such as google's link down below) it'll forward the person to the 403.php page which is my custom error page for access denied.

The script simply takes the server relayed data and inserts it into a mysql table "ugn_errors" on database "undergroundc". script_uri is only valid if the page has a referrer, if they don't have a referrer they wouldn't get the 403 error since it's set to allow nonexistant referrals.

Now, the problem is, when the page loads it loads fine, I couldn't ask for more, well other than it work. It doesn't give out ANY errors whatsoever, I had an if/else statement and it kept saying that it parsed correctly. However the data never got entered into the database.

Anyone care to take a shot?

MySQL table
Code
CREATE TABLE ugn_errors (
  id int(15) NOT NULL auto_increment,
  type char(3) NOT NULL default '',
  date timestamp(14) NOT NULL,
  ip varchar(15) NOT NULL default '',
  referrer text NOT NULL,
  file text NOT NULL,
  PRIMARY KEY  (id)
) TYPE=MyISAM;
connect.php
Code
<?php
// Change below to your MySQL Host.
$host = "127.0.0.1";

// change below is your assigned mySQL username
$user = "myusername";

// change to the pw below is your assigned mySQL password
$pw = "mypassword";

// change to the database you have permission to connect to
$db = "mydb";
?>
403.php
Code
<?php require "connect.php"; ?>
<?php
$mysql_access = mysql_connect($host, $user, $pw) or die(mysql_error());
mysql_select_db($db) or die(mysql_error());
?>
<?php
	$ip = $_SERVER["REMOTE_ADDR"]; 
	$refer = $_SERVER["HTTP_REFERER"];
	$company = "VNC Web Design";
      $companylink = "http://www.virtualnightclub.net/";
      $scriptname = "Custom Error Manager";
      $linked = $_SERVER["SCRIPT_URI"];
      $type = "403";
      $name = "Access Denied";
{
?>
<?php
   mysql_query("INSERT INTO ugn_errors (type , date , ip , referrer , file) VALUES ('$type', NOW(), '$ip', '$refer', '$linked'");
?>
<html><head>
<title>Error <?php echo"$type"; ?> :: <?php echo"$name"; ?></title>
</head><body>
<center><b>403 Error: Access Denied</b>

</center>

<center>Your IP address of <?php echo"$ip"; ?> has been logged with the referrer of: 
<?php echo"$refer"; ?></center>





<center>
You are not authorized to view this page or file.  Most likely the address that you're linking to this file from is not authorized 
in our .htaccess file.  Please ASK to be added to this file, we don't appreciate direct linking to our files from un-authorized sites.  
We spend a lot on our bandwidth monthly just to have our generosity tornto shreads by sites who are too lazy to find their own original 
content.
</center>





<center>
Since you probably don't care about this issue (since all we wanted was the log of this error), for your convieniance, the requested 
file that you were linking to is:

<a href="<?php echo"$linked"; ?>"><?php echo"$linked"; ?></a>
</center>




<hr>
<a href="<?php echo"$companylink"; ?>"><?php echo"$company"; ?></a> :: <?php echo"$scriptname"; ?> :: Error <?php echo"$type"; ?> :: <?php echo"$name"; ?>

</body></html>
<?php
}
?>
#6 on the list will send you to the 403 error page (till I re-add google to my .htaccess file).
Posted By: Gremelin Re: PHP Web-Server Error Tracker - 02/26/04 05:22 AM
In case you don't notice, the link is "#6"
Posted By: §intå× Re: PHP Web-Server Error Tracker - 02/27/04 09:38 AM
lol got our p/m

Code
 mysql_query("INSERT INTO ugn_errors (type , date , ip , referrer , file) VALUES ('$type', NOW(), '$ip', '$refer', '$linked'");
  
change to
Code
$dg = mysql_query("INSERT INTO ugn_errors (type , date , ip , referrer , file) VALUES ('$type', NOW(), '$ip', '$refer', '$linked')");
  
Notice the ( after mysql_query and ( after errors... Well you had only 1 ) on the end. yours ended

'$linked'");

should be

'$linked')");

See the difference

Now do this

Code
$dg = mysql_query("INSERT INTO ugn_errors (type , date , ip , referrer , file) VALUES ('$type', NOW(), '$ip', '$refer', '$linked')");

if($dg){
}else{
mysq_error();  
/*
change this after bugs are worked out so you do not give away system info
*/
}
  
Posted By: Gremelin Re: PHP Web-Server Error Tracker - 02/27/04 09:50 AM
Oh baby, it works smile . Thanks heh...
Posted By: Gremelin Re: PHP Web-Server Error Tracker - 02/27/04 10:14 AM
Also have the 404 logger working lol... woot...
© UGN Security Forum