From 60798e188e15e04b91125f473937fffbf7d075dc Mon Sep 17 00:00:00 2001 From: Heiko Reese Date: Wed, 11 May 2016 13:49:56 +0200 Subject: [PATCH] Finally fixed all the iptables-bugs. --- Linux-Forensics-Checklist.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Linux-Forensics-Checklist.md b/Linux-Forensics-Checklist.md index c005087..187f8fb 100644 --- a/Linux-Forensics-Checklist.md +++ b/Linux-Forensics-Checklist.md @@ -153,7 +153,7 @@ done Capture iptable's state: ```sh # --verbose --numeric --exact --list --table -for table in filter nat mangle raw; do iptables -v -n -x -L -t > iptables_vnxL_t${t}.txt; done +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 ``` @@ -290,7 +290,7 @@ available for Linux at the time of writing. Check for shared memory segments: ```sh # look for /dev/shms -less /proc/${PID}/map +cat /proc/${PID}/maps ``` Save some more state information about the process. The available data in the -- GitLab