Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
KIT-CERT
Linux-Forensic-Checklist
Commits
fc14f76c
Commit
fc14f76c
authored
Feb 20, 2017
by
heiko.reese
💤
Browse files
Update Linux-Forensics-Checklist.md
parent
a205c181
Changes
1
Hide whitespace changes
Inline
Side-by-side
Linux-Forensics-Checklist.md
View file @
fc14f76c
...
...
@@ -155,7 +155,7 @@ Capture iptable's state:
# --verbose --numeric --exact --list --table
for
table
in
filter nat mangle raw
;
do
iptables
-v
-n
-x
-L
-t
${
table
}
>
iptables_vnxL_t
${
table
}
.txt
;
done
for
table
in
filter mangle raw
;
do
ip6tables
-n
-t
${
table
}
-L
-v
-x
>
ip6tables_nt_
${
table
}
.txt
;
done
for
table
in
filter nat broute
;
do
ebtables
-L
--Lmac2
--Lc
-t
${
table
}
>
ebtables_L_Lmac_Lc_t_
${
table
}
.txt
;
done
for
table
in
filter nat broute
;
do
ebtables
-t
${
table
}
-L
--Lmac2
--Lc
>
ebtables_L_Lmac_Lc_t_
${
table
}
.txt
;
done
```
Dump ipsets (commonly usef by fail2ban and firewalld):
...
...
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