Jump to content
XPEnology Community
  • 1

s30acpid.sh file is something virus ?


nexuscan

Question

7 answers to this question

Recommended Posts

  • 0
18 hours ago, flyride said:

Security Advisor reports any startup script that is unknown or modified from the distro as anomalous.

 

You will need to inspect the file and determine if it is malware on your own.  Post the contents here if you'd like more advice.

 

here is the command that in s30acpid.sh file.

 

#!/bin/sh
#
# This goes in /usr/local/etc/rc.d and gets run at boot-time.

PATH_ACPID=/bin/acpid

case "$1" in

start)
    if [ -x "$PATH_ACPID" ] ; then
# auto by lkm           insmod /lib/modules/button.ko
# auto by lkm           insmod /lib/modules/evdev.ko
            echo "start acpid"
            $PATH_ACPID
            logger -p daemon.info "$0 started acpid"
    fi
    ;;

stop)
    echo "stop acpid"
    killall acpid > /dev/null 2>&1
    logger -p daemon.info "$0 stopped acpid"
    ;;

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...