mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-04-02 17:32:39 +00:00
security: deny by default in is_allowed for all channels
When allow_from is not configured, block all access by default instead of allowing everyone. This prevents unauthorized access when channels are enabled without explicit allow lists.
This commit is contained in:
parent
a5962170f6
commit
d447be5ca2
@ -70,9 +70,16 @@ class BaseChannel(ABC):
|
||||
"""
|
||||
allow_list = getattr(self.config, "allow_from", [])
|
||||
|
||||
# If no allow list, allow everyone
|
||||
# Security fix: If no allow list, deny everyone by default
|
||||
# This prevents unauthorized access when allow_from is not configured
|
||||
if not allow_list:
|
||||
return True
|
||||
logger.warning(
|
||||
"Channel {} has no allow_from configured - "
|
||||
"blocking all access by default for security. "
|
||||
"Add allowed senders to config to enable access.",
|
||||
self.name,
|
||||
)
|
||||
return False
|
||||
|
||||
sender_str = str(sender_id)
|
||||
if sender_str in allow_list:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user