●コメントスパム対策にセキュリティーコード 「MT-SCode」 を付けてみた!w
タイトル見て「なんのこっちゃ~???」って思われてるかも知れませんが、セキュリティーコードってのは画像の赤丸の部分のやつ(「submission code」(サブミッション・コード)ともいうみたい)です。色々なところで見かけますよね?「画像の文字を入力してください」って。でまぁ、いつものようにググりながら探してみました。
で、どうやらMTには〝MT-SCode〟ってのがプラグインで用意されているらしい情報を嗅ぎ付け、再びググると小枠空間 yujiro さんのサイトに行き着くわけで![]()
おっ、これはこれは、挨拶大変遅くなりましたが yujiro さん初めまして。いつもお世話になっております。
【MT-SCode プラグインによるコメントスパム対策(その1)】を参考に早速設置してみました。
以下、覚え書き…。
1.プラグインを DL
まず最初に、プラグイン配布先である James Seng's Blog さんのサイトよりプラグインを DL します。
(場所は「Quick Links:」ってところの下の「-Download latest mt-scode」ってところ)
DL出来たら解凍します。
※拡張子が〝gz〟だったのでWinZipで解凍
解凍すると、
・mt-scode.cgi
・README
・scode.pl
・SCode.pm
・scodetest.cgi
上記五つのファイルが生成されますが、使用するのは「mt-scode.cgi」「scode.pl」「SCode.pm」この三つです。
それから、既存ファイルで修正を加えるファイルは下記の四つ。(下の方で説明)
・Comments.pm
・Context.pm
・個別エントリーアーカイブ
・ja.pm
2.SCode.pm の編集
# tmp directory
# Notice the '/' at the end . You need to have that '/'
# ie, my $tmpdir = "/tmp/captcha' wont work. You need '/tmp/captcha/'
my $tmpdir = "/tmp/";
※〝/tmp/〟は編集しなくても書かれているので、ここ↑は無視
説明によると、tmpディレクトリは「public_html」より上に設定しないと意味がないみたですが、意味がわからないのでとりあえず mt-cgi の上に作ってみました
パーミッションは755で設置。
3.ファイルの UP
それぞれのディレクトリにファイルをアップする。
・mt-scode.cgi → mt.cgiと同じディレクトリ。パーミッション755
・scode.pl → pluginsディレクトリ
・SCode.pm → lib/MT/
4.Comments.pm の編集
既存の Comments.pm ( lib/MT/App/Comments.pm ) を DL し、編集する。
if (!$q->param('text')) {
return $app->handle_error($app->translate("Comment text is required."));
}
の下に、下記の青字コードを追加。
# SecurityCode hack start
#
require MT::SCode;
my $code = $q->param('code');
my $scode = $q->param('scode');
my $sscode = MT::SCode::scode_get($code);
if ($scode ne $sscode) {
return $app->handle_error($app->translate(
"Wrong or missing Security Code."));
}
MT::SCode::scode_delete($code);
MT::SCode::scode_create($code);
#
# Security hack ends
5.個別エントリーアーカイブを編集する。
任意のテキストエディタで、
<input type="submit"
を検索し、その上に下記のHTMLタグ(青字)を追加する。
※三箇所あったが、二番目にタグを挿入
<!-- Security Code Check -->
<p><label for="securityCode"> Security Code:</label><br />
<input type="hidden" id="code" name="code" value="<$MTSecurityCode$>" />
<input tabindex=3 id="scode" name="scode" />
<img border="0" src="<$MTCGIPath$><$MTSecurityImage$>?code=<$MTSecurityCode$>" style="vertical-align: middle; margin-top:-6px;" /><br />
手動で送信されたコメントであることを示すために、上のボックスに表示されている通りに数字を入力してください</p>
<!-- end of Security Code Check --><p><label for="text">コメント:</label> <MTIfAllowCommentHTML>
6.Context.pmの編集
既存の Context.pm ( lib/MT/Template/Context.pm ) を DL し、編集する。
sub _hdlr_comment_fields {
my ($ctx, $args, $cond) = @_;
のすぐ下に、下記のコードを追加。
# Security code validation
require MT::SCode; # <-- new addition
srand int (time/10)+$$;
my $securitycode = int rand(MT::SCode::scode_tmp());
$securitycode++;
MT::SCode::scode_create($securitycode);
# End Security code hack
同じファイルで次のタグを探し、
<MT_TRANS phrase="Remember me?">
<input type="radio" id="remember" name="bakecookie" …
そのすぐ下に、下記を追加。
※二箇所あるが、二番目にタグを挿入
<!-- Security Code Check -->
<p><label for="securityCode">Security Code:</label><br />
<input type="hidden" id="code" name="code" value="$securitycode" />
<input tabindex=3 id="scode" name="scode" />
<img border="0" alt="Please enter the security code you see here" src="$path/mt-scode.cgi?code=$securitycode" style="vertical-align: middle; margin-top:-6px;" /><br />
<MT_TRANS phrase="Please enter the security code you see here."></p>
<!-- end of Security Code Check -->
7.画像サイズの変更
mt-scode.cgi( mt.cgiと同じディレクトリ ) の赤字部分を青字に変更。
# lets define the image
$im_length = (MT::SCode::scode_len()+1)*10;
$im = new GD::Image($im_length,2520);
:
# Draw the borders lines
for ($i=0;$i<$im_length;$i+=5) {
$im->line($i,0,$i,2419,$c_line);
}
:
$im->rectangle(0,0,$im_length-1,2419,$c_border);
# Write the code
$im->string(gdGiantFont,8,52,$scode,$c_code);
8.日本語メッセージの追加
ja.pm ( lib/MT/L10N/ja.pm ) に下記の日本語コメント(青字)を追加。
'Comment text is required.' => 'コメントの本文を入力してください。',
'Wrong or missing Security Code.' => 'セキュリティコードが誤っています。',
:
'Comments:' => 'コメント:',
'Please enter the security code you see here.' => '手動で送信されたコメントであることを示すために、上のボックスに表示されている通りに数字を入力してください',
最後に再構築して完了です。![]()
その他関連記事をφ(.. )メモメモ
【MT-SCode プラグインによるコメントスパム対策(その2:Typekeyサイン・インとの競合制御)】
これでスパム防止の面倒臭いメアド入力をする必要がなくなりました。
…と思ったら、
逆にもっと面倒臭くなっちゃったかも?
まぁとりあえずは、コメント投稿時は「メアド任意」になったってことで![]()








コメント
はじめまして!突然で大変申し訳ないのですが4項の
が見当たらないのですが・・・・
恐れ入りますがサポート宜しくお願いします。
ちなみにMT3.33を使用しております。
Posted by: panser | 2006年10月30日 11:09
どうも初めまして
MT3.3xのSCode関連の記事はこちらになります
Posted by: 銀次@管理人 | 2006年10月30日 15:32
早速のご返事ありがとうございます。 また、一度トライしてみます!
Posted by: panser | 2006年10月31日 01:46
see this thanks http://groups.google.us/group/replica-vuitton-xl ">replica vuitton ffacjt
Posted by: sylvia | 2008年05月13日 06:32
see this thanks http://groups.google.us/group/replica-vuitton-xl ">replica vuitton ffacjt
Posted by: sylvia | 2008年05月13日 06:33
see this thanks http://groups.google.us/group/replica-vuitton-xl ">replica vuitton ffacjt
Posted by: sylvia | 2008年05月13日 06:33
see this thanks http://groups.google.us/group/replica-vuitton-xl ">replica vuitton ffacjt
Posted by: sylvia | 2008年05月13日 06:34
see this thanks http://groups.google.us/group/replica-vuitton-xl ">replica vuitton ffacjt
Posted by: sylvia | 2008年05月13日 06:34
interesting post thx http://groups.google.nf/group/ztube ">youtube of porn
Posted by: tube | 2008年05月13日 07:14
interesting post thx http://groups.google.nf/group/ztube ">youtube of porn
Posted by: tube | 2008年05月13日 07:15
interesting post thx http://groups.google.nf/group/ztube ">youtube of porn
Posted by: tube | 2008年05月13日 07:16
nice site cool work http://groups.google.nf/group/rtube ">youporntube
Posted by: rtube | 2008年05月13日 07:16
nice site cool work http://groups.google.nf/group/rtube ">youporntube
Posted by: rtube | 2008年05月13日 07:17
hi i love you dude ;) http://groups.google.nf/group/zteen ">teenart
Posted by: tuts | 2008年05月13日 07:18
good post man thx http://groups.google.us/group/tickets-x1 ">ticket scalpers =-PPP
Posted by: liza | 2008年05月13日 10:14
nice site bookmark you http://groups.google.nf/group/oteen ">teennick
Posted by: kitty | 2008年05月13日 10:49
interesting idea man thx http://groups.google.nf/group/fteens ">vanillateensblackcream
Posted by: pics | 2008年05月13日 10:50
interesting idea man thx http://groups.google.nf/group/fteens ">vanillateensblackcream
Posted by: pics | 2008年05月13日 10:50
interesting idea man thx http://groups.google.nf/group/fteens ">vanillateensblackcream
Posted by: pics | 2008年05月13日 10:51
good links thx http://groups.google.nf/group/pornoss ">porneta
Posted by: ja | 2008年05月13日 10:57
good work man http://groups.google.us/group/tickets-x3 ">airline tickets from seattle to lax 8-)
Posted by: liza | 2008年05月13日 14:28
good work man http://groups.google.us/group/tickets-x3 ">airline tickets from seattle to lax 8-)
Posted by: liza | 2008年05月13日 14:29
wow awesome man 10x http://groups.google.nf/group/xsexx ">sextv
Posted by: bob | 2008年05月13日 15:04
see this thanks http://groups.google.us/group/tickets-x4 ">nebraska cornhusker football season ticket prices annual ticketmaster 8))
Posted by: ben | 2008年05月13日 16:33
see this thanks http://groups.google.us/group/tickets-x4 ">nebraska cornhusker football season ticket prices annual ticketmaster 8))
Posted by: ben | 2008年05月13日 16:34
see this thanks http://groups.google.us/group/tickets-x4 ">nebraska cornhusker football season ticket prices annual ticketmaster 8))
Posted by: ben | 2008年05月13日 16:34
see this thanks http://groups.google.us/group/tickets-x4 ">nebraska cornhusker football season ticket prices annual ticketmaster 8))
Posted by: ben | 2008年05月13日 16:35
see this thanks http://groups.google.us/group/tickets-x4 ">nebraska cornhusker football season ticket prices annual ticketmaster 8))
Posted by: ben | 2008年05月13日 16:36
interesting post thx http://groups.google.us/group/tickets-x5 ">philadelphia phillies tickets %OO
Posted by: mona | 2008年05月13日 18:25
pretty girls http://groups.google.nf/group/hsexx ">sextuplets
Posted by: pretty | 2008年05月13日 18:42
pretty girls http://groups.google.nf/group/hsexx ">sextuplets
Posted by: pretty | 2008年05月13日 18:42
pretty girls http://groups.google.nf/group/hsexx ">sextuplets
Posted by: pretty | 2008年05月13日 18:43
pretty girls http://groups.google.nf/group/hsexx ">sextuplets
Posted by: pretty | 2008年05月13日 18:43
ye very good site man thx http://groups.google.nf/group/gsex ">lolitasexparty
Posted by: peter | 2008年05月13日 18:47
great post thanks http://groups.google.nf/group/lolitaj ">young preteen lolita models
Posted by: lolos | 2008年05月13日 20:04
great post thanks http://groups.google.nf/group/lolitaj ">young preteen lolita models
Posted by: lolos | 2008年05月13日 20:04
great post thanks http://groups.google.nf/group/lolitaj ">young preteen lolita models
Posted by: lolos | 2008年05月13日 20:05
ebrilo pish pish http://groups.google.nf/group/xnude ">14yonudemodles
Posted by: piski | 2008年05月13日 22:27
super girls seee man http://groups.google.nf/group/nudez ">nudephotos
Posted by: chicken | 2008年05月13日 22:33
super girls seee man http://groups.google.nf/group/nudez ">nudephotos
Posted by: chicken | 2008年05月13日 22:34
super girls seee man http://groups.google.nf/group/nudez ">nudephotos
Posted by: chicken | 2008年05月13日 22:34
smat asssssss http://groups.google.nf/group/jnude ">nudecelebz
Posted by: gogi | 2008年05月13日 22:55
smat asssssss http://groups.google.nf/group/jnude ">nudecelebz
Posted by: gogi | 2008年05月13日 22:56
great work cool site man http://groups.google.nf/group/rteen ">teendiner
Posted by: mololetko | 2008年05月13日 23:53
bookmark you thx http://groups.google.us/group/tickets-x6 ">half price tickets wash dc 24946
Posted by: bred | 2008年05月13日 23:56
good post man thx http://groups.google.us/group/tickets-x7 ">chicago white sox tickets 223627
Posted by: kris | 2008年05月14日 02:07
good post man thx http://groups.google.us/group/tickets-x7 ">chicago white sox tickets 223627
Posted by: kris | 2008年05月14日 02:07
good post man thx http://groups.google.us/group/tickets-x7 ">chicago white sox tickets 223627
Posted by: kris | 2008年05月14日 02:08
good post man thx http://groups.google.us/group/tickets-x7 ">chicago white sox tickets 223627
Posted by: kris | 2008年05月14日 02:09
sweet site =) thx http://groups.google.nf/group/zporno ">uporntube
Posted by: pussy | 2008年05月14日 03:37
sweet site =) thx http://groups.google.nf/group/zporno ">uporntube
Posted by: pussy | 2008年05月14日 03:37
good work man http://groups.google.us/group/tickets-x8 ">air travel tickets gizor
Posted by: kate | 2008年05月14日 04:12
good work man http://groups.google.us/group/tickets-x8 ">air travel tickets gizor
Posted by: kate | 2008年05月14日 04:12
bookmark you thx http://groups.google.us/group/tickets-x9 ">colts tickets 794425
Posted by: lola | 2008年05月14日 06:02
bookmark you thx http://groups.google.us/group/tickets-x9 ">colts tickets 794425
Posted by: lola | 2008年05月14日 06:03
bookmark you thx http://groups.google.us/group/tickets-x9 ">colts tickets 794425
Posted by: lola | 2008年05月14日 06:04
bookmark you thx http://groups.google.us/group/tickets-x9 ">colts tickets 794425
Posted by: lola | 2008年05月14日 06:05
cool girls ;)) http://groups.google.nf/group/rsexx ">freesexnet
Posted by: xxxxxxx | 2008年05月14日 07:01
cool girls ;)) http://groups.google.nf/group/rsexx ">freesexnet
Posted by: xxxxxxx | 2008年05月14日 07:03
hello everybody!
Posted by: liza | 2008年05月14日 07:58
hello everybody!
Posted by: liza | 2008年05月14日 07:58
hello everybody!
Posted by: liza | 2008年05月14日 07:59
please look at this http://us.cyworld.com/alaqua ">clonazepam pills 8(
Posted by: adult | 2008年05月14日 11:46
please look at this http://us.cyworld.com/alaqua ">clonazepam pills 8(
Posted by: adult | 2008年05月14日 11:46
please look at this http://us.cyworld.com/alaqua ">clonazepam pills 8(
Posted by: adult | 2008年05月14日 11:47
it's nice site http://us.cyworld.com/aleshanee ">purchase diazepam >:)
Posted by: john | 2008年05月14日 13:47
it's nice site http://us.cyworld.com/aleshanee ">purchase diazepam >:)
Posted by: john | 2008年05月14日 13:47
it's nice site http://us.cyworld.com/aleshanee ">purchase diazepam >:)
Posted by: john | 2008年05月14日 13:48
cool site man http://groups.google.us/group/tickets-x9 ">peter bjorn and john tickets 8P
Posted by: mona | 2008年05月14日 14:45
cool site man http://groups.google.us/group/tickets-x9 ">peter bjorn and john tickets 8P
Posted by: mona | 2008年05月14日 14:45
it's nice site http://us.cyworld.com/alkas ">levitra online 354446
Posted by: bred | 2008年05月14日 15:46
it's nice site http://us.cyworld.com/alkas ">levitra online 354446
Posted by: bred | 2008年05月14日 15:46
it's nice site http://us.cyworld.com/alkas ">levitra online 354446
Posted by: bred | 2008年05月14日 15:47
it's nice site http://us.cyworld.com/alkas ">levitra online 354446
Posted by: bred | 2008年05月14日 15:47
i say one thing http://us.cyworld.com/alkasy ">generic lipitor 8-[[
Posted by: jenna | 2008年05月14日 17:59
i say one thing http://us.cyworld.com/alkasy ">generic lipitor 8-[[
Posted by: jenna | 2008年05月14日 18:00
i say one thing http://us.cyworld.com/alkasy ">generic lipitor 8-[[
Posted by: jenna | 2008年05月14日 18:00
i say one thing http://us.cyworld.com/alkasy ">generic lipitor 8-[[
Posted by: jenna | 2008年05月14日 18:01
i say one thing http://us.cyworld.com/alkasy ">generic lipitor 8-[[
Posted by: jenna | 2008年05月14日 18:02
please look at this http://us.cyworld.com/altsoba ">paxil online :-[[
Posted by: kate | 2008年05月14日 20:12
please look at this http://us.cyworld.com/altsoba ">paxil online :-[[
Posted by: kate | 2008年05月14日 20:13
please look at this http://us.cyworld.com/altsoba ">paxil online :-[[
Posted by: kate | 2008年05月14日 20:13
i say one thing http://us.cyworld.com/amadahy ">order propecia fkrxy
Posted by: bob | 2008年05月14日 22:24
i say one thing http://us.cyworld.com/amadahy ">order propecia fkrxy
Posted by: bob | 2008年05月14日 22:25
i say one thing http://us.cyworld.com/amadahy ">order propecia fkrxy
Posted by: bob | 2008年05月14日 22:25
it's nice site http://us.cyworld.com/amayeta ">soma pills 8[[[
Posted by: mona | 2008年05月15日 00:36
it's nice site http://us.cyworld.com/amayeta ">soma pills 8[[[
Posted by: mona | 2008年05月15日 00:36
it's nice site http://us.cyworld.com/amisquew ">generic ultram gmal
Posted by: bob | 2008年05月15日 02:40
it's nice site http://us.cyworld.com/amitola ">purchase valium lwfyl
Posted by: adult | 2008年05月15日 04:40
it's nice site http://us.cyworld.com/anang ">viagra addiction >:-)
Posted by: kate | 2008年05月15日 06:36
it's nice site http://us.cyworld.com/anevay ">xanax addiction %PP
Posted by: arni | 2008年05月15日 08:28
it's nice site http://us.cyworld.com/anevay ">xanax addiction %PP
Posted by: arni | 2008年05月15日 08:29
it's nice site http://us.cyworld.com/anevay ">xanax addiction %PP
Posted by: arni | 2008年05月15日 08:29