Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eterban
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
eterban
Commits
822821d4
Commit
822821d4
authored
Jul 21, 2026
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
producer: validate unban addresses
parent
14bdc662
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
unban.py
gateway/usr/share/eterban/unban.py
+8
-2
No files found.
gateway/usr/share/eterban/unban.py
View file @
822821d4
...
@@ -5,6 +5,7 @@ import sys
...
@@ -5,6 +5,7 @@ import sys
import
configparser
import
configparser
import
os
import
os
import
socket
import
socket
import
ipaddress
def
get_settings
(
path_to_config
):
def
get_settings
(
path_to_config
):
if
not
os
.
path
.
exists
(
path_to_config
):
if
not
os
.
path
.
exists
(
path_to_config
):
...
@@ -31,15 +32,20 @@ else:
...
@@ -31,15 +32,20 @@ else:
if
not
ip
:
if
not
ip
:
print
(
"Run with IP arg"
)
print
(
"Run with IP arg"
)
sys
.
exit
()
sys
.
exit
()
try
:
ip
=
str
(
ipaddress
.
ip_network
(
ip
,
strict
=
False
))
except
ValueError
:
print
(
"Invalid IP address or network: "
+
ip
)
sys
.
exit
(
2
)
try
:
try
:
r
=
redis
.
Redis
(
host
=
redis_server
)
r
=
redis
.
Redis
(
host
=
redis_server
,
socket_connect_timeout
=
5
,
socket_timeout
=
5
)
subscribers
=
r
.
publish
(
'unban'
,
ip
)
subscribers
=
r
.
publish
(
'unban'
,
ip
)
if
subscribers
==
0
:
if
subscribers
==
0
:
print
(
"No eterban Redis subscribers; IP was not unblocked"
)
print
(
"No eterban Redis subscribers; IP was not unblocked"
)
sys
.
exit
(
1
)
sys
.
exit
(
1
)
message
=
ip
+
" was unblocked by admin on "
+
hostname
message
=
ip
+
" was unblocked by admin on "
+
hostname
r
.
publish
(
'by'
,
message
)
r
.
publish
(
'by'
,
message
)
except
Exception
as
error
:
except
redis
.
exceptions
.
RedisError
as
error
:
print
(
"Error with connect to redis "
+
redis_server
+
": "
+
str
(
error
))
print
(
"Error with connect to redis "
+
redis_server
+
": "
+
str
(
error
))
sys
.
exit
(
1
)
sys
.
exit
(
1
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment