Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
b1acd50e
Commit
b1acd50e
authored
Jun 30, 2015
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(ids) add logfile number selection to query script
parent
f4253772
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
39 deletions
+45
-39
queryAlertLog.py
src/opnsense/scripts/suricata/queryAlertLog.py
+45
-39
No files found.
src/opnsense/scripts/suricata/queryAlertLog.py
View file @
b1acd50e
...
...
@@ -30,6 +30,7 @@
--------------------------------------------------------------------------------------
query suricata alert log
"""
import
os.path
import
re
import
sre_constants
import
shlex
...
...
@@ -37,12 +38,16 @@ import ujson
from
lib.log
import
reverse_log_reader
from
lib.params
import
updateParams
suricata_log
=
'/var/log/suricata/eve.json'
# handle parameters
parameters
=
{
'limit'
:
'0'
,
'offset'
:
'0'
,
'filter'
:
''
}
parameters
=
{
'limit'
:
'0'
,
'offset'
:
'0'
,
'filter'
:
''
,
'fileid'
:
''
}
updateParams
(
parameters
)
# choose logfile by number
if
parameters
[
'fileid'
]
.
isdigit
():
suricata_log
=
'/var/log/suricata/eve.json.
%
d'
%
int
(
parameters
[
'fileid'
])
else
:
suricata_log
=
'/var/log/suricata/eve.json'
if
parameters
[
'limit'
]
.
isdigit
():
limit
=
int
(
parameters
[
'limit'
])
else
:
...
...
@@ -78,7 +83,8 @@ else:
# query suricata eve log
result
=
{
'filters'
:
data_filters
,
'rows'
:[],
'total_rows'
:
0
}
for
line
in
reverse_log_reader
(
filename
=
suricata_log
,
start_pos
=
log_start_pos
):
if
os
.
path
.
exists
(
suricata_log
):
for
line
in
reverse_log_reader
(
filename
=
suricata_log
,
start_pos
=
log_start_pos
):
try
:
record
=
ujson
.
loads
(
line
[
'line'
])
except
ValueError
:
...
...
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