Improve find writable files

This commit is contained in:
Carlos 2019-01-30 18:43:20 +01:00
parent e0dd33337e
commit 47d40220fa
2 changed files with 4 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -161,7 +161,8 @@ ls -a /tmp /var/tmp /var/backups 2>/dev/null >> $file
echo "" >> $file
printf $Y"[+] "$RED"Writable Files (not in \$HOME or /proc)\n"$NC >> $file
find / '(' -type f -or -type d ')' '(' '(' -user $USER -perm -u=w ')' -or '(' -group $USER -perm -g=w ')' -or '(' -perm -o=w ')' ')' 2>/dev/null | grep -v '/proc' | grep -v $HOME | sort | uniq >> $file
find / '(' -type f -or -type d ')' '(' '(' -user $USER ')' -or '(' -perm -o=w ')' ')' 2>/dev/null | grep -v '/proc/' | grep -v $HOME | sort | uniq >> $file
for g in `groups`; do find \( -type f -or -type d \) -group $g -perm -g=w 2>/dev/null | grep -v '/proc/' | grep -v $HOME >> $file; done
echo "" >> $file
printf $Y"[+] "$RED"Web files?\n"$NC >> $file