/usr/share/sbnc/scripts/auth.tcl is in sbnc-tcl 1.3.9-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 | # Copyright (C) 2010 Sandro Hummel
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# binds
#
internalbind command auth:commands
internalbind svrlogon auth:logon
#
# checks /ison reply for 'NickServ'
#
proc auth:ison {client params} {
if {[string equal -nocase [lindex $params 3] "NickServ"]} {
set [getns]::sbnc_nickserv 1
killtimer [timerexists [list sbnc:multi:command [list "internalunbind server auth:server NOTICE $client" "internalunbind server auth:server PRIVMSG $client"]]]
internalunbind server auth:ison 303 $client
haltoutput
}
}
#
# cleans up
#
proc auth:cleanup {client} {
internalunbind server auth:server NOTICE $client
internalunbind server auth:server PRIVMSG $client
internalunbind server auth:ison 303 $client
killtimer [timerexists [list internalunbind server auth:server NOTICE $client]]
killtimer [timerexists [list sbnc:multi:command [list "internalunbind server auth:server NOTICE $client" "internalunbind server auth:server PRIVMSG $client"]]]
killtimer [timerexists [list internalunbind server auth:ison 303 $client]]
}
#
# sends login data after connecting to a server.
#
proc auth:logon {client} {
auth:cleanup $client
if {[info exists [getns]::sbnc_nickserv]} {
unset [getns]::sbnc_nickserv
}
set authuser [getbncuser $client tag authuser]
set authpass [getbncuser $client tag authpass]
set auth [getbncuser $client tag auth]
switch -- [string tolower [getisupport network]] {
"quakenet" {
if {$authuser != "" && $authpass != "" && [string equal -nocase $auth "on"]} {
if {![llength $::qauth_supported_algorithms]} {
putquick "PRIVMSG Q@CServe.QuakeNet.Org :AUTH $authuser $authpass"
} else {
internalbind server auth:server NOTICE $client
putquick "PRIVMSG Q@CServe.QuakeNet.Org :CHALLENGE"
timer 2 [list internalunbind server auth:server NOTICE $client]
}
}
}
"gamesurge" {
if {$authuser != "" && $authpass != "" && [string equal -nocase $auth "on"]} {
putquick "AUTHSERV auth $authuser $authpass"
}
}
"undernet" {
if {$authuser != "" && $authpass != "" && [string equal -nocase $auth "on"]} {
putquick "PRIVMSG X@channels.undernet.org :login $authuser $authpass"
}
}
default {
internalbind server auth:server NOTICE $client
internalbind server auth:server PRIVMSG $client
internalbind server auth:ison 303 $client
timer 30 [list sbnc:multi:command [list "internalunbind server auth:server NOTICE $client" "internalunbind server auth:server PRIVMSG $client"]]
timer 2 [list internalunbind server auth:ison 303 $client]
putquick "ISON NickServ"
}
}
}
#
# Q-auth challenge encryptions
#
set ::qauth_algorithms [list md5 sha1 sha256]
set ::qauth_supported_algorithms [list]
foreach algorithm $::qauth_algorithms {
if {![catch [list package require $algorithm] error]} {
lappend ::qauth_supported_algorithms $algorithm
}
}
#
# server response parser
#
proc auth:server {client params} {
set host [lindex $params 0]
set msg [lindex $params 3]
#
# QuakeNet
#
if {[string equal -nocase $host "Q!TheQBot@CServe.quakenet.org"]} {
if {[string match -nocase "You are now logged in as*" $msg]} {
bncjoinchans $client
if {![getbncuser $client hasclient]} {
putlog "Successfully Authed to Q"
}
internalunbind server auth:server NOTICE $client
}
if {[string match -nocase "*CHALLENGE*" $msg]} {
set challenge [lindex [split $msg " "] 1]
set authuser [getbncuser $client tag authuser]
set authuserlower [string tolower [string map -nocase {"[" "{" "]" "}" "|" "\\"} [getbncuser $client tag authuser]]]
set authpass [string range [getbncuser $client tag authpass] 0 9]
if {[string match -nocase "*HMAC-SHA-256*" $msg] && [lsearch $::qauth_supported_algorithms sha256] > "-1"} {
set authpass [string tolower [::sha2::sha256 -hex $authpass]]
set response [string tolower [::sha2::sha256 -hex "${authuserlower}:${authpass}"]]
set response [string tolower [::sha2::hmac -hex -key $response $challenge]]
putquick "PRIVMSG Q@CServe.QuakeNet.Org :CHALLENGEAUTH $authuser $response HMAC-SHA-256"
} elseif {[string match -nocase "*HMAC-SHA-1*" $msg] && [lsearch $::qauth_supported_algorithms sha1] > "-1"} {
set authpass [string tolower [::sha1::sha1 -hex $authpass]]
set response [string tolower [::sha1::sha1 -hex "${authuserlower}:${authpass}"]]
set response [string tolower [::sha1::hmac -hex -key $response $challenge]]
putquick "PRIVMSG Q@CServe.QuakeNet.Org :CHALLENGEAUTH $authuser $response HMAC-SHA-1"
} elseif {[string match -nocase "*HMAC-MD5*" $msg] && [lsearch $::qauth_supported_algorithms md5] > "-1"} {
set authpass [string tolower [::md5::md5 -hex $authpass]]
set response [string tolower [::md5::md5 -hex "${authuserlower}:${authpass}"]]
set response [string tolower [::md5::hmac -hex -key $response $challenge]]
putquick "PRIVMSG Q@CServe.QuakeNet.Org :CHALLENGEAUTH $authuser $response HMAC-MD5"
} else {
putquick "PRIVMSG Q@CServe.QuakeNet.Org :AUTH $authuser $authpass"
}
}
}
#
# NickServ
#
if {[string equal -nocase [lindex [split $host "!"] 0] "NickServ"]} {
set [getns]::sbnc_nickserv 1
if {[string match -nocase [getbncuser $client tag authphrase] $msg]} {
if {[string equal -nocase [getbncuser $client tag authuser] $::botnick] && [getbncuser $client tag authpass] != "" && [string equal -nocase [getbncuser $client tag auth] "on"]} {
putquick "NICKSERV identify [getbncuser $client tag authpass]"
}
}
}
}
#
# outputs auth info during "set"
#
proc auth:help {client} {
if {[getbncuser $client tag authuser] != ""} {
set authuser [getbncuser $client tag authuser]
} else {
set authuser "Not set"
}
if {[getbncuser $client tag authpass] != ""} {
set authpass "Set"
} else {
set authpass "Not set"
}
if {[string equal -nocase [getbncuser $client tag auth] "on"]} {
set auth "on"
} else {
set auth "off"
}
if {[info exists [getns]::sbnc_nickserv]} {
if {[getbncuser $client tag authphrase] != ""} {
set authphrase [getbncuser $client tag authphrase]
} else {
set authphrase "Not set"
}
}
bncreply "authuser - $authuser"
bncreply "authpass - $authpass"
if {[info exists authphrase]} {
bncreply "authphrase - $authphrase"
}
bncreply "auth - $auth"
}
#
# commands for changing auth data/settings
#
proc auth:commands {client params} {
if {[string equal -nocase "help" [lindex $params 0]]} {
bncaddcommand authmanual "User" "Manually authenticates to a server's Authentication Service"
}
if {[string equal -nocase "authmanual" [lindex $params 0]]} {
if {[getbncuser $client tag authuser] != "" && [getbncuser $client tag authpass] != "" && [string equal -nocase [getbncuser $client tag auth] "on"]} {
auth:logon $client
bncreply "Manually triggered authing"
haltoutput
} else {
bncreply "Error: either authuser or authpass isn't set or auth isn't turned on. Check /sbnc set"
haltoutput
}
}
if {[string equal -nocase "set" [lindex $params 0]]} {
if {[llength $params] == 1} {
internaltimer 0 0 auth:help $client
} else {
switch -- [string tolower [lindex $params 1]] {
"authuser" {
setbncuser $client tag authuser [lindex $params 2]
bncreply "Done."
haltoutput
}
"authpass" {
setbncuser $client tag authpass [lindex $params 2]
bncreply "Done."
haltoutput
}
"auth" {
if {([getbncuser $client tag authuser] != "" && [getbncuser $client tag authpass] != "") || [lindex $params 2] == ""} {
if {![string equal -nocase [lindex $params 2] "on"] && ![string equal -nocase [lindex $params 2] "off"] && [lindex $params 2] != ""} {
bncreply "Value should be either 'on' or 'off'."
haltoutput
} else {
setbncuser $client tag auth [lindex $params 2]
bncreply "Done."
haltoutput
}
} else {
bncreply "Please set authuser and authpass first. Check /sbnc set"
haltoutput
}
}
"authphrase" {
if {[info exists [getns]::sbnc_nickserv]} {
set text [join [lrange $params 2 end] " "]
if {$text != "" && [string length $text] > 7} {
setbncuser $client tag authphrase $text
bncreply "Done."
haltoutput
} else {
bncreply "Error: no text specified or too short. Wildcards (*) may be used."
haltoutput
}
}
}
}
if {[getbncuser $client tag authuser] != "" && [getbncuser $client tag authpass] != ""} {
setbncuser $client delayjoin 1
} else {
setbncuser $client delayjoin 0
}
}
}
}
#
# used by auth.tcl to execute multiple commands in timers
#
proc sbnc:multi:command {commands} {
foreach command $commands {
catch $command
}
}
#
# iface command for setting the authuser
#
proc iface-auth:setuser {username} {
setbncuser [getctx] tag authuser $username
return ""
}
if {[info commands "registerifacecmd"] != ""} {
registerifacecmd "auth" "setuser" "iface-auth:setuser"
}
#
# iface command for setting the authpass
#
proc iface-auth:setpass {password} {
setbncuser [getctx] tag authpass $password
return ""
}
if {[info commands "registerifacecmd"] != ""} {
registerifacecmd "auth" "setpass" "iface-auth:setpass"
}
#
# iface command for setting auth (enabled/disabled)
#
proc iface-auth:setauth {state} {
if {[getbncuser [getctx] tag authuser] != "" && [getbncuser [getctx] tag authpass] != ""} {
if {[string is integer $state] && $state} {
setbncuser [getctx] tag auth "on"
} else {
setbncuser [getctx] tag auth "off"
}
}
return ""
}
if {[info commands "registerifacecmd"] != ""} {
registerifacecmd "auth" "setauth" "iface-auth:setauth"
}
#
# iface command for getting authuser
#
proc iface-auth:getuser {} {
return [itype_string [getbncuser [getctx] tag authuser]]
}
if {[info commands "registerifacecmd"] != ""} {
registerifacecmd "auth" "getuser" "iface-auth:getuser"
}
#
# iface command for getting authpass
#
proc iface-auth:getpass {} {
if {[getbncuser [getctx] tag authpass] == ""} {
return [itype_string "0"]
} else {
return [itype_string "1"]
}
}
if {[info commands "registerifacecmd"] != ""} {
registerifacecmd "auth" "getpass" "iface-auth:getpass"
}
#
# iface command for getting auth (enabled/disabled)
#
proc iface-auth:getauth {} {
if {[string equal -nocase [getbncuser [getctx] tag auth] "on"]} {
return [itype_string "1"]
} else {
return [itype_string "0"]
}
}
if {[info commands "registerifacecmd"] != ""} {
registerifacecmd "auth" "getauth" "iface-auth:getauth"
}
|