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