From ff0c609ce15299fcd0da5f5b471d3519495977ff Mon Sep 17 00:00:00 2001 From: Julien "shaddai" Reveret Date: Thu, 8 Oct 2015 17:44:47 +0200 Subject: reorganized git repo --- phpmalwarefinder | 90 -------------------------------------------------------- 1 file changed, 90 deletions(-) delete mode 100755 phpmalwarefinder (limited to 'phpmalwarefinder') diff --git a/phpmalwarefinder b/phpmalwarefinder deleted file mode 100755 index c49a7bd..0000000 --- a/phpmalwarefinder +++ /dev/null @@ -1,90 +0,0 @@ -#!/usr/bin/env bash - -YARA=$(type -P yara) -CONFIG_PATH='/etc/phpmalwarefinder/malwares.yara' -IONICE_BIN=$(type -P ionice) -NICE_BIN=$(type -P 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] ... - -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 $@ -- cgit v1.3