We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0ec26c commit 47dba4bCopy full SHA for 47dba4b
mimipenguin.sh
@@ -43,7 +43,7 @@ function dump_pid () {
43
if [[ $system == "kali" ]]; then
44
mem_maps=$(grep -E "^[0-9a-f-]* r" /proc/"$pid"/maps | grep -E 'heap|stack' | cut -d' ' -f 1)
45
else
46
- mem_maps=$(grep -E "^[0-9a-f-]* r" /proc/"$pid"/maps | grep -E -v 'lib|usr|bin' | cut -d' ' -f 1)
+ mem_maps=$(grep -E "^[0-9a-f-]* r" /proc/"$pid"/maps | cut -d' ' -f 1)
47
fi
48
while read -r memrange; do
49
memrange_start=$(echo "$memrange" | cut -d"-" -f 1)
0 commit comments