2012-04-05 6 views
1

このスクリプトの目的は、404/500などのサーバーエラーが発生したときにログを彼のウェブマスターに送信することです。このPHPスクリプトは安全ですか? fwrite and get

このスクリプトでは、fwriteを使用してログをカウントし、10個のログを保存し、10個のログに達するとメールを送信します。 エコーを介していくつかの値を使用して表示しますが、XSSや他のハッキング可能な問題がないことを確認するにはどうすればよいですか? スクリプトは高度で効率的ではなく、きれいに書かれているかも知れませんが、それは私のやり方です。 私はそれが安全だと心配しています。

.htaccessファイル

ErrorDocument 400 /errors/error.php?err=400 
ErrorDocument 401 /errors/error.php?err=401 
ErrorDocument 403 /errors/error.php?err=403 
ErrorDocument 404 /errors/error.php?err=404 
ErrorDocument 500 /errors/error.php?err=500 
ErrorDocument 410 /errors/error.php?err=410 

PHPファイル

<?php 

$fp = fopen("counterlog.txt", "r"); 
$count = fread($fp, 1024); 
fclose($fp); 


$errorNum = (int)$_GET['err']; 
$err_str = array(404=>'Type of error: Not Found (404)', 400=>'Type of error: Bad Request (400)', 401=>'Type of error: Unauthorized (401)', 403=>'Type of error: Forbidden (403)', 410=>'Type of error: Gone (410)', 500=>'Type of error: Internal Server Error (500)'); 

$ip = getenv ("REMOTE_ADDR"); 
$requri = getenv ("REQUEST_URI"); 
$servname = getenv ("SERVER_NAME"); 
$combine = $ip . " tried to load " . $servname . $requri; 

$httpref = getenv ("HTTP_REFERER"); 

if (empty($httpref)) { 
$httpref = "Unknown Location"; 
} 

$httpagent = getenv ("HTTP_USER_AGENT"); 

$today = date("F j, Y, H:i:s"); 

$note = "This information has been sent to the webmaster." ; 

$message = "On $today \n <br> $combine <br> \n User Agent = $httpagent \n <br>User got there from: $httpref <br><br> $err_str[$errorNum] <br><br> $note\n "; 
$message2 = "#$count \n $today \n $combine \n User Agent = $httpagent \n User got there  from: $httpref \n $err_str[$errorNum] \n\n "; 

$fh = fopen("errorlogje.txt", "a") or die("can't open file"); 
$stringData = $message2; 
fwrite($fh, $stringData); 
fclose($fh); 

if ($count == 10) { 
$count = 0; 
$fh = fopen("errorlogje.txt", "r"); 
$bericht = fread($fh, 4096); 
$to = "[email protected]"; // webmaster email 
$subject = "errorpage guardian has a message"; // email bericht 
$from = "From: [email protected]\r\n"; // email afzender (makelijk voor het sorteren) 
mail($to, $subject, $bericht, $from); 

$fh = fopen("errorlogje.txt", "w"); 
fclose($fh); 
} 
else { 
$count = $count + 1; 
} 

$fp = fopen("counterlog.txt", "w"); 
fwrite($fp, $count); 
fclose($fp); 

echo " $message "; 

?> 
+1

XSSと考えるなら、['htmlspecialchars'](http://php.net/htmlspecialchars)と思ってください。 – hakre

+0

ファイルを開くときにユーザーが指定した値を使用しないため、ファイル書き込みは安全です。ユーザーエージェント、httpリファラーまたはリクエストuriにはhtml/javascriptコードが含まれている可能性があります。 – knittl

答えて

1

/errors/error.phpそれははい、完全に安全です。 使用している値は$_GETのみで、整数にキャストされているため、発生する可能性のある問題は排除されます。

+0

ありがとう、私はそれらのhtmlspecialcharsエコーの出力に以前に言及を追加する場合は、その完全に安全ですか?それとも問題ではない? – Scriptor

+0

それは問題ではありません。 – Narf

+0

1つだけですか?ユーザーエージェントはどうですか? – Erlend

関連する問題