1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
#!/bin/sh -e
#
# Copyright (c) 2004 Oliver Eikemeier. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# 1. Redistributions of source code must retain the above copyright notice
# this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# 3. Neither the name of the author nor the names of its contributors may be
# used to endorse or promote products derived from this software without
# specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# $FreeBSD$
#
. %%DATADIR%%/portaudit.functions
portaudit_confs
opt_audit=false
opt_auditcwd=false
opt_audittree=false
opt_dbversion=false
opt_fetch=false
opt_file=
opt_quiet=false
opt_verbose=false
opt_version=false
if [ $# -eq 0 ] ; then
opt_audit=true
fi
while getopts aACdf:FqvV opt; do
case "$opt" in
a)
opt_audit=true;;
A)
opt_audittree=true;;
C)
opt_auditcwd=true;;
d)
opt_dbversion=true;;
f)
opt_file=$OPTARG;;
F)
opt_fetch=true;;
q)
opt_quiet=true;;
v)
opt_verbose=true;;
V)
opt_version=true;;
?)
echo "Usage: $0 -aACvVdFq [-f file]"
exit 2;;
esac
done
shift $((${OPTIND}-1))
if $opt_version; then
echo "portaudit version %%PORTVERSION%%"
fi
if $opt_fetch; then
fetch_auditfile || echo "failed."
fi
if $opt_dbversion; then
if [ ! -f "${portaudit_dir}/${portaudit_filename}" ]; then
echo "portaudit: database missing. run \`portaudit -F' to update."
exit 2
fi
if ! checksum_auditfile; then
echo "portaudit: database corrupt."
exit 2
fi
created=`getcreated_auditfile`
echo "database created: `/bin/date -j -f '%Y-%m-%d %H:%M:%S %Z' \"${created} GMT\"`"
fi
if $opt_audit; then
portaudit_prerequisites
audit_installed || true
fi
if $opt_auditcwd; then
portaudit_prerequisites
audit_cwd
fi
if $opt_audittree; then
echo "auditing ports tree for known vulnerabilities"
VULCNT=0
portaudit_prerequisites
cd "${PORTSDIR:=/usr/ports}"
CATEGORIES=`echo [a-z]*`
for category in ${CATEGORIES}; do
if [ ! -d "${PORTSDIR}/${category}" ]; then continue; fi
case "${category}" in
CVS) continue ;;
Mk) continue ;;
Templates) continue ;;
Tools) continue ;;
distfiles) continue ;;
packages) continue ;;
esac
$opt_quiet || echo "==> ${category}"
cd "${PORTSDIR}/${category}"
PORTS=`echo *`
for port in ${PORTS}; do
if [ ! -d "${PORTSDIR}/${category}/${port}" ]; then continue; fi
case "${port}" in
pkg) continue ;;
CVS) continue ;;
esac
cd "${PORTSDIR}/${category}/${port}"
audit_cwd;
done
done
echo "${VULCNT} ports with unmarked vulnerabilities."
fi
if [ -n "$opt_file" ]; then
portaudit_prerequisites
audit_file "$opt_file"
fi
|