Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
pam_lve /
scriptlets /
Delete
Unzip
Name
Size
Permission
Date
Action
rpm_post.sh
2.05
KB
-r-xr-xr-x
2026-08-19 13:56
rpm_preun.sh
1.63
KB
-r-xr-xr-x
2026-08-19 13:56
rpm_triggerin_sudo.sh
470
B
-r-xr-xr-x
2026-08-19 13:56
Save
Rename
#!/usr/bin/bash # RPM preun script # Note: Also called from Debian pam-lve.prerm scriptlet # Arguments: # RPM # "$1" == 0 -- RPM will uninstall package # "$1" == 1 -- RPM upgrade/downgrade package # DEB # "$1" == "remove" - DEB will uninstall package # "$1" == "upgrade" -- DEB will upgrade/downgrade package # "pam-lve PRE UNINSTALL STARTED" # RPM/DEB argument unified interpreter argument='' if [[ "$1" == 0 || "$1" == "remove" ]]; then # "$1" == 0 -- RPM will uninstall package # "$1" == "remove" - DEB will uninstall package argument='uninstall' elif [[ "$1" == 1 || "$1" == "upgrade" ]]; then # "$1" == 1 -- RPM upgrade/downgrade package # "$1" == "upgrade" -- DEB argument='upgrade' else # Unknown argument (some special cases only for DEB. See alt-python27-cllib.prerm scriptlet for details), # skip all actions exit 0 fi; if [ "$argument" == 'uninstall' ]; then if [ -e "/etc/pam.d/sudo" ]; then sed -i '/pam_sulve.so/d' /etc/pam.d/sudo fi if [ -e "/etc/pam.d/sshd" ]; then sed -i '/pam_lve.so/d' /etc/pam.d/sshd fi if [ -e "/etc/pam.d/su" ]; then sed -i '/pam_lve.so/d' /etc/pam.d/su sed -i '/pam_sulve.so/d' /etc/pam.d/su fi # PAM config for cron pam_d_cron_file='' if [ -e "/etc/pam.d/crond" ]; then # Cloudlinux pam_d_cron_file='/etc/pam.d/crond' fi if [ -e "/etc/pam.d/cron" ]; then # Ubuntu pam_d_cron_file='/etc/pam.d/cron' fi if [[ -n "$pam_d_cron_file" && -e "$pam_d_cron_file" ]]; then sed -i '/pam_lve.so/d' "$pam_d_cron_file" fi fi # "pam-lve PRE UNINSTALL FINISHED" exit 0