20 lines
738 B
Bash
20 lines
738 B
Bash
# Title: Interesting Files - Mails
|
|
# ID: IF_Mails
|
|
# Author: Carlos Polop
|
|
# Last Update: 22-08-2023
|
|
# Description: Mails
|
|
# License: GNU GPL
|
|
# Version: 1.0
|
|
# Functions Used: echo_not_found, print_2title
|
|
# Global Variables: $knw_usrs ,$nosh_usrs , $SEARCH_IN_FOLDER, $sh_usrs, $USER
|
|
# Initial Functions:
|
|
# Generated Global Variables:
|
|
# Fat linpeas: 0
|
|
# Small linpeas: 1
|
|
|
|
|
|
if ! [ "$SEARCH_IN_FOLDER" ]; then
|
|
print_2title "Mails (limit 50)"
|
|
(find /var/mail/ /var/spool/mail/ /private/var/mail -type f -ls 2>/dev/null | head -n 50 | sed -${E} "s,$sh_usrs,${SED_RED}," | sed -${E} "s,$nosh_usrs,${SED_BLUE},g" | sed -${E} "s,$knw_usrs,${SED_GREEN},g" | sed "s,root,${SED_GREEN},g" | sed "s,$USER,${SED_RED},g") || echo_not_found
|
|
echo ""
|
|
fi |