Add /etc/mail/spamassassin to prune prefixes
[pkgusr] / usr / bin / list_suspicious_files
1 #!/bin/bash
2 ## Originally...
3 # Copyright (c) 2004 Matthias S. Benkmann <article AT winterdrache DOT de>
4 # You may do everything with this code except misrepresent its origin.
5 # PROVIDED `AS IS' WITH ABSOLUTELY NO WARRANTY OF ANY KIND!
6
7 # Copyright (C) 2014 Steve Youngs <steve@steveyoungs.com>
8 # many updates/tweaks --SY.
9
10 # The following list should contain the mount points of all filesystems
11 # that are to be scanned as a space-separated list within parentheses. 
12 # / will usually be in this list and if you have /usr
13 # on a separate partition, it will also be in this list. Other non-special
14 # filesystems where suspicious files could be located should also be put in 
15 # this list.
16 # Mount points whose filesystems are special, such as procfs or sysfs should
17 # not be in this list. 
18
19 fs_to_scan=(/)
20
21 ## Bastard settings
22 #fs_to_scan=(\
23 #       / \
24 #       /opt \
25 #       /usr \
26 #       /usr/src \
27 #       /var)
28
29 # Files with a path prefix found in the following list are ignored.
30 # DO !!!!NOT!!! PUT /usr/src OR WHATEVER THE HOME DIRECTORY prefix is for your
31 # package users into this list!!! You DO want to scan those directories in
32 # order to spot e.g. world-writable tarballs and other abominations that
33 # may have crept in.
34 # Ideally, this list should be empty.
35
36 prune_prefixes=(/root /{,*/{,*/}}lost+found) #NO TRAILING SLASHES!!!
37
38 ## Bastard settings
39 #prune_prefixes=(\
40 #       /{,*/{,*/}}lost+found \
41 #       /root \
42 #       /opt/pgsql/data \
43 #       /opt/sql-ledger/{spool,templates,users,css} \
44 #       /etc/apache/ssl.key \
45 #       /etc/audisp/plugins.d \
46 #       /etc/cups/ssl \
47 #       /etc/firewall \
48 #       /etc/mail/spamassassin \
49 #       /etc/pam.d \
50 #       /etc/polkit-1/rules.d \
51 #       /etc/skel \
52 #       /etc/ssl/private \
53 #       /etc/sudoers.d \
54 #       /var/lib/{sasl,sudo,net-snmp,udisks{,2},NetworkManager} \
55 #       /var/log \
56 #       /usr/lib/pkgusr \
57 #       /usr/share/polkit-1/rules.d \
58 #       /var/tmp \
59 #       /var/{cache,chroot,db,run,snmp,spool} \
60 #       /var/lib/{sshd,nfs,spamassassin,pulse,machines}) #NO TRAILING SLASHES!!!!
61
62 # Set the following to `-noleaf' if you are scanning non-UNIX filesystems
63 # like MS-DOS, CD-ROM etc.  But only do so if you really need it as it
64 # will slow the search significantly.
65 # NOLEAF='-noleaf'
66 NOLEAF=
67
68 # If the following variable is set to "yes", then files that contain
69 # control characters or other non-printable characters (except for space)
70 # will be reported as suspicious. 
71 # This test slows down the search considerably!
72 #enable_illchars=yes
73 enable_illchars=no
74
75
76 # suppress ugly debug output from shell
77 trap ':' SIGPIPE
78
79 # "-false" as 1st argument is used when called by list_suspicious_files_from
80 if [ $# -ge 1 -a "$1" != "-false" ]; then
81     echo 1>&2 
82     echo 1>&2 "USAGE: ${0##*/}"
83     echo 1>&2 
84     echo 1>&2 '  Outputs a categorized list of files and directories with properties'
85     echo 1>&2 '  that could mean trouble and should be investigated.'
86     echo 1>&2
87     exit 1
88 fi
89
90
91 usergroupmatch=(-true)
92 if [ "$1" = "-false" ]; then
93     usergroupmatch=(\( "$@" \))
94 fi
95
96 # construct find commands that match the prune_prefixes. Each prefix will be
97 # matched as -path <prefix> -or -path <prefix>/*
98 # so that the directory itself and all subdirectories are matched.
99 y=(\( -false)
100 for ((i=0; $i<${#prune_prefixes[@]}; i=$i+1)) 
101 do
102     y[${#y[@]}]='-or'
103     y[${#y[@]}]=-path
104     y[${#y[@]}]="${prune_prefixes[$i]}"
105     y[${#y[@]}]='-or'
106     y[${#y[@]}]=-path
107     y[${#y[@]}]="${prune_prefixes[$i]}/*"
108 done
109 y[${#y[@]}]=')'
110
111 illchars=( $'\x1'  $'\x2'  $'\x3'  $'\x4'  $'\x5'  $'\x6'  $'\x7'  $'\x8'  
112   $'\x9'  $'\xA'  $'\xB'  $'\xC'  $'\xD'  $'\xE'  $'\xF'  $'\x10'  $'\x11' 
113   $'\x12'  $'\x13'  $'\x14'  $'\x15'  $'\x16'  $'\x17'  $'\x18'  $'\x19'  
114   $'\x1A'  $'\x1B'  $'\x1C'  $'\x1D'  $'\x1E'  $'\x1F'  $'\x7f' $'\x80' 
115   $'\x81'  $'\x82'  $'\x83'  $'\x84'  $'\x85'  $'\x86'  $'\x87'  $'\x88'  
116   $'\x89'  $'\x8A'  $'\x8B'  $'\x8C'  $'\x8D'  $'\x8E'  $'\x8F'  $'\x90'  
117   $'\x91'  $'\x92'  $'\x93'  $'\x94'  $'\x95'  $'\x96'  $'\x97'  $'\x98'  
118   $'\x99'  $'\x9A'  $'\x9B'  $'\x9C'  $'\x9D'  $'\x9E'  $'\x9F' ) 
119
120
121 if [ "$enable_illchars" = yes ]; then
122
123     illname=(\( -false)
124     for ((i=0; $i<${#illchars[@]}; i=$i+1)) 
125     do
126         #handle bash \x7f error
127         if [ "*${illchars[$i]}*" = "**" ]; then
128             illchars[$i]=$'\x80'  #'
129         fi
130         illname[${#illname[@]}]='-or'
131         illname[${#illname[@]}]=-name
132         illname[${#illname[@]}]="*${illchars[$i]}*"
133     done
134     illname[${#illname[@]}]=')'
135
136     illlink=(\( -false)
137     for ((i=0; $i<${#illchars[@]}; i=$i+1)) 
138     do
139         illlink[${#illlink[@]}]='-or'
140         illlink[${#illlink[@]}]=-lname
141         illlink[${#illlink[@]}]="*${illchars[$i]}*"
142     done
143     illlink[${#illlink[@]}]=')'
144 else #if [ "$enable_illchars" = no ]
145     illlink=(-false)
146     illname=(-false)
147 fi
148
149 # $1=section heading
150 # $2=inode message
151 report()
152 {
153     echo -printf "increment_code_here"
154     echo -printf 
155     echo "1 ${1}\\n" | sed 's/ /\\040/g'
156     echo -printf "insert_code_here"
157   
158     if [ -n "$2" ]; then
159         echo -printf 
160         echo "2 %i 1 ${2}\\n" | sed 's/ /\\040/g'
161         echo -printf "insert_code_here"
162         echo -printf 
163         echo "2 %i 2 " | sed 's/ /\\040/g'
164     else
165         echo -printf "2\\040" 
166     fi
167   
168     echo -exec ls -T 0 -ladQ {} \;
169 }
170
171
172 filegoodperm=(\( -perm 644 -or -perm 755 -or -perm 555 -or -perm 444 -or -perm 600 -or -perm 700 -or -perm 640 \))
173 dirgoodperm=(\( -perm 755 -or -perm 555 -or -perm 700 -or -perm 750 \))
174
175 good=( \( 
176           -not \( -not -type d -links +1 \)
177           -not -nouser -not -nogroup 
178           -not \( "${illname[@]}" \) 
179           -not \( "${illlink[@]}" \) 
180        \) 
181        -and
182 \(
183       \( -type f -not -group install "${filegoodperm[@]}" \) 
184   -or \( -type d -not -group install "${dirgoodperm[@]}" \)
185   -or \( -type d -group install \( -perm 1775 \) \)
186   -or \( -type d -group root -user root -path "/tmp" \( -perm 1777 \) \)
187   -or \( -type d -group root -user root -path "/var/tmp" \( -perm 1777 \) \)
188   -or \( -not -type d -not -type f -not -type l -path "/dev/*" \)
189   -or \( -type l \( -xtype b -or -xtype c -or -xtype d -or -xtype p -or -xtype f \) \)
190 \)
191 )
192
193 bad=(
194     \( "${illname[@]}" $(report  "NON-PRINTABLE CHAR IN NAME")  \)
195  OP \( "${illlink[@]}" $(report  "NON-PRINTABLE-CHAR IN LINK-TARGET")  \)
196  OP \( -type f -perm -4000 $(report  "SETUID FILES")  \)
197  OP \( -type f -perm -2000 $(report  "SETGID FILES")  \)
198  OP \( -type f -perm -1000 $(report  "STICKY FILES")  \)
199  OP \( -type d -perm -2000 $(report  "GROUP-KEEPING DIRECTORIES")  \)
200  OP \( -type d -not -group install -perm -1000  $(report  "STICKY DIRECTORIES")  \)
201  OP \( -type f -perm -g+w  $(report  "GROUP-WRITABLE FILES")  \)
202  OP \( -type f -perm -o+w  $(report  "WORLD-WRITABLE FILES")  \)
203  OP \( -type d -perm -g+w  $(report  "GROUP-WRITABLE DIRECTORIES")  \)
204  OP \( -type d -perm -o+w  $(report  "WORLD-WRITABLE DIRECTORIES")  \)
205  OP \( -not \( -type f -or -type l -or -type d \) -not -path "/dev/*"  $(report  "SPECIAL FILES OUTSIDE /dev")  \)
206  OP \( -type d -group install -not -perm 1755  $(report  "INSTALL DIRECTORIES WITH UNUSUAL PERMISSIONS")  \)
207  OP \( -type f -group install $(report  "FILES ASSIGNED TO GROUP INSTALL")  \)
208  OP \( -type l -not \( -xtype b -or -xtype c -or -xtype d -or -xtype p -or -xtype f \) $(report  "SYMLINKS POSSIBLY BROKEN OR LOOP")  \)
209  OP \( -not -type d -links +1 $(report "HARDLINKED FILES" "Inode %i is shared by %n files, including") \)
210  OP \( -nouser  $(report  "THINGS HAVING UID WITH NO ASSIGNED USER NAME")  \)
211  OP \( -nogroup  $(report  "THINGS HAVING GID WITH NO ASSIGNED GROUP NAME")  \)
212  OP \( -type f -not -group install -not "${filegoodperm[@]}"  $(report  "FILES WITH UNUSUAL PERMISSIONS")  \)
213  OP \( -type d -not -group install -not "${dirgoodperm[@]}"  $(report  "DIRECTORIES WITH UNUSUAL PERMISSIONS")  \)
214 )
215
216 # insert unique codes for the messages
217 code=100
218 for ((i=0; $i<${#bad[@]}; i=$i+1)) 
219 do
220     if [ "${bad[$i]}" = "increment_code_here" ]; then
221         code=$(($code + 1))
222         bad[$i]=$code
223     elif [ "${bad[$i]}" = "insert_code_here" ]; then
224         bad[$i]=$code
225     fi
226 done
227
228 allbad=()  #all bad matches are reported
229 onebad=()  #only the first bad match is reported
230 for ((i=0; $i<${#bad[@]}; i=$i+1)) 
231 do
232     if [ "${bad[$i]}" = "OP" ]; then
233         allbad[$i]=","
234         onebad[$i]="-or"
235     else
236         allbad[$i]="${bad[$i]}"
237         onebad[$i]="${bad[$i]}"
238     fi
239 done
240
241 # Add a default case to onebad.
242 # This should never be hit, because the explicit cases should catch all
243 # files, but just in case I've missed something, this will catch it.
244 onebad=("${onebad[@]}" -or  $(report  "WEIRD SHIT") )
245
246 # make allbad always return false
247 allbad=("${allbad[@]}" , -false)
248
249 cmd=( "${usergroupmatch[@]}" -and
250      \( \( "${good[@]}" \) -or \( "${allbad[@]}" \) -or \( "${onebad[@]}" \) \)
251     )
252
253 # In the following find command, the part
254 # -not ( ( "${y[@]}" -prune ) -or "${y[@]}" )
255 # is responsible for preventing the files that match prune_prefixes from
256 # being processed. The 2nd "${y[@]}" may seem redundant, but it isn't, because
257 # -prune has no effect and is always false when -depth is used.
258 find "${fs_to_scan[@]}" -xdev $NOLEAF \
259     -not \( \( "${y[@]}" -prune \) -or "${y[@]}" \) \
260     -and \( "${cmd[@]}" \) 2>/dev/null | 
261 sed 's/^\(...2\) \([0-9]\+ 2 \)\?\([^ ]\+\) \+[^ ]\+ \+\([^ ]\+\) \+\([^ ]\+\) \+[^"]\+\(".\+\)/\1 \2\3 \6  \4:\5/' |
262 sort -u | 
263 sed 's/^...1 /\'$'\n''/;s/^...2 [0-9]\+ 1 /\'$'\n''  /;s/^...2 [0-9]\+ 2 /    /;s/^...2 /  /'