Linux eyewebsolution.dnshostserver.in 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Apache
: 185.131.55.234 | : 216.73.216.128
674 Domain
5.6.40
omxrelocation
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
local /
maldetect.bk19574 /
[ HOME SHELL ]
Name
Size
Permission
Action
clean
[ DIR ]
drwxr-xr-x
cron
[ DIR ]
drwxr-xr-x
internals
[ DIR ]
drwxr-xr-x
logs
[ DIR ]
drwxr-xr-x
pub
[ DIR ]
drwxr-xr-x
quarantine
[ DIR ]
drwxr-x---
service
[ DIR ]
drwxr-xr-x
sess
[ DIR ]
drwxr-x---
sigs
[ DIR ]
drwxr-xr-x
sigs.old
[ DIR ]
drwxr-xr-x
tmp
[ DIR ]
drwxr-xr-x
CHANGELOG
47.67
KB
-rw-r--r--
COPYING.GPL
17.67
KB
-rw-r--r--
README
23.87
KB
-rw-r--r--
VERSION
6
B
-rw-r--r--
VERSION.hash
64
B
-rw-r--r--
conf.maldet
15.21
KB
-rw-r--r--
conf.maldet.cron
155
B
-rw-r--r--
event_log
528.07
KB
-rw-r--r--
hookscan.sh
702
B
-rwxr-xr-x
ignore_file_ext
0
B
-rw-r--r--
ignore_inotify
201
B
-rw-r--r--
ignore_paths
44
B
-rw-r--r--
ignore_sigs
0
B
-rw-r--r--
maldet
7.46
KB
-rwxr-xr-x
maldet.1.gz
3.94
KB
-rw-r--r--
modsec.sh
702
B
-rwxr-xr-x
monitor_paths
0
B
-rw-r--r--
uninstall.sh
1.54
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : uninstall.sh
#!/usr/bin/env bash export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:$PATH echo "This will completely remove Linux Malware Detect from your server including all quarantine data!" echo -n "Would you like to proceed? " read -p "[y/n] " -n 1 Z echo if [ "$Z" == "y" ] || [ "$Z" == "Y" ]; then if [ "$OSTYPE" != "FreeBSD" ]; then if test `cat /proc/1/comm` = "systemd" then systemctl disable maldet.service systemctl stop maldet.service rm -f /usr/lib/systemd/system/maldet.service systemctl daemon-reload else maldet -k if [ -f /etc/redhat-release ]; then /sbin/chkconfig maldet off /sbin/chkconfig maldet --del elif [ -f /etc/debian_version ] || [ -f /etc/lsb-release ]; then update-rc.d -f maldet remove elif [ -f /etc/gentoo-release ]; then rc-update del maldet default elif [ -f /etc/slackware-version ]; then rm -f /etc/rc.d/rc3.d/S70maldet rm -f /etc/rc.d/rc4.d/S70maldet rm -f /etc/rc.d/rc5.d/S70maldet else /sbin/chkconfig maldet off /sbin/chkconfig maldet --del fi rm -f /etc/init.d/maldet fi fi rm -rf /usr/local/maldetect* /etc/cron.d/maldet_pub /etc/cron.daily/maldet /usr/local/sbin/maldet /usr/local/sbin/lmd clamav_paths="/usr/local/cpanel/3rdparty/share/clamav/ /var/lib/clamav/ /var/clamav/ /usr/share/clamav/ /usr/local/share/clamav" for cpath in $clamav_paths; do rm -f $cpath/rfxn.* $cpath/lmd.user.* done echo "Linux Malware Detect has been uninstalled." else echo "You selected No or provided an invalid confirmation, nothing has been done!" fi
Close