Previous Thread
Next Thread
Print Thread
Rate Thread
#19557 02/25/04 10:17 PM
Joined: Feb 2002
Posts: 7,204
Likes: 11
Community Owner
Community Owner
Joined: Feb 2002
Posts: 7,204
Likes: 11
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).


Donate to UGN Security here.
UGN Security, Back of the Web, and VNC Web Services Owner
Sponsored Links
▼ Sponsored Links ▼ ▲ Sponsored Links ▲
Joined: Feb 2002
Posts: 7,204
Likes: 11
Community Owner
Community Owner
Joined: Feb 2002
Posts: 7,204
Likes: 11
In case you don't notice, the link is "#6"


Donate to UGN Security here.
UGN Security, Back of the Web, and VNC Web Services Owner
Joined: Dec 2002
Posts: 3,255
Likes: 3
UGN Elite
UGN Elite
Joined: Dec 2002
Posts: 3,255
Likes: 3
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
*/
}
  

Joined: Feb 2002
Posts: 7,204
Likes: 11
Community Owner
Community Owner
Joined: Feb 2002
Posts: 7,204
Likes: 11
Oh baby, it works smile . Thanks heh...


Donate to UGN Security here.
UGN Security, Back of the Web, and VNC Web Services Owner
Joined: Feb 2002
Posts: 7,204
Likes: 11
Community Owner
Community Owner
Joined: Feb 2002
Posts: 7,204
Likes: 11
Also have the 404 logger working lol... woot...


Donate to UGN Security here.
UGN Security, Back of the Web, and VNC Web Services Owner

Link Copied to Clipboard
Member Spotlight
Gremelin
Gremelin
Portland, OR; USA
Posts: 7,204
Joined: February 2002
Forum Statistics
Forums41
Topics33,839
Posts68,797
Members2,177
Most Online73,244
Nov 9th, 2025
Latest Postings
Top Posters
UGN Security 41,392
Gremelin 7,204
SilentRage 1,273
Ice 1,146
pergesu 1,136
Infinite 1,041
jonconley 955
Girlie 908
unreal 860
Top Likes Received
Ghost 2
Cyrez 1
Girlie 1
unreal 1
Crime 1
Powered by UBB.threads™ PHP Forum Software 8.0.0