Skip to content

Commit

Permalink
- [Joyful Note RTHack] remove useless relays.ordb.org from DNSbl list.
Browse files Browse the repository at this point in the history
  • Loading branch information
roytam1 committed Mar 31, 2008
1 parent 53c3c5e commit aeee006
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions Joyful Note RTHack/config.inc.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -172,15 +172,14 @@ $deny = '';
# Block on posting event only? (0=no 1=yes)
$onlyblockonpost=1;

# Query bad IP from external IP database (0=disabled, 1-8=levels, larger=query more but slower)
# Query bad IP from external IP database (0=disabled, 1-7=levels, larger=query more but slower)
# Level 1: DSBL チェック(オープンプロクシなどのホストが、登録されています。)
# Level 2: BBX チェック(2ちゃんねるで広告爆撃したホストなどが、登録されています。)
# Level 3: DNSbl チェック(オープンプロクシなどのホストが、登録されています。)
# Level 4: BBQ チェック(2ちゃんねるで悪用されたホストなどが、登録されています。)
# Level 5: RBL チェック(ウイルスメールを発信したホストが、登録されています。)
# Level 6: ORDB チェック(メールの不正中継したホストが、登録されています。)
# Level 7: IRCbl チェック(IRCで爆撃したホストが、登録されています。)
# Level 8: ToR チェック( SSL オープンプロクシみたいなの。)
# Level 6: IRCbl チェック(IRCで爆撃したホストが、登録されています。)
# Level 7: ToR チェック( SSL オープンプロクシみたいなの。)
$extIPQ=4;

# NGワード(半角コンマで区切る)
Expand Down
2 changes: 1 addition & 1 deletion Joyful Note RTHack/joyful.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ sub axscheck {
$bypressIPQ=1 if($in{'name'} =~ /fusianasan/ || $in{'name'} =~ /mokorikomo/ );

if($extIPQ && !$bypressIPQ && $addr ne "127.0.0.1") {
my @queries = ( 'list.dsbl.org','bbx.2ch.net','dnsbl.ahbl.org','niku.2ch.net','virus.rbl.jp','relays.ordb.org','ircbl.ahbl.org','tor.ahbl.org' );
my @queries = ( 'list.dsbl.org','bbx.2ch.net','dnsbl.ahbl.org','niku.2ch.net','virus.rbl.jp','ircbl.ahbl.org','tor.ahbl.org' );
foreach ( @queries ) {
$ip0 = join '.', unpack 'C4', gethostbyname(sprintf "%s.".$_, join '.', reverse split /\./, $addr);
if($ip0 =~ /^127/){ $flg=1; last; }
Expand Down

0 comments on commit aeee006

Please sign in to comment.