Page MenuHomeDevCentral

D961.diff
No OneTemporary

D961.diff

diff --git a/Daeghrefn/Channel.tcl b/Daeghrefn/Channel.tcl
--- a/Daeghrefn/Channel.tcl
+++ b/Daeghrefn/Channel.tcl
@@ -2,6 +2,8 @@
bind pubm - "#fauve *" pubm:url
bind sign - "#wikipedia-fr *!*@*" sign:excessflood
+bind dcc o botnet dcc:botnet
+
#
# URL management
#
@@ -67,8 +69,6 @@
}
proc sign:excessflood {nick uhost handle channel reason} {
- global botname
-
# We're interested by unknown users quitting with Excess Flood message.
if {![isfloodquitmessage $reason] || $handle != "*"} {
return
@@ -83,7 +83,37 @@
# And belong to specific ISPs
set host [gethost $uhost]
if [isbotnetsuspecthost $host] {
- newchanban $channel *!*@$host $botname [registry get protection.botnet.banreason] [registry get protection.botnet.banduration] sticky
- sql "INSERT INTO log_flood (host, `count`) VALUES ('[sqlescape $host]', 1) ON DUPLICATE KEY UPDATE `count` = `count` + 1;"
+ add_botnet_ban $host
+ }
+}
+
+proc dcc:botnet {handle idx arg} {
+ if {$arg == ""} {
+ putdcc $idx "Usage: .botnet <nick>"
+ return
+ }
+
+ set nick $arg
+ set uhost [getchanhost $nick]
+
+ if {$uhost == ""} {
+ putdcc $idx "User unknown: $nick"
+ return
}
+
+ set host [gethost $uhost]
+ if [isbotnetsuspecthost $host] {
+ add_botnet_ban $host
+ return 1
+ } {
+ putdcc $idx "Not a botnet suspect."
+ return
+ }
+}
+
+proc add_botnet_ban {host} {
+ global botname
+
+ newchanban [registry get protection.botnet.channel] *!*@$host $botname [registry get protection.botnet.banreason] [registry get protection.botnet.banduration] sticky
+ sql "INSERT INTO log_flood (host, `count`) VALUES ('[sqlescape $host]', 1) ON DUPLICATE KEY UPDATE `count` = `count` + 1;"
}

File Metadata

Mime Type
text/plain
Expires
Wed, Nov 6, 15:21 (19 h, 42 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2232040
Default Alt Text
D961.diff (1 KB)

Event Timeline