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