Skip to content

Commit

Permalink
picpost.inc.php
Browse files Browse the repository at this point in the history
  • Loading branch information
satopian committed Nov 18, 2024
1 parent 502b112 commit 019bdad
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions potiboard5/picpost.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// このスクリプトはPaintBBS(藍珠CGI)のPNG保存ルーチンを参考に
// PHP用に作成したものです。
//----------------------------------------------------------------------
// 2024/11/18 不正画像検出はpotiboard.phpで。
// 2024/11/17 potiboard.phpでユーザーコードを再発行。
// 2024/01/28 ユーザーコードはCookieとSESSIONの比較のみに。
// 2023/12/27 ユーザーコードをSESSIONに格納して、CookieとSESSIONどちらかが一致していれば投稿可能になるようにした。
Expand Down Expand Up @@ -225,18 +226,6 @@ class picpost{

chmod($full_imgfile,PERMISSION_FOR_DEST);

// 不正画像チェック(検出したら削除)
$chk = md5_file($full_imgfile);
if(isset($badfile)&&is_array($badfile)){
foreach($badfile as $value){
if(preg_match("/\A$value/",$chk)){
unlink($full_imgfile);
// 不正な画像を検出しました。画像は保存されません。
die("error\n{$errormsg_5}");
}
}
}

// PCHファイルの長さを取り出す
$pchLength = substr($buffer, 1 + 8 + $headerLength + 8 + 2 + $imgLength, 8);
// ヘッダーを獲得
Expand Down

0 comments on commit 019bdad

Please sign in to comment.