Skip to main content
11 events
when toggle format what by license comment
Nov 16, 2017 at 16:47 comment added Olivier Dulac you could find . -type f -print0 | parallel --progress --null -L 100 -m -j 4 grep -l 'PATH=.*PATH' as well? # -l = -L (but not caps), and will list all files that try to set PATH ? or maybe a larger regexp: PATH.*PATH (to also match : let PATH .... and env PATH ... )
Nov 16, 2017 at 14:28 history edited LambdaBeta CC BY-SA 3.0
Added information gained overnight.
Nov 16, 2017 at 14:08 comment added LambdaBeta Both bash --norc and bash --noprofile contain the hardening wrapper. grep -r hardening /etc actually returned 0 results.
S Nov 16, 2017 at 7:44 history suggested Arpith CC BY-SA 3.0
Grammatical edits
Nov 16, 2017 at 7:39 answer added thecarpy timeline score: 1
Nov 16, 2017 at 7:26 review Suggested edits
S Nov 16, 2017 at 7:44
Nov 16, 2017 at 7:09 comment added Philippos You didn't mention that you checked /etc/bash.bashrc. And what if you do bash --norc or bash --noprofile? Finally, you could do grep -r hardening /etc to find more traces.
Nov 16, 2017 at 6:56 comment added garethTheRed Are you running Arch Linux?
Nov 16, 2017 at 6:31 comment added LambdaBeta Yep. I even ran grep -RnH "hardening" /etc/profile.d -- no results.
Nov 16, 2017 at 6:19 comment added garethTheRed Are you sure /etc/profile.d/hardening-wrapper.sh doesn't exist?
Nov 16, 2017 at 6:06 history asked LambdaBeta CC BY-SA 3.0