forked from jvoisin/php-malware-finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpmalwarefinder
executable file
·90 lines (78 loc) · 1.38 KB
/
phpmalwarefinder
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
#!/bin/bash
YARA=$(which yara)
CONFIG_PATH='/etc/phpmalwarefinder/malwares.yara'
IONICE_BIN=$(which ionice)
NICE_BIN=$(which nice)
if [ ! -f "$YARA" ]
then
YARA='./yara'
fi
if [ ! -f "$CONFIG_PATH" ]
then
CONFIG_PATH='./malwares.yara'
fi
if [ -f "${IONICE_BIN}" ]
then
NICE=${IONICE_BIN}
NICE_OPTS="-c 3"
else
if [ -f "${NICE_BIN}" ]
then
NICE=${NICE_BIN}
NICE_OPTS="-n 20"
fi
fi
show_help() {
cat << EOF
Usage ${0##*/} [-cfhw] <file|folder> ...
-c Optional path to a configuration file
-f Fast mode
-h Show this help message
-v Verbose mode
EOF
}
OPTIND=1
while getopts "c:fhv" opt; do
case "$opt" in
h)
show_help
exit 0
;;
f)
OPTS="${OPTS} -f"
;;
c)
CONFIG_PATH=${OPTARG}
;;
v)
OPTS="${OPTS} -s"
;;
'?')
show_help
exit 1
;;
esac
done
shift "$((OPTIND-1))"
if [ ! -e ${YARA} ]
then
echo "Can't find yara. Did you installed it?"
exit 1
fi
if [ ! -e ${CONFIG_PATH} ]
then
echo "${CONFIG_PATH} doesn't exist. Please give me a valid file."
exit 1
fi
if [ -z $@ ]
then
show_help
exit 1
fi
if [ ! -e ${NICE} ]
then
echo "no nice program available. Please install ionice or nice."
exit 1
fi
OPTS="${OPTS} -r ${CONFIG_PATH}"
${NICE} ${NICE_OPTS} $YARA $OPTS $@