Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Warden Connectors
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
713
Warden
Warden Connectors
Commits
cc23cb8e
Commit
cc23cb8e
authored
9 months ago
by
Daniel Studený
Browse files
Options
Downloads
Plain Diff
Merge branch '1-dionaea-exeptions' into 'master'
Resolve "Dionaea exeptions" Closes
#1
See merge request
!7
parents
d5faeaf6
d28c107f
No related branches found
Branches containing commit
No related tags found
1 merge request
!7
Resolve "Dionaea exeptions"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dionaea/log_wardenfiler.py
+3
-3
3 additions, 3 deletions
dionaea/log_wardenfiler.py
with
3 additions
and
3 deletions
dionaea/log_wardenfiler.py
+
3
−
3
View file @
cc23cb8e
...
...
@@ -298,13 +298,13 @@ class LogWardenfilerHandler(ihandler):
elif
af
==
"
IP4
"
and
self
.
resolve_nat
:
s
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
s
.
connect
((
self
.
nat_host
,
self
.
nat_port
))
s
.
sendall
((
'
,
'
.
join
((
src_ip
,
str
(
con
.
local
.
port
))).
encode
(
"
utf-8
"
)))
s
.
sendall
((
'
,
'
.
join
((
src_ip
,
str
(
con
.
remote
.
port
))).
encode
(
"
utf-8
"
)))
dst
=
s
.
recv
(
50
).
decode
(
"
utf-8
"
)
s
.
close
()
if
dst
!=
"
NE
"
:
dst_ip
=
dst
else
:
logger
.
warn
(
"
no translation for %s:%s
"
%
(
src_ip
,
con
.
local
.
port
))
logger
.
warn
(
"
no translation for %s:%s
"
%
(
src_ip
,
con
.
remote
.
port
))
return
()
elif
af
==
"
IP6
"
and
self
.
reported_ipv6
:
dst_ip
=
self
.
reported_ipv6
...
...
@@ -438,7 +438,7 @@ class LogWardenfilerHandler(ihandler):
if
con
in
self
.
sessions
:
s
=
self
.
sessions
[
con
]
if
len
(
s
[
"
cmds
"
]
):
if
s
.
get
(
"
cmds
"
):
event
=
self
.
_make_idea
(
con
)
self
.
_save_event
(
event
)
logger
.
info
(
"
sending connection event from %s:%i to %s:%i
"
%
(
con
.
remote
.
host
,
con
.
remote
.
port
,
con
.
local
.
host
,
con
.
local
.
port
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment