Blacklist ngircd networks from doing admin shenanigans

This commit is contained in:
Firepup Sixfifty 2025-03-27 23:21:24 -05:00
parent d35ac7d970
commit d5b3484619
Signed by: Firepup650
SSH key fingerprint: SHA256:in03N+Byhi/nMAIIKKMxbNMskVXULLrovhGkPNFEsdg
2 changed files with 10 additions and 1 deletions

View file

@ -12,7 +12,15 @@ def admin(
chan: Optional[str] = "",
cmd: Optional[str] = "",
) -> bool:
if (
if bot.server in conf.noAdmins:
if not chan:
return False
else:
bot.msg(
f"Sorry {name}, {cmd} is an admin only command, and this network has had admin perms explicitly disabled.",
chan,
)
elif (
name.lower() in bot.adminnames
or (host or bot.tmpHost) in conf.admin_hosts
or (host or bot.tmpHost) in conf.servers[bot.server]["hosts"]

View file

@ -105,6 +105,7 @@ servers: dict[str, dict[str, Any]] = {
},
}
admin_hosts: list[str] = ["firepup.firepi", "69.8.95.218"]
noAdmins = ["ircnow", "backupbox"]
ESCAPE_SEQUENCE_RE = re.compile(
r"""
( \\U........ # 8-digit hex escapes